diff options
892 files changed, 21287 insertions, 14517 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000000..1021eae0f64 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,37 @@ +## Submitting issues + +If you have questions about how to use ownCloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc]. + +### Guidelines +* Report the issue using our [template][template], it includes all the informations we need to track down the issue. +* This repository is *only* for issues within the ownCloud core code. Issues in other compontents should be reported in their own repositores: + - [Android client](https://github.com/owncloud/android/issues) + - [iOS client](https://github.com/owncloud/ios-issues/issues) + - [Desktop client](https://github.com/owncloud/mirall/issues) + - [ownCloud apps](https://github.com/owncloud/apps/issues) (e.g. Calendar, Contacts...) +* Search the existing issues first, it's likely that your issue was already reported. + +If your issue appears to be a bug, and hasn't been reported, open a new issue. + +Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues. + +[template]: https://raw.github.com/owncloud/core/master/issue_template.md +[mailinglist]: https://mail.kde.org/mailman/listinfo/owncloud +[forum]: http://forum.owncloud.org/ +[irc]: http://webchat.freenode.net/?channels=owncloud&uio=d4 + +## Contributing to Source Code + +Thanks for wanting to contribute source code to ownCloud. That's great! + +Before we're able to merge your code into the ownCloud core, you need to sign our [Contributor Agreement][agreement]. + +Please read the [Developer Manuals][devmanual] to get useful infos like how to create your first application or how to test the ownCloud code with phpunit. + +[agreement]: http://owncloud.org/about/contributor-agreement/ +[devmanual]: http://owncloud.org/dev/ + +## Translations +Please submit translations via [Transifex][transifex]. + +[transifex]: https://www.transifex.com/projects/p/owncloud/ diff --git a/apps/files/admin.php b/apps/files/admin.php index 80fd4f4e4a5..f747f8645f6 100644 --- a/apps/files/admin.php +++ b/apps/files/admin.php @@ -30,11 +30,8 @@ OCP\User::checkAdminUser(); $htaccessWorking=(getenv('htaccessWorking')=='true'); $upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize')); -$upload_max_filesize_possible = OCP\Util::computerFileSize(get_cfg_var('upload_max_filesize')); $post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size')); -$post_max_size_possible = OCP\Util::computerFileSize(get_cfg_var('post_max_size')); $maxUploadFilesize = OCP\Util::humanFileSize(min($upload_max_filesize, $post_max_size)); -$maxUploadFilesizePossible = OCP\Util::humanFileSize(min($upload_max_filesize_possible, $post_max_size_possible)); if($_POST && OC_Util::isCallRegistered()) { if(isset($_POST['maxUploadSize'])) { if(($setMaxSize = OC_Files::setUploadLimit(OCP\Util::computerFileSize($_POST['maxUploadSize']))) !== false) { @@ -60,7 +57,9 @@ $htaccessWritable=is_writable(OC::$SERVERROOT.'/.htaccess'); $tmpl = new OCP\Template( 'files', 'admin' ); $tmpl->assign( 'uploadChangable', $htaccessWorking and $htaccessWritable ); $tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize); -$tmpl->assign( 'maxPossibleUploadSize', $maxUploadFilesizePossible); +// max possible makes only sense on a 32 bit system +$tmpl->assign( 'displayMaxPossibleUploadSize', PHP_INT_SIZE===4); +$tmpl->assign( 'maxPossibleUploadSize', OCP\Util::humanFileSize(PHP_INT_MAX)); $tmpl->assign( 'allowZipDownload', $allowZipDownload); $tmpl->assign( 'maxZipInputSize', $maxZipInputSize); return $tmpl->fetchPage(); diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 5612716b7e4..4ebc3f42d9f 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -11,14 +11,15 @@ $dir = stripslashes($_GET["dir"]); $file = stripslashes($_GET["file"]); $target = stripslashes(rawurldecode($_GET["target"])); +$l=OC_L10N::get('files'); if(OC_Filesystem::file_exists($target . '/' . $file)) { - OCP\JSON::error(array("data" => array( "message" => "Could not move $file - File with this name already exists" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s - File with this name already exists", array($file)) ))); exit; } if(OC_Files::move($dir, $file, $target, $file)) { OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file ))); } else { - OCP\JSON::error(array("data" => array( "message" => "Could not move $file" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) ))); } diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index 45448279fa1..89b4d4bba73 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -12,9 +12,9 @@ $file = stripslashes($_GET["file"]); $newname = stripslashes($_GET["newname"]); // Delete -if( OC_Files::move( $dir, $file, $dir, $newname )) { +if( $newname !== '.' and OC_Files::move( $dir, $file, $dir, $newname )) { OCP\JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname ))); -} -else{ - OCP\JSON::error(array("data" => array( "message" => "Unable to rename file" ))); +} else { + $l=OC_L10N::get('files'); + OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") ))); } diff --git a/apps/files/ajax/scan.php b/apps/files/ajax/scan.php index 5cd9572d7f9..a819578e309 100644 --- a/apps/files/ajax/scan.php +++ b/apps/files/ajax/scan.php @@ -6,13 +6,14 @@ $force=isset($_GET['force']) and $_GET['force']=='true'; $dir=isset($_GET['dir'])?$_GET['dir']:''; $checkOnly=isset($_GET['checkonly']) and $_GET['checkonly']=='true'; +$eventSource=false; if(!$checkOnly) { $eventSource=new OC_EventSource(); } session_write_close(); -//create the file cache if necesary +//create the file cache if necessary if($force or !OC_FileCache::inCache('')) { if(!$checkOnly) { OCP\DB::beginTransaction(); diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index e7823bc4ffb..2a2d935da6c 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -8,14 +8,15 @@ OCP\JSON::setContentTypeHeader('text/plain'); OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); +$l=OC_L10N::get('files'); if (!isset($_FILES['files'])) { - OCP\JSON::error(array('data' => array( 'message' => 'No file was uploaded. Unknown error' ))); + OCP\JSON::error(array('data' => array( 'message' => $l->t( 'No file was uploaded. Unknown error' )))); exit(); } + foreach ($_FILES['files']['error'] as $error) { if ($error != 0) { - $l=OC_L10N::get('files'); $errors = array( UPLOAD_ERR_OK=>$l->t('There is no error, the file uploaded with success'), UPLOAD_ERR_INI_SIZE=>$l->t('The uploaded file exceeds the upload_max_filesize directive in php.ini: ') @@ -41,7 +42,7 @@ foreach($files['size'] as $size) { $totalSize+=$size; } if($totalSize>OC_Filesystem::free_space($dir)) { - OCP\JSON::error(array('data' => array( 'message' => 'Not enough space available' ))); + OCP\JSON::error(array('data' => array( 'message' => $l->t( 'Not enough space available' )))); exit(); } @@ -65,7 +66,7 @@ if(strpos($dir, '..') === false) { OCP\JSON::encodedPrint($result); exit(); } else { - $error='invalid dir'; + $error=$l->t( 'Invalid directory.' ); } -OCP\JSON::error(array('data' => array('error' => $error, 'file' => $fileName))); +OCP\JSON::error(array('data' => array('message' => $error ))); diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 1713bcc22ce..6a78a1e0d75 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -45,6 +45,7 @@ $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, 'ownCloud')); $server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend)); $server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin()); +$server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin()); // And off we go! $server->exec(); diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 99c39f0acdb..0c97b009b88 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -21,25 +21,25 @@ #new>ul>li { height:20px; margin:.3em; padding-left:2em; padding-bottom:0.1em; background-repeat:no-repeat; cursor:pointer; } #new>ul>li>p { cursor:pointer; } -#new>ul>li>input { padding:0.3em; margin:-0.3em; } +#new>ul>li>form>input { padding:0.3em; margin:-0.3em; } -#upload { +#upload { height:27px; padding:0; margin-left:0.2em; overflow:hidden; } #upload a { position:relative; display:block; width:100%; height:27px; - cursor:pointer; z-index:1000; + cursor:pointer; z-index:10; background-image:url('%webroot%/core/img/actions/upload.svg'); background-repeat:no-repeat; background-position:7px 6px; } .file_upload_target { display:none; } .file_upload_form { display:inline; float:left; margin:0; padding:0; cursor:pointer; overflow:visible; } -#file_upload_start { +#file_upload_start { left:0; top:0; width:28px; height:27px; padding:0; font-size:1em; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; - z-index:-1; position:relative; cursor:pointer; overflow:hidden; + z-index:20; position:relative; cursor:pointer; overflow:hidden; } #uploadprogresswrapper { position:absolute; right:13.5em; top:0em; } diff --git a/apps/files/index.php b/apps/files/index.php index b64bde44cc0..08193eaee7b 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -38,36 +38,36 @@ OCP\App::setActiveNavigationEntry('files_index'); $dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : ''; // Redirect if directory does not exist if (!OC_Filesystem::is_dir($dir . '/')) { - header('Location: ' . $_SERVER['SCRIPT_NAME'] . ''); - exit(); + header('Location: ' . $_SERVER['SCRIPT_NAME'] . ''); + exit(); } $files = array(); foreach (OC_Files::getdirectorycontent($dir) as $i) { - $i['date'] = OCP\Util::formatDate($i['mtime']); - if ($i['type'] == 'file') { - $fileinfo = pathinfo($i['name']); - $i['basename'] = $fileinfo['filename']; - if (!empty($fileinfo['extension'])) { - $i['extension'] = '.' . $fileinfo['extension']; - } else { - $i['extension'] = ''; - } - } - if ($i['directory'] == '/') { - $i['directory'] = ''; - } - $files[] = $i; + $i['date'] = OCP\Util::formatDate($i['mtime']); + if ($i['type'] == 'file') { + $fileinfo = pathinfo($i['name']); + $i['basename'] = $fileinfo['filename']; + if (!empty($fileinfo['extension'])) { + $i['extension'] = '.' . $fileinfo['extension']; + } else { + $i['extension'] = ''; + } + } + if ($i['directory'] == '/') { + $i['directory'] = ''; + } + $files[] = $i; } // Make breadcrumb $breadcrumb = array(); $pathtohere = ''; foreach (explode('/', $dir) as $i) { - if ($i != '') { - $pathtohere .= '/' . $i; - $breadcrumb[] = array('dir' => $pathtohere, 'name' => $i); - } + if ($i != '') { + $pathtohere .= '/' . $i; + $breadcrumb[] = array('dir' => $pathtohere, 'name' => $i); + } } // make breadcrumb und filelist markup @@ -89,13 +89,13 @@ $maxUploadFilesize = min($maxUploadFilesize, $freeSpace); $permissions = OCP\PERMISSION_READ; if (OC_Filesystem::isUpdatable($dir . '/')) { - $permissions |= OCP\PERMISSION_UPDATE; + $permissions |= OCP\PERMISSION_UPDATE; } if (OC_Filesystem::isDeletable($dir . '/')) { - $permissions |= OCP\PERMISSION_DELETE; + $permissions |= OCP\PERMISSION_DELETE; } if (OC_Filesystem::isSharable($dir . '/')) { - $permissions |= OCP\PERMISSION_SHARE; + $permissions |= OCP\PERMISSION_SHARE; } $tmpl = new OCP\Template('files', 'index', 'user'); diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 80b9c01f838..f5ee363a4c8 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -70,23 +70,23 @@ var FileActions = { } parent.children('a.name').append('<span class="fileactions" />'); var defaultAction = FileActions.getDefault(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions()); - + var actionHandler = function (event) { event.stopPropagation(); event.preventDefault(); FileActions.currentFile = event.data.elem; var file = FileActions.getCurrentFile(); - + event.data.actionFunc(file); }; - + $.each(actions, function (name, action) { // NOTE: Temporary fix to prevent rename action in root of Shared directory if (name === 'Rename' && $('#dir').val() === '/Shared') { return true; } - + if ((name === 'Download' || action !== defaultAction) && name !== 'Delete') { var img = FileActions.icons[name]; if (img.call) { @@ -97,16 +97,16 @@ var FileActions = { html += '<img class ="svg" src="' + img + '" /> '; } html += t('files', name) + '</a>'; - + var element = $(html); element.data('action', name); //alert(element); element.on('click',{a:null, elem:parent, actionFunc:actions[name]},actionHandler); parent.find('a.name>span.fileactions').append(element); } - + }); - + if (actions['Delete']) { var img = FileActions.icons['Delete']; if (img.call) { diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 96dd0323d29..66697bbbf56 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -149,10 +149,9 @@ var FileList={ event.stopPropagation(); event.preventDefault(); var newname=input.val(); - if (Files.containsInvalidCharacters(newname)) { + if (!Files.isFileNameValid(newname)) { return false; - } - if (newname != name) { + } else if (newname != name) { if (FileList.checkName(name, newname, false)) { newname = name; } else { @@ -185,6 +184,13 @@ var FileList={ td.children('a.name').show(); return false; }); + input.keyup(function(event){ + if (event.keyCode == 27) { + tr.data('renaming',false); + form.remove(); + td.children('a.name').show(); + } + }); input.click(function(event){ event.stopPropagation(); event.preventDefault(); diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 6a37d9e7f53..3a4af6416e9 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -26,21 +26,33 @@ Files={ }); procesSelection(); }, - containsInvalidCharacters:function (name) { + isFileNameValid:function (name) { + if (name === '.') { + $('#notification').text(t('files', '\'.\' is an invalid file name.')); + $('#notification').fadeIn(); + return false; + } + if (name.length == 0) { + $('#notification').text(t('files', 'File name cannot be empty.')); + $('#notification').fadeIn(); + return false; + } + + // check for invalid characters var invalid_characters = ['\\', '/', '<', '>', ':', '"', '|', '?', '*']; for (var i = 0; i < invalid_characters.length; i++) { if (name.indexOf(invalid_characters[i]) != -1) { $('#notification').text(t('files', "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed.")); $('#notification').fadeIn(); - return true; + return false; } } $('#notification').fadeOut(); - return false; + return true; } }; $(document).ready(function() { - Files.bindKeyboardShortcuts(document, jQuery); + Files.bindKeyboardShortcuts(document, jQuery); $('#fileList tr').each(function(){ //little hack to set unescape filenames in attribute $(this).attr('data-file',decodeURIComponent($(this).attr('data-file'))); @@ -75,8 +87,8 @@ $(document).ready(function() { // Sets the file link behaviour : $('td.filename a').live('click',function(event) { - event.preventDefault(); if (event.ctrlKey || event.shiftKey) { + event.preventDefault(); if (event.shiftKey) { var last = $(lastChecked).parent().parent().prevAll().length; var first = $(this).parent().parent().prevAll().length; @@ -118,6 +130,7 @@ $(document).ready(function() { var permissions = $(this).parent().parent().data('permissions'); var action=FileActions.getDefault(mime,type, permissions); if(action){ + event.preventDefault(); action(filename); } } @@ -234,12 +247,12 @@ $(document).ready(function() { } }); }else{ - var dropTarget = $(e.originalEvent.target).closest('tr'); - if(dropTarget && dropTarget.attr('data-type') === 'dir') { // drag&drop upload to folder - var dirName = dropTarget.attr('data-file') - } + var dropTarget = $(e.originalEvent.target).closest('tr'); + if(dropTarget && dropTarget.attr('data-type') === 'dir') { // drag&drop upload to folder + var dirName = dropTarget.attr('data-file') + } - var date=new Date(); + var date=new Date(); if(files){ for(var i=0;i<files.length;i++){ if(files[i].size>0){ @@ -292,9 +305,9 @@ $(document).ready(function() { var jqXHR = $('#file_upload_start').fileupload('send', {files: files[i], formData: function(form) { var formArray = form.serializeArray(); - // array index 0 contains the max files size - // array index 1 contains the request token - // array index 2 contains the directory + // array index 0 contains the max files size + // array index 1 contains the request token + // array index 2 contains the directory formArray[2]['value'] = dirName; return formArray; }}).success(function(result, textStatus, jqXHR) { @@ -305,13 +318,14 @@ $(document).ready(function() { $('#notification').fadeIn(); } var file=response[0]; - // TODO: this doesn't work if the file name has been changed server side + // TODO: this doesn't work if the file name has been changed server side delete uploadingFiles[dirName][file.name]; - if ($.assocArraySize(uploadingFiles[dirName]) == 0) { - delete uploadingFiles[dirName]; - } + if ($.assocArraySize(uploadingFiles[dirName]) == 0) { + delete uploadingFiles[dirName]; + } + //TODO update file upload size limit - var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext') + var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext') var currentUploads = parseInt(uploadtext.attr('currentUploads')); currentUploads -= 1; uploadtext.attr('currentUploads', currentUploads); @@ -339,6 +353,7 @@ $(document).ready(function() { } else { uploadtext.text(t('files', '{count} files uploading', {count: currentUploads})); } + delete uploadingFiles[dirName][fileName]; $('#notification').hide(); $('#notification').text(t('files', 'Upload cancelled.')); $('#notification').fadeIn(); @@ -362,8 +377,10 @@ $(document).ready(function() { if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); } + //TODO update file upload size limit FileList.loadingDone(file.name, file.id); } else { + Files.cancelUpload(this.files[0].name); $('#notification').text(t('files', response.data.message)); $('#notification').fadeIn(); $('#fileList > tr').not('[data-mime]').fadeOut(); @@ -372,6 +389,7 @@ $(document).ready(function() { }) .error(function(jqXHR, textStatus, errorThrown) { if(errorThrown === 'abort') { + Files.cancelUpload(this.files[0].name); $('#notification').hide(); $('#notification').text(t('files', 'Upload cancelled.')); $('#notification').fadeIn(); @@ -392,8 +410,10 @@ $(document).ready(function() { if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); } + //TODO update file upload size limit FileList.loadingDone(file.name, file.id); } else { + //TODO Files.cancelUpload(/*where do we get the filename*/); $('#notification').text(t('files', response.data.message)); $('#notification').fadeIn(); $('#fileList > tr').not('[data-mime]').fadeOut(); @@ -434,7 +454,7 @@ $(document).ready(function() { // http://stackoverflow.com/a/6700/11236 var size = 0, key; for (key in obj) { - if (obj.hasOwnProperty(key)) size++; + if (obj.hasOwnProperty(key)) size++; } return size; }; @@ -477,7 +497,7 @@ $(document).ready(function() { $('#new').removeClass('active'); $('#new li').each(function(i,element){ if($(element).children('p').length==0){ - $(element).children('input').remove(); + $(element).children('form').remove(); $(element).append('<p>'+$(element).data('text')+'</p>'); } }); @@ -496,7 +516,7 @@ $(document).ready(function() { $('#new li').each(function(i,element){ if($(element).children('p').length==0){ - $(element).children('input').remove(); + $(element).children('form').remove(); $(element).append('<p>'+$(element).data('text')+'</p>'); } }); @@ -505,23 +525,32 @@ $(document).ready(function() { var text=$(this).children('p').text(); $(this).data('text',text); $(this).children('p').remove(); + var form=$('<form></form>'); var input=$('<input>'); - $(this).append(input); + form.append(input); + $(this).append(form); input.focus(); - input.change(function(){ - if (type != 'web' && Files.containsInvalidCharacters($(this).val())) { - return; - } else if( type == 'folder' && $('#dir').val() == '/' && $(this).val() == 'Shared') { - $('#notification').text(t('files','Invalid folder name. Usage of "Shared" is reserved by Owncloud')); + form.submit(function(event){ + event.stopPropagation(); + event.preventDefault(); + var newname=input.val(); + if(type == 'web' && newname.length == 0) { + $('#notification').text(t('files', 'URL cannot be empty.')); + $('#notification').fadeIn(); + return false; + } else if (type != 'web' && !Files.isFileNameValid(newname)) { + return false; + } else if( type == 'folder' && $('#dir').val() == '/' && newname == 'Shared') { + $('#notification').text(t('files','Invalid folder name. Usage of \'Shared\' is reserved by Owncloud')); $('#notification').fadeIn(); - return; + return false; } if (FileList.lastAction) { FileList.lastAction(); } - var name = getUniqueName($(this).val()); - if (name != $(this).val()) { - FileList.checkName(name, $(this).val(), true); + var name = getUniqueName(newname); + if (newname != name) { + FileList.checkName(name, newname, true); var hidden = true; } else { var hidden = false; @@ -565,7 +594,7 @@ $(document).ready(function() { break; case 'web': if(name.substr(0,8)!='https://' && name.substr(0,7)!='http://'){ - name='http://'.name; + name='http://'+name; } var localName=name; if(localName.substr(localName.length-1,1)=='/'){//strip / @@ -604,8 +633,8 @@ $(document).ready(function() { }); break; } - var li=$(this).parent(); - $(this).remove(); + var li=form.parent(); + form.remove(); li.append('<p>'+li.data('text')+'</p>'); $('#new>a').click(); }); diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index b527b0e027f..bc10979611b 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -1,28 +1,22 @@ <?php $TRANSLATIONS = array( -"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" => "Грешка при запис на диска", +"Missing a temporary folder" => "Липсва временна папка", "Files" => "Файлове", "Delete" => "Изтриване", -"Upload Error" => "Грешка при качване", -"Upload cancelled." => "Качването е отменено.", +"Rename" => "Преименуване", +"replace" => "препокриване", +"cancel" => "отказ", +"undo" => "възтановяване", +"Upload cancelled." => "Качването е спряно.", "Name" => "Име", "Size" => "Размер", "Modified" => "Променено", -"Maximum upload size" => "Макс. размер за качване", -"0 is unlimited" => "0 означава без ограничение", +"Maximum upload size" => "Максимален размер за качване", +"0 is unlimited" => "Ползвайте 0 за без ограничения", "Save" => "Запис", -"New" => "Нов", -"Text file" => "Текстов файл", +"New" => "Ново", "Folder" => "Папка", "Upload" => "Качване", -"Cancel upload" => "Отказване на качването", -"Nothing in here. Upload something!" => "Няма нищо, качете нещо!", +"Nothing in here. Upload something!" => "Няма нищо тук. Качете нещо.", "Download" => "Изтегляне", -"Upload too large" => "Файлът е прекалено голям", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файловете които се опитвате да качите са по-големи от позволеното за сървъра.", -"Files are being scanned, please wait." => "Файловете се претърсват, изчакайте." +"Upload too large" => "Файлът който сте избрали за качване е прекалено голям" ); diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php new file mode 100644 index 00000000000..e55c8811393 --- /dev/null +++ b/apps/files/l10n/bn_BD.php @@ -0,0 +1,71 @@ +<?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান", +"Could not move %s" => "%s কে স্থানান্তর করা সম্ভব হলো না", +"Unable to rename file" => "ফাইলের নাম পরিবর্তন করা সম্ভব হলো না", +"No file was uploaded. Unknown error" => "কোন ফাইল আপলোড করা হয় নি। সমস্যা অজ্ঞাত।", +"There is no error, the file uploaded with success" => "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "আপলোড করা ফাইলটি HTML ফর্মে নির্ধারিত MAX_FILE_SIZE নির্দেশিত সর্বোচ্চ আকার অতিক্রম করেছে ", +"The uploaded file was only partially uploaded" => "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে", +"No file was uploaded" => "কোন ফাইল আপলোড করা হয় নি", +"Missing a temporary folder" => "অস্থায়ী ফোল্ডার খোয়া গিয়েছে", +"Failed to write to disk" => "ডিস্কে লিখতে ব্যর্থ", +"Not enough space available" => "যথেষ্ঠ পরিমাণ স্থান নেই", +"Invalid directory." => "ভুল ডিরেক্টরি", +"Files" => "ফাইল", +"Unshare" => "ভাগাভাগি বাতিল ", +"Delete" => "মুছে ফেল", +"Rename" => "পূনঃনামকরণ", +"{new_name} already exists" => "{new_name} টি বিদ্যমান", +"replace" => "প্রতিস্থাপন", +"suggest name" => "নাম সুপারিশ করুন", +"cancel" => "বাতিল", +"replaced {new_name}" => "{new_name} প্রতিস্থাপন করা হয়েছে", +"undo" => "ক্রিয়া প্রত্যাহার", +"replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে", +"unshared {files}" => "{files} ভাগাভাগি বাতিল কর", +"deleted {files}" => "{files} মুছে ফেলা হয়েছে", +"'.' is an invalid file name." => "টি একটি অননুমোদিত নাম।", +"File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।", +"generating ZIP-file, it may take some time." => "ZIP- ফাইল তৈরী করা হচ্ছে, এজন্য কিছু সময় আবশ্যক।", +"Unable to upload your file as it is a directory or has 0 bytes" => "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার ০ বাইট", +"Upload Error" => "আপলোড করতে সমস্যা ", +"Close" => "বন্ধ", +"Pending" => "মুলতুবি", +"1 file uploading" => "১টি ফাইল আপলোড করা হচ্ছে", +"{count} files uploading" => "{count} টি ফাইল আপলোড করা হচ্ছে", +"Upload cancelled." => "আপলোড বাতিল করা হয়েছে।", +"File upload is in progress. Leaving the page now will cancel the upload." => "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।", +"URL cannot be empty." => "URL ফাঁকা রাখা যাবে না।", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।", +"{count} files scanned" => "{count} টি ফাইল স্ক্যান করা হয়েছে", +"error while scanning" => "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে", +"Name" => "নাম", +"Size" => "আকার", +"Modified" => "পরিবর্তিত", +"1 folder" => "১টি ফোল্ডার", +"{count} folders" => "{count} টি ফোল্ডার", +"1 file" => "১টি ফাইল", +"{count} files" => "{count} টি ফাইল", +"File handling" => "ফাইল হ্যার্ডলিং", +"Maximum upload size" => "আপলোডের সর্বোচ্চ আকার", +"max. possible: " => "অনুমোদিত সর্বোচ্চ আকার", +"Needed for multi-file and folder downloads." => "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার জন্য আবশ্যক।", +"Enable ZIP-download" => "ZIP ডাউনলোড সক্রিয় কর", +"0 is unlimited" => "০ এর অর্থ অসীম", +"Maximum input size for ZIP files" => "ZIP ফাইলের ইনপুটের সর্বোচ্চ আকার", +"Save" => "সংরক্ষন কর", +"New" => "নতুন", +"Text file" => "টেক্সট ফাইল", +"Folder" => "ফোল্ডার", +"From link" => " লিংক থেকে", +"Upload" => "আপলোড", +"Cancel upload" => "আপলোড বাতিল কর", +"Nothing in here. Upload something!" => "এখানে কিছুই নেই। কিছু আপলোড করুন !", +"Download" => "ডাউনলোড", +"Upload too large" => "আপলোডের আকারটি অনেক বড়", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন ", +"Files are being scanned, please wait." => "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।", +"Current scanning" => "বর্তমান স্ক্যানিং" +); diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 0866d97bd74..f6ddbcd8e18 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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 rename file" => "No es pot canviar el nom del fitxer", +"No file was uploaded. Unknown error" => "No s'ha carregat cap fitxer. Error desconegut", "There is no error, the file uploaded with success" => "El fitxer s'ha pujat correctament", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML", @@ -6,6 +10,8 @@ "No file was uploaded" => "El fitxer no s'ha pujat", "Missing a temporary folder" => "S'ha perdut un fitxer temporal", "Failed to write to disk" => "Ha fallat en escriure al disc", +"Not enough space available" => "No hi ha prou espai disponible", +"Invalid directory." => "Directori no vàlid.", "Files" => "Fitxers", "Unshare" => "Deixa de compartir", "Delete" => "Suprimeix", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "s'ha substituït {old_name} per {new_name}", "unshared {files}" => "no compartits {files}", "deleted {files}" => "eliminats {files}", +"'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.", +"File name cannot be empty." => "El nom del fitxer no pot ser buit.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.", "generating ZIP-file, it may take some time." => "s'estan generant fitxers ZIP, pot trigar una estona.", "Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes", @@ -29,7 +37,8 @@ "{count} files uploading" => "{count} fitxers en pujada", "Upload cancelled." => "La pujada s'ha cancel·lat.", "File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "El nom de la carpeta no és vàlid. L'ús de \"Compartit\" està reservat per a OwnCloud", +"URL cannot be empty." => "La URL no pot ser buida", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud", "{count} files scanned" => "{count} fitxers escannejats", "error while scanning" => "error durant l'escaneig", "Name" => "Nom", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 12eb79a1a10..65ac4b04931 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "Nelze přesunout %s - existuje soubor se stejným názvem", +"Could not move %s" => "Nelze přesunout %s", +"Unable to rename file" => "Nelze přejmenovat soubor", +"No file was uploaded. Unknown error" => "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", @@ -6,6 +10,8 @@ "No file was uploaded" => "Žádný soubor nebyl odeslán", "Missing a temporary folder" => "Chybí adresář pro dočasné soubory", "Failed to write to disk" => "Zápis na disk selhal", +"Not enough space available" => "Nedostatek dostupného místa", +"Invalid directory." => "Neplatný adresář", "Files" => "Soubory", "Unshare" => "Zrušit sdílení", "Delete" => "Smazat", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", "unshared {files}" => "sdílení zrušeno pro {files}", "deleted {files}" => "smazáno {files}", +"'.' 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.", "generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to nějakou dobu trvat.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů", @@ -29,7 +37,8 @@ "{count} files uploading" => "odesílám {count} souborů", "Upload cancelled." => "Odesílání zrušeno.", "File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Neplatný název složky. Použití názvu \"Shared\" je rezervováno pro interní úžití službou Owncloud.", +"URL cannot be empty." => "URL nemůže být prázdná", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud", "{count} files scanned" => "prozkoumáno {count} souborů", "error while scanning" => "chyba při prohledávání", "Name" => "Název", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 05404d27af7..02c177a2f1c 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Ingen fil blev uploadet. Ukendt fejl.", "There is no error, the file uploaded with success" => "Der er ingen fejl, filen blev uploadet med success", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen", @@ -29,7 +30,7 @@ "{count} files uploading" => "{count} filer uploades", "Upload cancelled." => "Upload afbrudt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud", +"URL cannot be empty." => "URLen kan ikke være tom.", "{count} files scanned" => "{count} filer skannet", "error while scanning" => "fejl under scanning", "Name" => "Navn", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 8073ee28da5..089ce1c0a26 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben - Datei mit diesem Namen existiert bereits.", +"Could not move %s" => "Konnte %s nicht verschieben", +"Unable to rename file" => "Konnte Datei nicht umbenennen", +"No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", "There is no error, the file uploaded with success" => "Datei fehlerfrei hochgeladen.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde", @@ -6,6 +10,8 @@ "No file was uploaded" => "Es wurde keine Datei hochgeladen.", "Missing a temporary folder" => "Temporärer Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", +"Not enough space available" => "Nicht genug Speicherplatz verfügbar", +"Invalid directory." => "Ungültiges Verzeichnis", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", "Delete" => "Löschen", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}", "unshared {files}" => "Freigabe von {files} aufgehoben", "deleted {files}" => "{files} gelöscht", +"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname", +"File name cannot be empty." => "Der Dateiname darf nicht leer sein", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", "Unable to upload your file as it is a directory or has 0 bytes" => "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.", @@ -29,7 +37,8 @@ "{count} files uploading" => "{count} Dateien werden hochgeladen", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten.", +"URL cannot be empty." => "Die URL darf nicht leer sein", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten.", "{count} files scanned" => "{count} Dateien wurden gescannt", "error while scanning" => "Fehler beim Scannen", "Name" => "Name", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 6a9730e94b0..5cd4ef70425 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben - Datei mit diesem Namen existiert bereits", +"Could not move %s" => "Konnte %s nicht verschieben", +"Unable to rename file" => "Konnte Datei nicht umbenennen", +"No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", "There is no error, the file uploaded with success" => "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde", @@ -6,6 +10,8 @@ "No file was uploaded" => "Es wurde keine Datei hochgeladen.", "Missing a temporary folder" => "Der temporäre Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", +"Not enough space available" => "Nicht genügend Speicherplatz verfügbar", +"Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", "Delete" => "Löschen", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", "unshared {files}" => "Freigabe für {files} beendet", "deleted {files}" => "{files} gelöscht", +"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", +"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.", @@ -29,7 +37,8 @@ "{count} files uploading" => "{count} Dateien wurden hochgeladen", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten.", +"URL cannot be empty." => "Die URL darf nicht leer sein.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten", "{count} files scanned" => "{count} Dateien wurden gescannt", "error while scanning" => "Fehler beim Scannen", "Name" => "Name", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index fce7a07c948..3c1ac538091 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα", "There is no error, the file uploaded with success" => "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα", @@ -29,7 +30,7 @@ "{count} files uploading" => "{count} αρχεία ανεβαίνουν", "Upload cancelled." => "Η αποστολή ακυρώθηκε.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud", +"URL cannot be empty." => "Η URL δεν πρέπει να είναι κενή.", "{count} files scanned" => "{count} αρχεία ανιχνεύτηκαν", "error while scanning" => "σφάλμα κατά την ανίχνευση", "Name" => "Όνομα", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index bdde6d0fece..92c03ee8826 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Neniu dosiero alŝutiĝis. Nekonata eraro.", "There is no error, the file uploaded with success" => "Ne estas eraro, la dosiero alŝutiĝis sukcese", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo", @@ -29,7 +30,7 @@ "{count} files uploading" => "{count} dosieroj alŝutatas", "Upload cancelled." => "La alŝuto nuliĝis.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud", +"URL cannot be empty." => "URL ne povas esti malplena.", "{count} files scanned" => "{count} dosieroj skaniĝis", "error while scanning" => "eraro dum skano", "Name" => "Nomo", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 40b9ea9f23f..885ed3770e9 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "No se puede mover %s - Ya existe un archivo con ese nombre", +"Could not move %s" => "No se puede mover %s", +"Unable to rename file" => "No se puede renombrar el archivo", +"No file was uploaded. Unknown error" => "Fallo no se subió el fichero", "There is no error, the file uploaded with success" => "No se ha producido ningún error, el archivo se ha subido con éxito", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo que intentas subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML", @@ -6,6 +10,8 @@ "No file was uploaded" => "No se ha subido ningún archivo", "Missing a temporary folder" => "Falta un directorio temporal", "Failed to write to disk" => "La escritura en disco ha fallado", +"Not enough space available" => "No hay suficiente espacio disponible", +"Invalid directory." => "Directorio invalido.", "Files" => "Archivos", "Unshare" => "Dejar de compartir", "Delete" => "Eliminar", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", "unshared {files}" => "{files} descompartidos", "deleted {files}" => "{files} eliminados", +"'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", +"File name cannot be empty." => "El nombre de archivo no puede estar vacío.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", "generating ZIP-file, it may take some time." => "generando un fichero ZIP, puede llevar un tiempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes", @@ -29,7 +37,7 @@ "{count} files uploading" => "Subiendo {count} archivos", "Upload cancelled." => "Subida cancelada.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nombre de la carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud", +"URL cannot be empty." => "La URL no puede estar vacía.", "{count} files scanned" => "{count} archivos escaneados", "error while scanning" => "error escaneando", "Name" => "Nombre", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index e514d8de59a..650a3149e4f 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "No se pudo mover %s - Un archivo con este nombre ya existe", +"Could not move %s" => "No se pudo mover %s ", +"Unable to rename file" => "No fue posible cambiar el nombre al archivo", +"No file was uploaded. Unknown error" => "El archivo no fue subido. Error desconocido", "There is no error, the file uploaded with success" => "No se han producido errores, el archivo se ha subido con éxito", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML", @@ -6,6 +10,8 @@ "No file was uploaded" => "El archivo no fue subido", "Missing a temporary folder" => "Falta un directorio temporal", "Failed to write to disk" => "Error al escribir en el disco", +"Not enough space available" => "No hay suficiente espacio disponible", +"Invalid directory." => "Directorio invalido.", "Files" => "Archivos", "Unshare" => "Dejar de compartir", "Delete" => "Borrar", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", "unshared {files}" => "{files} se dejaron de compartir", "deleted {files}" => "{files} borrados", +"'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", +"File name cannot be empty." => "El nombre del archivo no puede quedar vacío.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos.", "generating ZIP-file, it may take some time." => "generando un archivo ZIP, puede llevar un tiempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes", @@ -29,7 +37,8 @@ "{count} files uploading" => "Subiendo {count} archivos", "Upload cancelled." => "La subida fue cancelada", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nombre del directorio inválido. Usar \"Shared\" está reservado por ownCloud.", +"URL cannot be empty." => "La URL no puede estar vacía", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud", "{count} files scanned" => "{count} archivos escaneados", "error while scanning" => "error mientras se escaneaba", "Name" => "Nombre", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 0fddbfdca46..6996b0a7918 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Ühtegi faili ei laetud üles. Tundmatu viga", "There is no error, the file uploaded with success" => "Ühtegi viga pole, fail on üles laetud", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse", "The uploaded file was only partially uploaded" => "Fail laeti üles ainult osaliselt", @@ -28,7 +29,7 @@ "{count} files uploading" => "{count} faili üleslaadimist", "Upload cancelled." => "Üleslaadimine tühistati.", "File upload is in progress. Leaving the page now will cancel the upload." => "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud ", +"URL cannot be empty." => "URL ei saa olla tühi.", "{count} files scanned" => "{count} faili skännitud", "error while scanning" => "viga skännimisel", "Name" => "Nimi", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 0b223b93d8c..96f59a668e9 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Ez da fitxategirik igo. Errore ezezaguna", "There is no error, the file uploaded with success" => "Ez da arazorik izan, fitxategia ongi igo da", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da", @@ -29,7 +30,7 @@ "{count} files uploading" => "{count} fitxategi igotzen", "Upload cancelled." => "Igoera ezeztatuta", "File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka", +"URL cannot be empty." => "URLa ezin da hutsik egon.", "{count} files scanned" => "{count} fitxategi eskaneatuta", "error while scanning" => "errore bat egon da eskaneatzen zen bitartean", "Name" => "Izena", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 8284593e886..062df6a56b3 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "هیچ فایلی آپلود نشد.خطای ناشناس", "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 \nMAX_FILE_SIZE", "The uploaded file was only partially uploaded" => "مقدار کمی از فایل بارگذاری شده", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 772dabbb392..e7e4b044372 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -1,10 +1,16 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa", +"Could not move %s" => "Kohteen %s siirto ei onnistunut", +"Unable to rename file" => "Tiedoston nimeäminen uudelleen ei onnistunut", +"No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe", "There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan", "The uploaded file was only partially uploaded" => "Tiedoston lähetys onnistui vain osittain", "No file was uploaded" => "Yhtäkään tiedostoa ei lähetetty", "Missing a temporary folder" => "Väliaikaiskansiota ei ole olemassa", "Failed to write to disk" => "Levylle kirjoitus epäonnistui", +"Not enough space available" => "Tilaa ei ole riittävästi", +"Invalid directory." => "Virheellinen kansio.", "Files" => "Tiedostot", "Unshare" => "Peru jakaminen", "Delete" => "Poista", @@ -14,6 +20,8 @@ "suggest name" => "ehdota nimeä", "cancel" => "peru", "undo" => "kumoa", +"'.' 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.", "generating ZIP-file, it may take some time." => "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken.", "Unable to upload your file as it is a directory or has 0 bytes" => "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio", @@ -22,6 +30,7 @@ "Pending" => "Odottaa", "Upload cancelled." => "Lähetys peruttu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen.", +"URL cannot be empty." => "Verkko-osoite ei voi olla tyhjä", "Name" => "Nimi", "Size" => "Koko", "Modified" => "Muutettu", @@ -40,6 +49,7 @@ "New" => "Uusi", "Text file" => "Tekstitiedosto", "Folder" => "Kansio", +"From link" => "Linkistä", "Upload" => "Lähetä", "Cancel upload" => "Peru lähetys", "Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 86d476873d0..f14759ff8f0 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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 rename file" => "Impossible de renommer le fichier", +"No file was uploaded. Unknown error" => "Aucun fichier n'a été chargé. Erreur inconnue", "There is no error, the file uploaded with success" => "Aucune erreur, le fichier a été téléversé avec succès", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML", @@ -6,6 +10,8 @@ "No file was uploaded" => "Aucun fichier n'a été téléversé", "Missing a temporary folder" => "Il manque un répertoire temporaire", "Failed to write to disk" => "Erreur d'écriture sur le disque", +"Not enough space available" => "Espace disponible insuffisant", +"Invalid directory." => "Dossier invalide.", "Files" => "Fichiers", "Unshare" => "Ne plus partager", "Delete" => "Supprimer", @@ -14,11 +20,13 @@ "replace" => "remplacer", "suggest name" => "Suggérer un nom", "cancel" => "annuler", -"replaced {new_name}" => "{new_name} a été replacé", +"replaced {new_name}" => "{new_name} a été remplacé", "undo" => "annuler", "replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}", "unshared {files}" => "Fichiers non partagés : {files}", "deleted {files}" => "Fichiers supprimés : {files}", +"'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.", +"File name cannot be empty." => "Le nom de fichier ne peut être vide.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", "generating ZIP-file, it may take some time." => "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet.", @@ -29,7 +37,8 @@ "{count} files uploading" => "{count} fichiers téléversés", "Upload cancelled." => "Chargement annulé.", "File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nom de répertoire invalide. \"Shared\" est réservé par ownCloud", +"URL cannot be empty." => "L'URL ne peut-être vide", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud", "{count} files scanned" => "{count} fichiers indexés", "error while scanning" => "erreur lors de l'indexation", "Name" => "Nom", @@ -54,7 +63,7 @@ "Upload" => "Envoyer", "Cancel upload" => "Annuler l'envoi", "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", -"Download" => "Téléchargement", +"Download" => "Télécharger", "Upload too large" => "Fichier trop volumineux", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur.", "Files are being scanned, please wait." => "Les fichiers sont en cours d'analyse, veuillez patienter.", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 5c50e3764cf..c15066163cf 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "Non se moveu %s - Xa existe un ficheiro con ese nome.", +"Could not move %s" => "Non se puido mover %s", +"Unable to rename file" => "Non se pode renomear o ficheiro", +"No file was uploaded. Unknown error" => "Non se subiu ningún ficheiro. Erro descoñecido.", "There is no error, the file uploaded with success" => "Non hai erros. O ficheiro enviouse correctamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro subido excede a directiva indicada polo tamaño_máximo_de_subida de php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML", @@ -6,6 +10,8 @@ "No file was uploaded" => "Non se enviou ningún ficheiro", "Missing a temporary folder" => "Falta un cartafol temporal", "Failed to write to disk" => "Erro ao escribir no disco", +"Not enough space available" => "O espazo dispoñíbel é insuficiente", +"Invalid directory." => "O directorio é incorrecto.", "Files" => "Ficheiros", "Unshare" => "Deixar de compartir", "Delete" => "Eliminar", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "substituír {new_name} polo {old_name}", "unshared {files}" => "{files} sen compartir", "deleted {files}" => "{files} eliminados", +"'.' is an invalid file name." => "'.' é un nonme de ficheiro non válido", +"File name cannot be empty." => "O nome de ficheiro non pode estar baldeiro", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non válido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non se permiten.", "generating ZIP-file, it may take some time." => "xerando un ficheiro ZIP, o que pode levar un anaco.", "Unable to upload your file as it is a directory or has 0 bytes" => "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes", @@ -29,7 +37,8 @@ "{count} files uploading" => "{count} ficheiros subíndose", "Upload cancelled." => "Subida cancelada.", "File upload is in progress. Leaving the page now will cancel the upload." => "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome de cartafol non válido. O uso de \"compartido\" está reservado exclusivamente para ownCloud", +"URL cannot be empty." => "URL non pode quedar baleiro.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome de cartafol non válido. O uso de 'Shared' está reservado por Owncloud", "{count} files scanned" => "{count} ficheiros escaneados", "error while scanning" => "erro mentres analizaba", "Name" => "Nome", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 4c73493211d..bac9a8a6a53 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "לא הועלה קובץ. טעות בלתי מזוהה.", "There is no error, the file uploaded with success" => "לא אירעה תקלה, הקבצים הועלו בהצלחה", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML", @@ -29,7 +30,7 @@ "{count} files uploading" => "{count} קבצים נשלחים", "Upload cancelled." => "ההעלאה בוטלה.", "File upload is in progress. Leaving the page now will cancel the upload." => "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud", +"URL cannot be empty." => "קישור אינו יכול להיות ריק.", "{count} files scanned" => "{count} קבצים נסרקו", "error while scanning" => "אירעה שגיאה במהלך הסריקה", "Name" => "שם", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index f797c67b986..b0d46ee7a2c 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Nem történt feltöltés. Ismeretlen hiba", "There is no error, the file uploaded with success" => "A fájlt sikerült feltölteni", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra.", @@ -6,6 +7,8 @@ "No file was uploaded" => "Nem töltődött fel semmi", "Missing a temporary folder" => "Hiányzik egy ideiglenes mappa", "Failed to write to disk" => "Nem sikerült a lemezre történő írás", +"Not enough space available" => "Nincs elég szabad hely", +"Invalid directory." => "Érvénytelen mappa.", "Files" => "Fájlok", "Unshare" => "Megosztás visszavonása", "Delete" => "Törlés", @@ -19,6 +22,8 @@ "replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}", "unshared {files}" => "{files} fájl megosztása visszavonva", "deleted {files}" => "{files} fájl törölve", +"'.' is an invalid file name." => "'.' fájlnév érvénytelen.", +"File name cannot be empty." => "A fájlnév nem lehet semmi.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'", "generating ZIP-file, it may take some time." => "ZIP-fájl generálása, ez eltarthat egy ideig.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű", @@ -29,7 +34,7 @@ "{count} files uploading" => "{count} fájl töltődik föl", "Upload cancelled." => "A feltöltést megszakítottuk.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Érvénytelen mappanév. A \"Shared\" elnevezést az Owncloud rendszer használja.", +"URL cannot be empty." => "Az URL nem lehet semmi.", "{count} files scanned" => "{count} fájlt találtunk", "error while scanning" => "Hiba a fájllista-ellenőrzés során", "Name" => "Név", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 1f8cb444d26..5d934e97e7b 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -17,6 +17,7 @@ "Close" => "tutup", "Pending" => "Menunggu", "Upload cancelled." => "Pengunggahan dibatalkan.", +"URL cannot be empty." => "tautan tidak boleh kosong", "Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index bca878873ac..2eff686611a 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "Gat ekki fært %s - Skrá með þessu nafni er þegar til", +"Could not move %s" => "Gat ekki fært %s", +"Unable to rename file" => "Gat ekki endurskýrt skrá", +"No file was uploaded. Unknown error" => "Engin skrá var send inn. Óþekkt villa.", "There is no error, the file uploaded with success" => "Engin villa, innsending heppnaðist", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Innsend skrá er stærri en upload_max stillingin í php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu.", @@ -6,6 +10,8 @@ "No file was uploaded" => "Engin skrá skilaði sér", "Missing a temporary folder" => "Vantar bráðabirgðamöppu", "Failed to write to disk" => "Tókst ekki að skrifa á disk", +"Not enough space available" => "Ekki nægt pláss tiltækt", +"Invalid directory." => "Ógild mappa.", "Files" => "Skrár", "Unshare" => "Hætta deilingu", "Delete" => "Eyða", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "yfirskrifaði {new_name} með {old_name}", "unshared {files}" => "Hætti við deilingu á {files}", "deleted {files}" => "eyddi {files}", +"'.' 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ð.", "generating ZIP-file, it may take some time." => "bý til ZIP skrá, það gæti tekið smá stund.", "Unable to upload your file as it is a directory or has 0 bytes" => "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti.", @@ -29,7 +37,8 @@ "{count} files uploading" => "{count} skrár innsendar", "Upload cancelled." => "Hætt við innsendingu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ógilt nafn á möppu. Nafnið \"Shared\" er frátekið fyrir ownCloud.", +"URL cannot be empty." => "Vefslóð má ekki vera tóm.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud", "{count} files scanned" => "{count} skrár skimaðar", "error while scanning" => "villa við skimun", "Name" => "Nafn", @@ -53,9 +62,9 @@ "From link" => "Af tengli", "Upload" => "Senda inn", "Cancel upload" => "Hætta við innsendingu", -"Nothing in here. Upload something!" => "Ekkert hér. Sendu eitthvað inn!", +"Nothing in here. Upload something!" => "Ekkert hér. Settu eitthvað inn!", "Download" => "Niðurhal", -"Upload too large" => "Innsend skrá of stór", +"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" diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 90b34171220..a54e424694f 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "Impossibile spostare %s - un file con questo nome esiste già", +"Could not move %s" => "Impossibile spostare %s", +"Unable to rename file" => "Impossibile rinominare il file", +"No file was uploaded. Unknown error" => "Nessun file è stato inviato. Errore sconosciuto", "There is no error, the file uploaded with success" => "Non ci sono errori, file caricato con successo", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Il file caricato supera la direttiva upload_max_filesize in php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML", @@ -6,6 +10,8 @@ "No file was uploaded" => "Nessun file è stato caricato", "Missing a temporary folder" => "Cartella temporanea mancante", "Failed to write to disk" => "Scrittura su disco non riuscita", +"Not enough space available" => "Spazio disponibile insufficiente", +"Invalid directory." => "Cartella non valida.", "Files" => "File", "Unshare" => "Rimuovi condivisione", "Delete" => "Elimina", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}", "unshared {files}" => "non condivisi {files}", "deleted {files}" => "eliminati {files}", +"'.' is an invalid file name." => "'.' non è un nome file valido.", +"File name cannot be empty." => "Il nome del file non può essere vuoto.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.", "generating ZIP-file, it may take some time." => "creazione file ZIP, potrebbe richiedere del tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte", @@ -29,7 +37,8 @@ "{count} files uploading" => "{count} file in fase di caricamentoe", "Upload cancelled." => "Invio annullato", "File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome della cartella non valido. L'uso di \"Shared\" è riservato a ownCloud", +"URL cannot be empty." => "L'URL non può essere vuoto.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud", "{count} files scanned" => "{count} file analizzati", "error while scanning" => "errore durante la scansione", "Name" => "Nome", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 7b8c3ca4778..4621cc5d4ea 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "%s を移動できませんでした ― この名前のファイルはすでに存在します", +"Could not move %s" => "%s を移動できませんでした", +"Unable to rename file" => "ファイル名の変更ができません", +"No file was uploaded. Unknown error" => "ファイルは何もアップロードされていません。不明なエラー", "There is no error, the file uploaded with success" => "エラーはありません。ファイルのアップロードは成功しました", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "アップロードされたファイルはHTMLのフォームに設定されたMAX_FILE_SIZEに設定されたサイズを超えています", @@ -6,6 +10,8 @@ "No file was uploaded" => "ファイルはアップロードされませんでした", "Missing a temporary folder" => "テンポラリフォルダが見つかりません", "Failed to write to disk" => "ディスクへの書き込みに失敗しました", +"Not enough space available" => "利用可能なスペースが十分にありません", +"Invalid directory." => "無効なディレクトリです。", "Files" => "ファイル", "Unshare" => "共有しない", "Delete" => "削除", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換", "unshared {files}" => "未共有 {files}", "deleted {files}" => "削除 {files}", +"'.' is an invalid file name." => "'.' は無効なファイル名です。", +"File name cannot be empty." => "ファイル名を空にすることはできません。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。", "generating ZIP-file, it may take some time." => "ZIPファイルを生成中です、しばらくお待ちください。", "Unable to upload your file as it is a directory or has 0 bytes" => "ディレクトリもしくは0バイトのファイルはアップロードできません", @@ -29,7 +37,8 @@ "{count} files uploading" => "{count} ファイルをアップロード中", "Upload cancelled." => "アップロードはキャンセルされました。", "File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "無効なフォルダ名です。\"Shared\" の利用は ownCloud が予約済みです。", +"URL cannot be empty." => "URLは空にできません。", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。", "{count} files scanned" => "{count} ファイルをスキャン", "error while scanning" => "スキャン中のエラー", "Name" => "名前", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 4b5d57dff92..928b7cbb7e4 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존재함", +"Could not move %s" => "%s 항목을 이딩시키지 못하였음", +"Unable to rename file" => "파일 이름바꾸기 할 수 없음", +"No file was uploaded. Unknown error" => "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다", "There is no error, the file uploaded with success" => "업로드에 성공하였습니다.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "업로드한 파일이 HTML 문서에 지정한 MAX_FILE_SIZE보다 더 큼", @@ -6,6 +10,8 @@ "No file was uploaded" => "업로드된 파일 없음", "Missing a temporary folder" => "임시 폴더가 사라짐", "Failed to write to disk" => "디스크에 쓰지 못했습니다", +"Not enough space available" => "여유공간이 부족합니다", +"Invalid directory." => "올바르지 않은 디렉토리입니다.", "Files" => "파일", "Unshare" => "공유 해제", "Delete" => "삭제", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨", "unshared {files}" => "{files} 공유 해제됨", "deleted {files}" => "{files} 삭제됨", +"'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.", +"File name cannot be empty." => "파일이름은 공란이 될 수 없습니다.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다.", "generating ZIP-file, it may take some time." => "ZIP 파일을 생성하고 있습니다. 시간이 걸릴 수도 있습니다.", "Unable to upload your file as it is a directory or has 0 bytes" => "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다", @@ -29,7 +37,8 @@ "{count} files uploading" => "파일 {count}개 업로드 중", "Upload cancelled." => "업로드가 취소되었습니다.", "File upload is in progress. Leaving the page now will cancel the upload." => "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "폴더 이름이 올바르지 않습니다. \"Shared\" 폴더는 ownCloud에서 예약되었습니다.", +"URL cannot be empty." => "URL을 입력해야 합니다.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "폴더 이름이 유효하지 않습니다. ", "{count} files scanned" => "파일 {count}개 검색됨", "error while scanning" => "검색 중 오류 발생", "Name" => "이름", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index 49995f8df86..d6cf6450792 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( "Close" => "داخستن", +"URL cannot be empty." => "ناونیشانی بهستهر نابێت بهتاڵ بێت.", "Name" => "ناو", "Save" => "پاشکهوتکردن", "Folder" => "بوخچه", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 1d22746156e..3f48a69874e 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Ниту еден фајл не се вчита. Непозната грешка", "There is no error, the file uploaded with success" => "Нема грешка, датотеката беше подигната успешно", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Подигнатата датотеката ја надминува MAX_FILE_SIZE директивата која беше поставена во HTML формата", @@ -29,7 +30,7 @@ "{count} files uploading" => "{count} датотеки се подигаат", "Upload cancelled." => "Преземањето е прекинато.", "File upload is in progress. Leaving the page now will cancel the upload." => "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Неправилно име на папка. Користењето на „Shared“ е резервирано за Owncloud", +"URL cannot be empty." => "Адресата неможе да биде празна.", "{count} files scanned" => "{count} датотеки скенирани", "error while scanning" => "грешка при скенирање", "Name" => "Име", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index d7756698d0c..7fa87840842 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Tiada fail dimuatnaik. Ralat tidak diketahui.", "There is no error, the file uploaded with success" => "Tiada ralat, fail berjaya dimuat naik.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Fail yang dimuat naik melebihi MAX_FILE_SIZE yang dinyatakan dalam form HTML ", "The uploaded file was only partially uploaded" => "Sebahagian daripada fail telah dimuat naik. ", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index db54660ab1e..9be868164b1 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Ingen filer ble lastet opp. Ukjent feil.", "There is no error, the file uploaded with success" => "Det er ingen feil. Filen ble lastet opp.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Filstørrelsen overskrider maksgrensen på MAX_FILE_SIZE som ble oppgitt i HTML-skjemaet", "The uploaded file was only partially uploaded" => "Filopplastningen ble bare delvis gjennomført", @@ -27,7 +28,7 @@ "{count} files uploading" => "{count} filer laster opp", "Upload cancelled." => "Opplasting avbrutt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud.", +"URL cannot be empty." => "URL-en kan ikke være tom.", "{count} files scanned" => "{count} filer lest inn", "error while scanning" => "feil under skanning", "Name" => "Navn", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 093a5430d53..48c4ac74c2b 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam", +"Could not move %s" => "Kon %s niet verplaatsen", +"Unable to rename file" => "Kan bestand niet hernoemen", +"No file was uploaded. Unknown error" => "Er was geen bestand geladen. Onbekende fout", "There is no error, the file uploaded with success" => "Geen fout opgetreden, bestand successvol geupload.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is opgegeven in de HTML-formulier", @@ -6,6 +10,8 @@ "No file was uploaded" => "Geen bestand geüpload", "Missing a temporary folder" => "Een tijdelijke map mist", "Failed to write to disk" => "Schrijven naar schijf mislukt", +"Not enough space available" => "Niet genoeg ruimte beschikbaar", +"Invalid directory." => "Ongeldige directory.", "Files" => "Bestanden", "Unshare" => "Stop delen", "Delete" => "Verwijder", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "verving {new_name} met {old_name}", "unshared {files}" => "delen gestopt {files}", "deleted {files}" => "verwijderde {files}", +"'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.", +"File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan.", "generating ZIP-file, it may take some time." => "aanmaken ZIP-file, dit kan enige tijd duren.", "Unable to upload your file as it is a directory or has 0 bytes" => "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes", @@ -29,7 +37,8 @@ "{count} files uploading" => "{count} bestanden aan het uploaden", "Upload cancelled." => "Uploaden geannuleerd.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Folder naam niet toegestaan. Het gebruik van \"Shared\" is aan Owncloud voorbehouden", +"URL cannot be empty." => "URL kan niet leeg zijn.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud", "{count} files scanned" => "{count} bestanden gescanned", "error while scanning" => "Fout tijdens het scannen", "Name" => "Naam", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 8051eae8c42..226dae896c2 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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 rename file" => "Nie można zmienić nazwy pliku", +"No file was uploaded. Unknown error" => "Plik nie został załadowany. Nieznany błąd", "There is no error, the file uploaded with success" => "Przesłano plik", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Rozmiar przesłanego pliku przekracza maksymalną wartość dyrektywy upload_max_filesize, zawartą formularzu HTML", @@ -6,6 +10,8 @@ "No file was uploaded" => "Nie przesłano żadnego pliku", "Missing a temporary folder" => "Brak katalogu tymczasowego", "Failed to write to disk" => "Błąd zapisu na dysk", +"Not enough space available" => "Za mało miejsca", +"Invalid directory." => "Zła ścieżka.", "Files" => "Pliki", "Unshare" => "Nie udostępniaj", "Delete" => "Usuwa element", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "zastąpiony {new_name} z {old_name}", "unshared {files}" => "Udostępniane wstrzymane {files}", "deleted {files}" => "usunięto {files}", +"'.' is an invalid file name." => "'.' jest nieprawidłową nazwą pliku.", +"File name cannot be empty." => "Nazwa pliku nie może być pusta.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Niepoprawna nazwa, Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*'są niedozwolone.", "generating ZIP-file, it may take some time." => "Generowanie pliku ZIP, może potrwać pewien czas.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów", @@ -29,7 +37,8 @@ "{count} files uploading" => "{count} przesyłanie plików", "Upload cancelled." => "Wczytywanie anulowane.", "File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Błędna nazwa folderu. Nazwa \"Shared\" jest zarezerwowana dla Owncloud", +"URL cannot be empty." => "URL nie może być pusty.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nazwa folderu nieprawidłowa. Wykorzystanie \"Shared\" jest zarezerwowane przez Owncloud", "{count} files scanned" => "{count} pliki skanowane", "error while scanning" => "Wystąpił błąd podczas skanowania", "Name" => "Nazwa", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 97e5c94fb31..ece24c7a2fa 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Nenhum arquivo foi transferido. Erro desconhecido", "There is no error, the file uploaded with success" => "Não houve nenhum erro, o arquivo foi transferido com sucesso", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulário HTML", @@ -29,7 +30,7 @@ "{count} files uploading" => "Enviando {count} arquivos", "Upload cancelled." => "Envio cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "Upload em andamento. Sair da página agora resultará no cancelamento do envio.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome de pasta inválido. O nome \"Shared\" é reservado pelo Owncloud", +"URL cannot be empty." => "URL não pode ficar em branco", "{count} files scanned" => "{count} arquivos scaneados", "error while scanning" => "erro durante verificação", "Name" => "Nome", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 8c90fd47714..fb22894b34e 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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 rename file" => "Não foi possível renomear o ficheiro", +"No file was uploaded. Unknown error" => "Nenhum ficheiro foi carregado. Erro desconhecido", "There is no error, the file uploaded with success" => "Sem erro, ficheiro enviado com sucesso", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O ficheiro enviado excede o diretivo MAX_FILE_SIZE especificado no formulário HTML", @@ -6,6 +10,8 @@ "No file was uploaded" => "Não foi enviado nenhum ficheiro", "Missing a temporary folder" => "Falta uma pasta temporária", "Failed to write to disk" => "Falhou a escrita no disco", +"Not enough space available" => "Espaço em disco insuficiente!", +"Invalid directory." => "Directório Inválido", "Files" => "Ficheiros", "Unshare" => "Deixar de partilhar", "Delete" => "Apagar", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}", "unshared {files}" => "{files} não partilhado(s)", "deleted {files}" => "{files} eliminado(s)", +"'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!", +"File name cannot be empty." => "O nome do ficheiro não pode estar vazio.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", "generating ZIP-file, it may take some time." => "a gerar o ficheiro ZIP, poderá demorar algum tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes", @@ -29,7 +37,8 @@ "{count} files uploading" => "A carregar {count} ficheiros", "Upload cancelled." => "O envio foi cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome de pasta inválido! O uso de \"Shared\" (Partilhado) está reservado pelo OwnCloud", +"URL cannot be empty." => "O URL não pode estar vazio.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud", "{count} files scanned" => "{count} ficheiros analisados", "error while scanning" => "erro ao analisar", "Name" => "Nome", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 7244a6677a3..afa41da5212 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"Could not move %s" => "Nu s-a putut muta %s", +"Unable to rename file" => "Nu s-a putut redenumi fișierul", +"No file was uploaded. Unknown error" => "Nici un fișier nu a fost încărcat. Eroare necunoscută", "There is no error, the file uploaded with success" => "Nicio eroare, fișierul a fost încărcat cu succes", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML", @@ -6,6 +9,8 @@ "No file was uploaded" => "Niciun fișier încărcat", "Missing a temporary folder" => "Lipsește un dosar temporar", "Failed to write to disk" => "Eroare la scriere pe disc", +"Not enough space available" => "Nu este suficient spațiu disponibil", +"Invalid directory." => "Director invalid.", "Files" => "Fișiere", "Unshare" => "Anulează partajarea", "Delete" => "Șterge", @@ -19,6 +24,8 @@ "replaced {new_name} with {old_name}" => "{new_name} inlocuit cu {old_name}", "unshared {files}" => "nedistribuit {files}", "deleted {files}" => "Sterse {files}", +"'.' is an invalid file name." => "'.' este un nume invalid de fișier.", +"File name cannot be empty." => "Numele fișierului nu poate rămâne gol.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise.", "generating ZIP-file, it may take some time." => "se generază fișierul ZIP, va dura ceva timp.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes.", @@ -29,7 +36,8 @@ "{count} files uploading" => "{count} fisiere incarcate", "Upload cancelled." => "Încărcare anulată.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nume de folder invalid. Numele este rezervat pentru OwnCloud", +"URL cannot be empty." => "Adresa URL nu poate fi goală.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Invalid folder name. Usage of 'Shared' is reserved by Ownclou", "{count} files scanned" => "{count} fisiere scanate", "error while scanning" => "eroare la scanarea", "Name" => "Nume", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 4b6d0a8b151..49ead61f67e 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "Невозможно переместить %s - файл с таким именем уже существует", +"Could not move %s" => "Невозможно переместить %s", +"Unable to rename file" => "Невозможно переименовать файл", +"No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка", "There is no error, the file uploaded with success" => "Файл успешно загружен", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Файл превышает размер установленный upload_max_filesize в php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме", @@ -6,6 +10,8 @@ "No file was uploaded" => "Файл не был загружен", "Missing a temporary folder" => "Невозможно найти временную папку", "Failed to write to disk" => "Ошибка записи на диск", +"Not enough space available" => "Недостаточно свободного места", +"Invalid directory." => "Неправильный каталог.", "Files" => "Файлы", "Unshare" => "Отменить публикацию", "Delete" => "Удалить", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}", "unshared {files}" => "не опубликованные {files}", "deleted {files}" => "удаленные {files}", +"'.' is an invalid file name." => "'.' - неправильное имя файла.", +"File name cannot be empty." => "Имя файла не может быть пустым.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы.", "generating ZIP-file, it may take some time." => "создание ZIP-файла, это может занять некоторое время.", "Unable to upload your file as it is a directory or has 0 bytes" => "Не удается загрузить файл размером 0 байт в каталог", @@ -29,7 +37,8 @@ "{count} files uploading" => "{count} файлов загружается", "Upload cancelled." => "Загрузка отменена.", "File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Не правильное имя папки. Имя \"Shared\" резервировано в Owncloud", +"URL cannot be empty." => "Ссылка не может быть пустой.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Неправильное имя каталога. Имя 'Shared' зарезервировано.", "{count} files scanned" => "{count} файлов просканировано", "error while scanning" => "ошибка во время санирования", "Name" => "Название", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index bb701aac002..16bcc54e59f 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка", "There is no error, the file uploaded with success" => "Ошибка отсутствует, файл загружен успешно.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Размер загружаемого файла превышает upload_max_filesize директиву в php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Размер загруженного", @@ -29,7 +30,7 @@ "{count} files uploading" => "{количество} загружено файлов", "Upload cancelled." => "Загрузка отменена", "File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Некорректное имя папки. Нименование \"Опубликовано\" зарезервировано ownCloud", +"URL cannot be empty." => "URL не должен быть пустым.", "{count} files scanned" => "{количество} файлов отсканировано", "error while scanning" => "ошибка при сканировании", "Name" => "Имя", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index e256075896f..e1e06c4f814 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්", "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 විශාලත්වයට වඩා වැඩිය", "The uploaded file was only partially uploaded" => "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය", @@ -19,6 +20,7 @@ "1 file uploading" => "1 ගොනුවක් උඩගත කෙරේ", "Upload cancelled." => "උඩුගත කිරීම අත් හරින්න ලදී", "File upload is in progress. Leaving the page now will cancel the upload." => "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත", +"URL cannot be empty." => "යොමුව හිස් විය නොහැක", "error while scanning" => "පරීක්ෂා කිරීමේදී දෝෂයක්", "Name" => "නම", "Size" => "ප්රමාණය", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 21d9710f6ba..003b1aff225 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Žiaden súbor nebol odoslaný. Neznáma chyba", "There is no error, the file uploaded with success" => "Nenastala žiadna chyba, súbor bol úspešne nahraný", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Nahrávaný súbor presiahol MAX_FILE_SIZE direktívu, ktorá bola špecifikovaná v HTML formulári", @@ -29,7 +30,7 @@ "{count} files uploading" => "{count} súborov odosielaných", "Upload cancelled." => "Odosielanie zrušené", "File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nesprávne meno adresára. Použitie slova \"Shared\" (Zdieľané) je vyhradené službou ownCloud.", +"URL cannot be empty." => "URL nemôže byť prázdne", "{count} files scanned" => "{count} súborov prehľadaných", "error while scanning" => "chyba počas kontroly", "Name" => "Meno", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index c5ee6c422d5..2a0f4506386 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Nobena datoteka ni naložena. Neznana napaka.", "There is no error, the file uploaded with success" => "Datoteka je uspešno naložena brez napak.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Naložena datoteka presega dovoljeno velikost. Le-ta je določena z vrstico upload_max_filesize v datoteki php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Naložena datoteka presega velikost, ki jo določa parameter MAX_FILE_SIZE v HTML obrazcu", @@ -29,7 +30,7 @@ "{count} files uploading" => "nalagam {count} datotek", "Upload cancelled." => "Pošiljanje je preklicano.", "File upload is in progress. Leaving the page now will cancel the upload." => "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Neveljavno ime datoteke. Uporaba mape \"Share\" je rezervirana za ownCloud.", +"URL cannot be empty." => "Naslov URL ne sme biti prazen.", "{count} files scanned" => "{count} files scanned", "error while scanning" => "napaka med pregledovanjem datotek", "Name" => "Ime", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 48b258862b5..ecde8be4cc0 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -29,7 +29,6 @@ "{count} files uploading" => "Отпремам {count} датотеке/а", "Upload cancelled." => "Отпремање је прекинуто.", "File upload is in progress. Leaving the page now will cancel the upload." => "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Неисправан назив фасцикле. „Дељено“ користи Оунклауд.", "{count} files scanned" => "Скенирано датотека: {count}", "error while scanning" => "грешка при скенирању", "Name" => "Назив", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index bcc849242ac..7277ec17852 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Ingen fil uppladdad. Okänt fel", "There is no error, the file uploaded with success" => "Inga fel uppstod. Filen laddades upp utan problem", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uppladdade filen överstiger MAX_FILE_SIZE direktivet som anges i HTML-formulär", @@ -6,6 +7,8 @@ "No file was uploaded" => "Ingen fil blev uppladdad", "Missing a temporary folder" => "Saknar en tillfällig mapp", "Failed to write to disk" => "Misslyckades spara till disk", +"Not enough space available" => "Inte tillräckligt med utrymme tillgängligt", +"Invalid directory." => "Felaktig mapp.", "Files" => "Filer", "Unshare" => "Sluta dela", "Delete" => "Radera", @@ -19,6 +22,8 @@ "replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}", "unshared {files}" => "stoppad delning {files}", "deleted {files}" => "raderade {files}", +"'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.", +"File name cannot be empty." => "Filnamn kan inte vara tomt.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.", "generating ZIP-file, it may take some time." => "genererar ZIP-fil, det kan ta lite tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes.", @@ -29,7 +34,8 @@ "{count} files uploading" => "{count} filer laddas upp", "Upload cancelled." => "Uppladdning avbruten.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ogiltigt mappnamn. Ordet \"Delad\" är reserverat av ownCloud.", +"URL cannot be empty." => "URL kan inte vara tom.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud", "{count} files scanned" => "{count} filer skannade", "error while scanning" => "fel vid skanning", "Name" => "Namn", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index 9399089bc78..16cab5cf963 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு", "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 ஐ விட கூடியது", "The uploaded file was only partially uploaded" => "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது", @@ -28,7 +29,7 @@ "{count} files uploading" => "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது", "Upload cancelled." => "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது", "File upload is in progress. Leaving the page now will cancel the upload." => "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "செல்லுபடியற்ற கோப்புறை பெயர். \"பகிர்வின்\" பாவனை Owncloud இனால் ஒதுக்கப்பட்டுள்ளது", +"URL cannot be empty." => "URL வெறுமையாக இருக்கமுடியாது.", "{count} files scanned" => "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது", "error while scanning" => "வருடும் போதான வழு", "Name" => "பெயர்", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index bad817ab006..3fda142a4e9 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ", "There is no error, the file uploaded with success" => "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง MAX_FILE_SIZE ที่ระบุเอาไว้ในรูปแบบคำสั่งในภาษา HTML", @@ -29,7 +30,7 @@ "{count} files uploading" => "กำลังอัพโหลด {count} ไฟล์", "Upload cancelled." => "การอัพโหลดถูกยกเลิก", "File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "ชื่อโฟลเดอร์ที่ใช้ไม่ถูกต้อง การใช้งาน \"ถูกแชร์\" ถูกสงวนไว้เฉพาะ Owncloud เท่านั้น", +"URL cannot be empty." => "URL ไม่สามารถเว้นว่างได้", "{count} files scanned" => "สแกนไฟล์แล้ว {count} ไฟล์", "error while scanning" => "พบข้อผิดพลาดในระหว่างการสแกนไฟล์", "Name" => "ชื่อ", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 7cd3a82cd71..b32da7de25e 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Dosya yüklenmedi. Bilinmeyen hata", "There is no error, the file uploaded with success" => "Bir hata yok, dosya başarıyla yüklendi", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor", @@ -29,7 +30,7 @@ "{count} files uploading" => "{count} dosya yükleniyor", "Upload cancelled." => "Yükleme iptal edildi.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Geçersiz dizin ismi. \"Shared\" dizini OwnCloud tarafından kullanılmaktadır.", +"URL cannot be empty." => "URL boş olamaz.", "{count} files scanned" => "{count} dosya tarandı", "error while scanning" => "tararamada hata oluşdu", "Name" => "Ad", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 00491bcc2d6..eba48a41cb6 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Не завантажено жодного файлу. Невідома помилка", "There is no error, the file uploaded with success" => "Файл успішно вивантажено без помилок.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі", @@ -29,7 +30,7 @@ "{count} files uploading" => "{count} файлів завантажується", "Upload cancelled." => "Завантаження перервано.", "File upload is in progress. Leaving the page now will cancel the upload." => "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Невірне ім'я каталогу. Використання \"Shared\" зарезервовано Owncloud", +"URL cannot be empty." => "URL не може бути пустим.", "{count} files scanned" => "{count} файлів проскановано", "error while scanning" => "помилка при скануванні", "Name" => "Ім'я", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 4f58e623178..7d5c5290502 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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", "There is no error, the file uploaded with success" => "Không có lỗi, các tập tin đã được tải lên thành công", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Kích thước những tập tin tải lên vượt quá MAX_FILE_SIZE đã được quy định", "The uploaded file was only partially uploaded" => "Tập tin tải lên mới chỉ tải lên được một phần", @@ -28,7 +29,7 @@ "{count} files uploading" => "{count} tập tin đang tải lên", "Upload cancelled." => "Hủy tải lên", "File upload is in progress. Leaving the page now will cancel the upload." => "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Tên thư mục không hợp lệ. Sử dụng \"Chia sẻ\" được dành riêng bởi Owncloud", +"URL cannot be empty." => "URL không được để trống.", "{count} files scanned" => "{count} tập tin đã được quét", "error while scanning" => "lỗi trong khi quét", "Name" => "Tên", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index ccf0efff050..e60df8291a9 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "没有上传文件。未知错误", "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", "The uploaded file was only partially uploaded" => "文件只有部分被上传", @@ -27,6 +28,7 @@ "{count} files uploading" => "{count} 个文件正在上传", "Upload cancelled." => "上传取消了", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。", +"URL cannot be empty." => "网址不能为空。", "{count} files scanned" => "{count} 个文件已扫描", "error while scanning" => "扫描出错", "Name" => "名字", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 8db652f003e..124bb2c3b6c 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "无法移动 %s - 同名文件已存在", +"Could not move %s" => "无法移动 %s", +"Unable to rename file" => "无法重命名文件", +"No file was uploaded. Unknown error" => "没有文件被上传。未知错误", "There is no error, the file uploaded with success" => "没有发生错误,文件上传成功。", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上传文件大小已超过php.ini中upload_max_filesize所规定的值", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了在HTML 表单中指定的MAX_FILE_SIZE", @@ -6,6 +10,8 @@ "No file was uploaded" => "文件没有上传", "Missing a temporary folder" => "缺少临时目录", "Failed to write to disk" => "写入磁盘失败", +"Not enough space available" => "没有足够可用空间", +"Invalid directory." => "无效文件夹。", "Files" => "文件", "Unshare" => "取消分享", "Delete" => "删除", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "已将 {old_name}替换成 {new_name}", "unshared {files}" => "取消了共享 {files}", "deleted {files}" => "删除了 {files}", +"'.' is an invalid file name." => "'.' 是一个无效的文件名。", +"File name cannot be empty." => "文件名不能为空。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。", "generating ZIP-file, it may take some time." => "正在生成 ZIP 文件,可能需要一些时间", "Unable to upload your file as it is a directory or has 0 bytes" => "无法上传文件,因为它是一个目录或者大小为 0 字节", @@ -29,7 +37,8 @@ "{count} files uploading" => "{count} 个文件上传中", "Upload cancelled." => "上传已取消", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "无效的文件夹名称。”Shared“ 是 Owncloud 保留字符。", +"URL cannot be empty." => "URL不能为空", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。", "{count} files scanned" => "{count} 个文件已扫描。", "error while scanning" => "扫描时出错", "Name" => "名称", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 5333209eff7..7f0f44baca9 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -1,29 +1,45 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "無法移動 %s - 同名的檔案已經存在", +"Could not move %s" => "無法移動 %s", +"Unable to rename file" => "無法重新命名檔案", +"No file was uploaded. Unknown error" => "沒有檔案被上傳。未知的錯誤。", "There is no error, the file uploaded with success" => "無錯誤,檔案上傳成功", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制", -"The uploaded file was only partially uploaded" => "只有部分檔案被上傳", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制", +"The uploaded file was only partially uploaded" => "只有檔案的一部分被上傳", "No file was uploaded" => "無已上傳檔案", "Missing a temporary folder" => "遺失暫存資料夾", "Failed to write to disk" => "寫入硬碟失敗", +"Not enough space available" => "沒有足夠的可用空間", +"Invalid directory." => "無效的資料夾。", "Files" => "檔案", "Unshare" => "取消共享", "Delete" => "刪除", "Rename" => "重新命名", "{new_name} already exists" => "{new_name} 已經存在", "replace" => "取代", +"suggest name" => "建議檔名", "cancel" => "取消", "replaced {new_name}" => "已取代 {new_name}", "undo" => "復原", "replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", -"generating ZIP-file, it may take some time." => "產生壓縮檔, 它可能需要一段時間.", +"unshared {files}" => "已取消分享 {files}", +"deleted {files}" => "已刪除 {files}", +"'.' is an invalid file name." => "'.' 是不合法的檔名。", +"File name cannot be empty." => "檔名不能為空。", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。", +"generating ZIP-file, it may take some time." => "產生 ZIP 壓縮檔,這可能需要一段時間。", "Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0", "Upload Error" => "上傳發生錯誤", "Close" => "關閉", +"Pending" => "等候中", "1 file uploading" => "1 個檔案正在上傳", "{count} files uploading" => "{count} 個檔案正在上傳", "Upload cancelled." => "上傳取消", -"File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "無效的資料夾名稱. \"Shared\" 名稱已被 Owncloud 所保留使用", +"File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中。離開此頁面將會取消上傳。", +"URL cannot be empty." => "URL 不能為空白.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留", +"{count} files scanned" => "{count} 個檔案已掃描", "error while scanning" => "掃描時發生錯誤", "Name" => "名稱", "Size" => "大小", @@ -33,22 +49,23 @@ "1 file" => "1 個檔案", "{count} files" => "{count} 個檔案", "File handling" => "檔案處理", -"Maximum upload size" => "最大上傳容量", -"max. possible: " => "最大允許: ", -"Needed for multi-file and folder downloads." => "針對多檔案和目錄下載是必填的", +"Maximum upload size" => "最大上傳檔案大小", +"max. possible: " => "最大允許:", +"Needed for multi-file and folder downloads." => "針對多檔案和目錄下載是必填的。", "Enable ZIP-download" => "啟用 Zip 下載", "0 is unlimited" => "0代表沒有限制", -"Maximum input size for ZIP files" => "針對ZIP檔案最大輸入大小", +"Maximum input size for ZIP files" => "針對 ZIP 檔案最大輸入大小", "Save" => "儲存", "New" => "新增", "Text file" => "文字檔", "Folder" => "資料夾", +"From link" => "從連結", "Upload" => "上傳", "Cancel upload" => "取消上傳", -"Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", +"Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", "Download" => "下載", "Upload too large" => "上傳過大", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "你試圖上傳的檔案已超過伺服器的最大容量限制。 ", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。 ", "Files are being scanned, please wait." => "正在掃描檔案,請稍等。", "Current scanning" => "目前掃描" ); diff --git a/apps/files/templates/admin.php b/apps/files/templates/admin.php index 0de12edcba5..ad69b5519d9 100644 --- a/apps/files/templates/admin.php +++ b/apps/files/templates/admin.php @@ -6,7 +6,10 @@ <?php if($_['uploadChangable']):?> <label for="maxUploadSize"><?php echo $l->t( 'Maximum upload size' ); ?> </label> <input name='maxUploadSize' id="maxUploadSize" value='<?php echo $_['uploadMaxFilesize'] ?>'/> - (<?php echo $l->t('max. possible: '); echo $_['maxPossibleUploadSize'] ?>)<br/> + <?php if($_['displayMaxPossibleUploadSize']):?> + (<?php echo $l->t('max. possible: '); echo $_['maxPossibleUploadSize'] ?>) + <?php endif;?> + <br/> <?php endif;?> <input type="checkbox" name="allowZipDownload" id="allowZipDownload" value="1" title="<?php echo $l->t( 'Needed for multi-file and folder downloads.' ); ?>" diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index edf048c7e13..2e0772443f2 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -14,7 +14,8 @@ data-type='web'><p><?php echo $l->t('From link');?></p></li> </ul> </div> - <div id="upload" class="button"> + <div id="upload" class="button" + title="<?php echo $l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize'] ?>"> <form data-upload-id='1' id="data-upload-form" class="file_upload_form" @@ -31,10 +32,7 @@ value="(max <?php echo $_['uploadMaxHumanFilesize']; ?>)"> <input type="hidden" name="dir" value="<?php echo $_['dir'] ?>" id="dir"> <input type="file" id="file_upload_start" name='files[]'/> - <a href="#" class="svg" onclick="return false;" - title="<?php echo $l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize'] ?>"></a> - - <iframe name="file_upload_target_1" class="file_upload_target" src=""></iframe> + <a href="#" class="svg" onclick="return false;"></a> </form> </div> <div id="uploadprogresswrapper"> diff --git a/apps/files/templates/part.breadcrumb.php b/apps/files/templates/part.breadcrumb.php index a298f1ccc4b..7df2afc1f52 100644 --- a/apps/files/templates/part.breadcrumb.php +++ b/apps/files/templates/part.breadcrumb.php @@ -1,10 +1,10 @@ - <?php for($i=0; $i<count($_["breadcrumb"]); $i++): - $crumb = $_["breadcrumb"][$i]; - $dir = str_replace('+', '%20', urlencode($crumb["dir"])); - $dir = str_replace('%2F', '/', $dir); ?> - <div class="crumb <?php if($i == count($_["breadcrumb"])-1) echo 'last';?> svg" - data-dir='<?php echo $dir;?>' - style='background-image:url("<?php echo OCP\image_path('core', 'breadcrumb.png');?>")'> - <a href="<?php echo $_['baseURL'].$dir; ?>"><?php echo OCP\Util::sanitizeHTML($crumb["name"]); ?></a> - </div> - <?php endfor;
\ No newline at end of file +<?php for($i=0; $i<count($_["breadcrumb"]); $i++): + $crumb = $_["breadcrumb"][$i]; + $dir = str_replace('+', '%20', urlencode($crumb["dir"])); + $dir = str_replace('%2F', '/', $dir); ?> + <div class="crumb <?php if($i == count($_["breadcrumb"])-1) echo 'last';?> svg" + data-dir='<?php echo $dir;?>' + style='background-image:url("<?php echo OCP\image_path('core', 'breadcrumb.png');?>")'> + <a href="<?php echo $_['baseURL'].$dir; ?>"><?php echo OCP\Util::sanitizeHTML($crumb["name"]); ?></a> + </div> +<?php endfor;
\ No newline at end of file diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 4c765adb7af..dfac43d1b12 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -1,70 +1,70 @@ - <script type="text/javascript"> - <?php if ( array_key_exists('publicListView', $_) && $_['publicListView'] == true ) :?> - var publicListView = true; +<script type="text/javascript"> +<?php if ( array_key_exists('publicListView', $_) && $_['publicListView'] == true ) :?> + var publicListView = true; +<?php else: ?> + var publicListView = false; +<?php endif; ?> +</script> + +<?php foreach($_['files'] as $file): + $simple_file_size = OCP\simple_file_size($file['size']); + // the bigger the file, the darker the shade of grey; megabytes*2 + $simple_size_color = intval(200-$file['size']/(1024*1024)*2); + if($simple_size_color<0) $simple_size_color = 0; + $relative_modified_date = OCP\relative_modified_date($file['mtime']); + // the older the file, the brighter the shade of grey; days*14 + $relative_date_color = round((time()-$file['mtime'])/60/60/24*14); + if($relative_date_color>200) $relative_date_color = 200; + $name = str_replace('+', '%20', urlencode($file['name'])); + $name = str_replace('%2F', '/', $name); + $directory = str_replace('+', '%20', urlencode($file['directory'])); + $directory = str_replace('%2F', '/', $directory); ?> + <tr data-id="<?php echo $file['id']; ?>" + data-file="<?php echo $name;?>" + data-type="<?php echo ($file['type'] == 'dir')?'dir':'file'?>" + data-mime="<?php echo $file['mimetype']?>" + data-size='<?php echo $file['size'];?>' + data-permissions='<?php echo $file['permissions']; ?>'> + <td class="filename svg" + <?php if($file['type'] == 'dir'): ?> + style="background-image:url(<?php echo OCP\mimetype_icon('dir'); ?>)" <?php else: ?> - var publicListView = false; + style="background-image:url(<?php echo OCP\mimetype_icon($file['mimetype']); ?>)" <?php endif; ?> - </script> - - <?php foreach($_['files'] as $file): - $simple_file_size = OCP\simple_file_size($file['size']); - // the bigger the file, the darker the shade of grey; megabytes*2 - $simple_size_color = intval(200-$file['size']/(1024*1024)*2); - if($simple_size_color<0) $simple_size_color = 0; - $relative_modified_date = OCP\relative_modified_date($file['mtime']); - // the older the file, the brighter the shade of grey; days*14 - $relative_date_color = round((time()-$file['mtime'])/60/60/24*14); - if($relative_date_color>200) $relative_date_color = 200; - $name = str_replace('+', '%20', urlencode($file['name'])); - $name = str_replace('%2F', '/', $name); - $directory = str_replace('+', '%20', urlencode($file['directory'])); - $directory = str_replace('%2F', '/', $directory); ?> - <tr data-id="<?php echo $file['id']; ?>" - data-file="<?php echo $name;?>" - data-type="<?php echo ($file['type'] == 'dir')?'dir':'file'?>" - data-mime="<?php echo $file['mimetype']?>" - data-size='<?php echo $file['size'];?>' - data-permissions='<?php echo $file['permissions']; ?>'> - <td class="filename svg" - <?php if($file['type'] == 'dir'): ?> - style="background-image:url(<?php echo OCP\mimetype_icon('dir'); ?>)" - <?php else: ?> - style="background-image:url(<?php echo OCP\mimetype_icon($file['mimetype']); ?>)" - <?php endif; ?> - > - <?php if(!isset($_['readonly']) || !$_['readonly']): ?><input type="checkbox" /><?php endif; ?> - <?php if($file['type'] == 'dir'): ?> - <a class="name" href="<?php $_['baseURL'].$directory.'/'.$name; ?>)" title=""> - <?php else: ?> - <a class="name" href="<?php echo $_['downloadURL'].$directory.'/'.$name; ?>" title=""> - <?php endif; ?> - <span class="nametext"> - <?php if($file['type'] == 'dir'):?> - <?php echo htmlspecialchars($file['name']);?> - <?php else:?> - <?php echo htmlspecialchars($file['basename']);?><span - class='extension'><?php echo $file['extension'];?></span> - <?php endif;?> - </span> - <?php if($file['type'] == 'dir'):?> - <span class="uploadtext" currentUploads="0"> - </span> - <?php endif;?> - </a> - </td> - <td class="filesize" - title="<?php echo OCP\human_file_size($file['size']); ?>" - style="color:rgb(<?php echo $simple_size_color.','.$simple_size_color.','.$simple_size_color ?>)"> - <?php echo $simple_file_size; ?> - </td> - <td class="date"> - <span class="modified" - title="<?php echo $file['date']; ?>" - style="color:rgb(<?php echo $relative_date_color.',' - .$relative_date_color.',' - .$relative_date_color ?>)"> - <?php echo $relative_modified_date; ?> - </span> - </td> - </tr> - <?php endforeach;
\ No newline at end of file + > + <?php if(!isset($_['readonly']) || !$_['readonly']): ?><input type="checkbox" /><?php endif; ?> + <?php if($file['type'] == 'dir'): ?> + <a class="name" href="<?php $_['baseURL'].$directory.'/'.$name; ?>)" title=""> + <?php else: ?> + <a class="name" href="<?php echo $_['downloadURL'].$directory.'/'.$name; ?>" title=""> + <?php endif; ?> + <span class="nametext"> + <?php if($file['type'] == 'dir'):?> + <?php echo htmlspecialchars($file['name']);?> + <?php else:?> + <?php echo htmlspecialchars($file['basename']);?><span + class='extension'><?php echo $file['extension'];?></span> + <?php endif;?> + </span> + <?php if($file['type'] == 'dir'):?> + <span class="uploadtext" currentUploads="0"> + </span> + <?php endif;?> + </a> + </td> + <td class="filesize" + title="<?php echo OCP\human_file_size($file['size']); ?>" + style="color:rgb(<?php echo $simple_size_color.','.$simple_size_color.','.$simple_size_color ?>)"> + <?php echo $simple_file_size; ?> + </td> + <td class="date"> + <span class="modified" + title="<?php echo $file['date']; ?>" + style="color:rgb(<?php echo $relative_date_color.',' + .$relative_date_color.',' + .$relative_date_color ?>)"> + <?php echo $relative_modified_date; ?> + </span> + </td> + </tr> +<?php endforeach;
\ No newline at end of file diff --git a/apps/files_encryption/l10n/bg_BG.php b/apps/files_encryption/l10n/bg_BG.php new file mode 100644 index 00000000000..cb1613ef375 --- /dev/null +++ b/apps/files_encryption/l10n/bg_BG.php @@ -0,0 +1,6 @@ +<?php $TRANSLATIONS = array( +"Encryption" => "Криптиране", +"Enable Encryption" => "Включване на криптирането", +"None" => "Няма", +"Exclude the following file types from encryption" => "Изключване на следните файлови типове от криптирането" +); diff --git a/apps/files_encryption/l10n/bn_BD.php b/apps/files_encryption/l10n/bn_BD.php new file mode 100644 index 00000000000..c8f041d7622 --- /dev/null +++ b/apps/files_encryption/l10n/bn_BD.php @@ -0,0 +1,6 @@ +<?php $TRANSLATIONS = array( +"Encryption" => "সংকেতায়ন", +"Enable Encryption" => "সংকেতায়ন সক্রিয় কর", +"None" => "কোনটিই নয়", +"Exclude the following file types from encryption" => "সংকেতায়ন থেকে নিম্নোক্ত ধরণসমূহ বাদ দাও" +); diff --git a/apps/files_encryption/templates/settings.php b/apps/files_encryption/templates/settings.php index 268b1a80ccd..61bfe849c72 100644 --- a/apps/files_encryption/templates/settings.php +++ b/apps/files_encryption/templates/settings.php @@ -2,7 +2,7 @@ <fieldset class="personalblock"> <legend><strong><?php echo $l->t('Encryption');?></strong></legend> <input type='checkbox'<?php if ($_['encryption_enabled']): ?> checked="checked"<?php endif; ?> - id='enable_encryption' ></input> + id='enable_encryption' /> <label for='enable_encryption'><?php echo $l->t('Enable Encryption')?></label><br /> <select id='encryption_blacklist' title="<?php echo $l->t('None')?>" multiple="multiple"> <?php foreach ($_['blacklist'] as $type): ?> diff --git a/apps/files_external/l10n/bg_BG.php b/apps/files_external/l10n/bg_BG.php index 48779581846..1f2c29d54c5 100644 --- a/apps/files_external/l10n/bg_BG.php +++ b/apps/files_external/l10n/bg_BG.php @@ -1,4 +1,18 @@ <?php $TRANSLATIONS = array( +"Access granted" => "Достъпът е даден", +"Grant access" => "Даване на достъп", +"Fill out all required fields" => "Попълнете всички задължителни полета", +"External Storage" => "Външно хранилище", +"Backend" => "Администрация", +"Configuration" => "Конфигурация", +"Options" => "Опции", +"None set" => "Няма избрано", +"All Users" => "Всички потребители", "Groups" => "Групи", -"Delete" => "Изтриване" +"Users" => "Потребители", +"Delete" => "Изтриване", +"Enable User External Storage" => "Вкл. на поддръжка за външно потр. хранилище", +"Allow users to mount their own external storage" => "Позволено е на потребителите да ползват тяхно лично външно хранилище", +"SSL root certificates" => "SSL основни сертификати", +"Import Root Certificate" => "Импортиране на основен сертификат" ); diff --git a/apps/files_external/l10n/bn_BD.php b/apps/files_external/l10n/bn_BD.php new file mode 100644 index 00000000000..a4a2b23030b --- /dev/null +++ b/apps/files_external/l10n/bn_BD.php @@ -0,0 +1,24 @@ +<?php $TRANSLATIONS = array( +"Access granted" => "অধিগমনের অনুমতি প্রদান করা হলো", +"Error configuring Dropbox storage" => "Dropbox সংরক্ষণাগার নির্ধারণ করতে সমস্যা ", +"Grant access" => "অধিগমনের অনুমতি প্রদান কর", +"Fill out all required fields" => "আবশ্যিক সমস্ত ক্ষেত্র পূরণ করুন", +"Please provide a valid Dropbox app key and secret." => "দয়া করে সঠিক এবং বৈধ Dropbox app key and secret প্রদান করুন।", +"Error configuring Google Drive storage" => "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা ", +"External Storage" => "বাহ্যিক সংরক্ষণাগার", +"Mount point" => "মাউন্ট পয়েন্ট", +"Backend" => "পশ্চাদপট", +"Configuration" => "কনফিগারেসন", +"Options" => "বিকল্পসমূহ", +"Applicable" => "প্রযোজ্য", +"Add mount point" => "মাউন্ট পয়েন্ট যোগ কর", +"None set" => "কোনটিই নির্ধারণ করা হয় নি", +"All Users" => "সমস্ত ব্যবহারকারী", +"Groups" => "গোষ্ঠীসমূহ", +"Users" => "ব্যবহারকারী", +"Delete" => "মুছে ফেল", +"Enable User External Storage" => "ব্যবহারকারীর বাহ্যিক সংরক্ষণাগার সক্রিয় কর", +"Allow users to mount their own external storage" => "ব্যবহারকারীদেরকে তাদের নিজস্ব বাহ্যিক সংরক্ষনাগার সাউন্ট করতে অনুমোদন দাও", +"SSL root certificates" => "SSL রুট সনদপত্র", +"Import Root Certificate" => "রুট সনদপত্রটি আমদানি করুন" +); diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php index 5024dac4d8c..f8100e14620 100644 --- a/apps/files_external/l10n/gl.php +++ b/apps/files_external/l10n/gl.php @@ -3,8 +3,10 @@ "Error configuring Dropbox storage" => "Produciuse un erro ao configurar o almacenamento en Dropbox", "Grant access" => "Permitir o acceso", "Fill out all required fields" => "Cubrir todos os campos obrigatorios", -"Please provide a valid Dropbox app key and secret." => "Dá o segredo e a chave correcta do aplicativo de Dropbox.", +"Please provide a valid Dropbox app key and secret." => "Forneza unha chave correcta e segreda do Dropbox.", "Error configuring Google Drive storage" => "Produciuse un erro ao configurar o almacenamento en Google Drive", +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Aviso:</b> «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo.", +"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Aviso:</b> A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo.", "External Storage" => "Almacenamento externo", "Mount point" => "Punto de montaxe", "Backend" => "Infraestrutura", diff --git a/apps/files_external/l10n/ko.php b/apps/files_external/l10n/ko.php index 74a400303b2..cb691cf5e3d 100644 --- a/apps/files_external/l10n/ko.php +++ b/apps/files_external/l10n/ko.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "모든 필수 항목을 입력하십시오", "Please provide a valid Dropbox app key and secret." => "올바른 Dropbox 앱 키와 암호를 입력하십시오.", "Error configuring Google Drive storage" => "Google 드라이브 저장소 설정 오류", +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>경고</b>\"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유애 연결이 불가능 합니다.. 시스템 관리자에게 요청하여 설치하시기 바랍니다.", +"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>경고</b>PHP용 FTP 지원이 사용 불가능 하거나 설치되지 않았습니다. FTP 공유에 연결이 불가능 합니다. 시스템 관리자에게 요청하여 설치하시기 바랍니다. ", "External Storage" => "외부 저장소", "Mount point" => "마운트 지점", "Backend" => "백엔드", diff --git a/apps/files_external/lib/amazons3.php b/apps/files_external/lib/amazons3.php index 235ade06db6..e5ef4eb097c 100644 --- a/apps/files_external/lib/amazons3.php +++ b/apps/files_external/lib/amazons3.php @@ -108,7 +108,7 @@ class OC_Filestorage_AmazonS3 extends OC_Filestorage_Common { $stat['atime'] = time(); $stat['mtime'] = $stat['atime']; $stat['ctime'] = $stat['atime']; - } else { + } else { $object = $this->getObject($path); if ($object) { $stat['size'] = $object['Size']; diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 1be544fbc07..fd3dc2ca0d0 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -38,7 +38,7 @@ class OC_Mount_Config { * @return array */ public static function getBackends() { - + $backends['OC_Filestorage_Local']=array( 'backend' => 'Local', 'configuration' => array( @@ -77,7 +77,7 @@ class OC_Mount_Config { 'token' => '#token', 'token_secret' => '#token secret'), 'custom' => 'google'); - + $backends['OC_Filestorage_SWIFT']=array( 'backend' => 'OpenStack Swift', 'configuration' => array( @@ -86,7 +86,7 @@ class OC_Mount_Config { 'token' => '*Token', 'root' => '&Root', 'secure' => '!Secure ftps://')); - + if(OC_Mount_Config::checksmbclient()) $backends['OC_Filestorage_SMB']=array( 'backend' => 'SMB / CIFS', 'configuration' => array( @@ -95,7 +95,7 @@ class OC_Mount_Config { 'password' => '*Password', 'share' => 'Share', 'root' => '&Root')); - + $backends['OC_Filestorage_DAV']=array( 'backend' => 'ownCloud / WebDAV', 'configuration' => array( @@ -103,7 +103,7 @@ class OC_Mount_Config { 'user' => 'Username', 'password' => '*Password', 'root' => '&Root', - 'secure' => '!Secure https://')); + 'secure' => '!Secure https://')); return($backends); } @@ -403,7 +403,7 @@ class OC_Mount_Config { } /** - * check if smbclient is installed + * check if smbclient is installed */ public static function checksmbclient() { if(function_exists('shell_exec')) { @@ -415,7 +415,7 @@ class OC_Mount_Config { } /** - * check if php-ftp is installed + * check if php-ftp is installed */ public static function checkphpftp() { if(function_exists('ftp_login')) { diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 68aca228bc5..920aefc12de 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -50,7 +50,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ 'password' => $this->password, ); - $this->client = new OC_Connector_Sabre_Client($settings); + $this->client = new Sabre_DAV_Client($settings); $caview = \OCP\Files::getStorage('files_external'); if ($caview) { @@ -234,12 +234,11 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ $path1=$this->cleanPath($path1); $path2=$this->root.$this->cleanPath($path2); try { - $response=$this->client->request('MOVE', $path1, null, array('Destination'=>$path2)); + $this->client->request('MOVE', $path1, null, array('Destination'=>$path2)); return true; } catch(Exception $e) { echo $e; echo 'fail'; - var_dump($response); return false; } } @@ -248,12 +247,11 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ $path1=$this->cleanPath($path1); $path2=$this->root.$this->cleanPath($path2); try { - $response=$this->client->request('COPY', $path1, null, array('Destination'=>$path2)); + $this->client->request('COPY', $path1, null, array('Destination'=>$path2)); return true; } catch(Exception $e) { echo $e; echo 'fail'; - var_dump($response); return false; } } diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index dd537d779a6..78ca1c87fee 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -1,7 +1,7 @@ <form id="files_external"> <fieldset class="personalblock"> <legend><strong><?php echo $l->t('External Storage'); ?></strong></legend> - <?php if (isset($_['dependencies']) and ($_['dependencies']<>'')) echo ''.$_['dependencies'].''; ?> + <?php if (isset($_['dependencies']) and ($_['dependencies']<>'')) echo ''.$_['dependencies'].''; ?> <table id="externalStorage" data-admin='<?php echo json_encode($_['isAdminPage']); ?>'> <thead> <tr> @@ -47,7 +47,7 @@ <?php elseif (strpos($placeholder, '!') !== false): ?> <label><input type="checkbox" data-parameter="<?php echo $parameter; ?>" - <?php if ($value == 'true'): ?> checked="checked"<?php endif; ?> + <?php if ($value == 'true'): ?> checked="checked"<?php endif; ?> /><?php echo substr($placeholder, 1); ?></label> <?php elseif (strpos($placeholder, '&') !== false): ?> <input type="text" @@ -105,7 +105,7 @@ <?php endif; ?> <td <?php if ($mountPoint != ''): ?>class="remove" <?php else: ?>style="visibility:hidden;" - <?php endif ?>><img alt="<?php echo $l->t('Delete'); ?>" + <?php endif ?>><img alt="<?php echo $l->t('Delete'); ?>" title="<?php echo $l->t('Delete'); ?>" class="svg action" src="<?php echo image_path('core', 'actions/delete.svg'); ?>" /></td> diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 8a546d62163..a46d0179801 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -1,7 +1,7 @@ $(document).ready(function() { if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !publicListView) { - + FileActions.register('all', 'Share', OC.PERMISSION_READ, OC.imagePath('core', 'actions/share'), function(filename) { if ($('#dir').val() == '/') { var item = $('#dir').val() + filename; diff --git a/apps/files_sharing/l10n/bg_BG.php b/apps/files_sharing/l10n/bg_BG.php new file mode 100644 index 00000000000..ac94358c4f9 --- /dev/null +++ b/apps/files_sharing/l10n/bg_BG.php @@ -0,0 +1,9 @@ +<?php $TRANSLATIONS = array( +"Password" => "Парола", +"Submit" => "Потвърждение", +"%s shared the folder %s with you" => "%s сподели папката %s с Вас", +"%s shared the file %s with you" => "%s сподели файла %s с Вас", +"Download" => "Изтегляне", +"No preview available for" => "Няма наличен преглед за", +"web services under your control" => "уеб услуги под Ваш контрол" +); diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php new file mode 100644 index 00000000000..c3af434ee29 --- /dev/null +++ b/apps/files_sharing/l10n/bn_BD.php @@ -0,0 +1,9 @@ +<?php $TRANSLATIONS = array( +"Password" => "কূটশব্দ", +"Submit" => "জমা দাও", +"%s shared the folder %s with you" => "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন", +"%s shared the file %s with you" => "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন", +"Download" => "ডাউনলোড", +"No preview available for" => "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়", +"web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" +); diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index fef0ed8a8c2..efd977a1b6a 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -7,7 +7,7 @@ OC_App::loadApps(); // support will be removed in OC 5.0,a if (isset($_GET['token'])) { unset($_GET['file']); - $qry = \OC_DB::prepare('SELECT `source` FROM `*PREFIX*sharing` WHERE `target` = ? LIMIT 1'); + $qry = \OC_DB::prepare('SELECT `source` FROM `*PREFIX*sharing` WHERE `target` = ?', 1); $filepath = $qry->execute(array($_GET['token']))->fetchOne(); if(isset($filepath)) { $info = OC_FileCache_Cached::get($filepath, ''); @@ -16,7 +16,9 @@ if (isset($_GET['token'])) { } else { $_GET['file'] = $filepath; } - \OCP\Util::writeLog('files_sharing', 'You have files that are shared by link originating from ownCloud 4.0. Redistribute the new links, because backwards compatibility will be removed in ownCloud 5.', \OCP\Util::WARN); + \OCP\Util::writeLog('files_sharing', 'You have files that are shared by link originating from ownCloud 4.0.' + .' Redistribute the new links, because backwards compatibility will be removed in ownCloud 5.', + \OCP\Util::WARN); } } @@ -27,7 +29,10 @@ function getID($path) { $path_parts = explode('/', $path, 5); $user = $path_parts[1]; $intPath = '/'.$path_parts[4]; - $query = \OC_DB::prepare('SELECT `item_source` FROM `*PREFIX*share` WHERE `uid_owner` = ? AND `file_target` = ? '); + $query = \OC_DB::prepare('SELECT `item_source`' + .' FROM `*PREFIX*share`' + .' WHERE `uid_owner` = ?' + .' AND `file_target` = ? '); $result = $query->execute(array($user, $intPath)); $row = $result->fetchRow(); $fileSource = $row['item_source']; @@ -61,21 +66,22 @@ if (isset($_GET['t'])) { $type = $linkItem['item_type']; $fileSource = $linkItem['file_source']; $shareOwner = $linkItem['uid_owner']; - + if (OCP\User::userExists($shareOwner) && $fileSource != -1 ) { - + $pathAndUser = getPathAndUser($linkItem['file_source']); $fileOwner = $pathAndUser['user']; - + //if this is a reshare check the file owner also exists if ($shareOwner != $fileOwner && ! OCP\User::userExists($fileOwner)) { - OCP\Util::writeLog('share', 'original file owner '.$fileOwner.' does not exist for share '.$linkItem['id'], \OCP\Util::ERROR); + OCP\Util::writeLog('share', 'original file owner '.$fileOwner + .' does not exist for share '.$linkItem['id'], \OCP\Util::ERROR); header('HTTP/1.0 404 Not Found'); $tmpl = new OCP\Template('', '404', 'guest'); $tmpl->printPage(); exit(); } - + //mount filesystem of file owner OC_Util::setupFS($fileOwner); } @@ -98,7 +104,7 @@ if (isset($_GET['t'])) { } } $shareOwner = substr($path, 1, strpos($path, '/', 1) - 1); - + if (OCP\User::userExists($shareOwner)) { OC_Util::setupFS($shareOwner); $fileSource = getId($path); @@ -134,7 +140,8 @@ if ($linkItem) { // Check Password $forcePortable = (CRYPT_BLOWFISH != 1); $hasher = new PasswordHash(8, $forcePortable); - if (!($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''), $linkItem['share_with']))) { + if (!($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''), + $linkItem['share_with']))) { $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); $tmpl->assign('URL', $url); $tmpl->assign('error', true); @@ -145,19 +152,25 @@ if ($linkItem) { $_SESSION['public_link_authenticated'] = $linkItem['id']; } } else { - OCP\Util::writeLog('share', 'Unknown share type '.$linkItem['share_type'].' for share id '.$linkItem['id'], \OCP\Util::ERROR); + OCP\Util::writeLog('share', 'Unknown share type '.$linkItem['share_type'] + .' for share id '.$linkItem['id'], \OCP\Util::ERROR); header('HTTP/1.0 404 Not Found'); $tmpl = new OCP\Template('', '404', 'guest'); $tmpl->printPage(); exit(); } - // Check if item id is set in session - } else if (!isset($_SESSION['public_link_authenticated']) || $_SESSION['public_link_authenticated'] !== $linkItem['id']) { - // Prompt for password - $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); - $tmpl->assign('URL', $url); - $tmpl->printPage(); - exit(); + + } else { + // Check if item id is set in session + if (!isset($_SESSION['public_link_authenticated']) + || $_SESSION['public_link_authenticated'] !== $linkItem['id'] + ) { + // Prompt for password + $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); + $tmpl->assign('URL', $url); + $tmpl->printPage(); + exit(); + } } } $basePath = substr($pathAndUser['path'], strlen('/'.$fileOwner.'/files')); @@ -203,7 +216,9 @@ if ($linkItem) { $getPath = ''; } // - $urlLinkIdentifiers= (isset($token)?'&t='.$token:'').(isset($_GET['dir'])?'&dir='.$_GET['dir']:'').(isset($_GET['file'])?'&file='.$_GET['file']:''); + $urlLinkIdentifiers= (isset($token)?'&t='.$token:'') + .(isset($_GET['dir'])?'&dir='.$_GET['dir']:'') + .(isset($_GET['file'])?'&file='.$_GET['file']:''); // Show file list if (OC_Filesystem::is_dir($path)) { OCP\Util::addStyle('files', 'files'); @@ -260,13 +275,16 @@ if ($linkItem) { $folder->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $tmpl->assign('folder', $folder->fetchPage(), false); $tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); - $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').$urlLinkIdentifiers.'&download&path='.urlencode($getPath)); + $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files') + .$urlLinkIdentifiers.'&download&path='.urlencode($getPath)); } else { // Show file preview if viewer is available if ($type == 'file') { - $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').$urlLinkIdentifiers.'&download'); + $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files') + .$urlLinkIdentifiers.'&download'); } else { - $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').$urlLinkIdentifiers.'&download&path='.urlencode($getPath)); + $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files') + .$urlLinkIdentifiers.'&download&path='.urlencode($getPath)); } } $tmpl->printPage(); diff --git a/apps/files_versions/ajax/expireAll.php b/apps/files_versions/ajax/expireAll.php deleted file mode 100644 index 5c95885ffbd..00000000000 --- a/apps/files_versions/ajax/expireAll.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php - -/** - * ownCloud - user_migrate - * - * @author Sam Tuke - * @copyright 2012 Sam Tuke samtuke@owncloud.com - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - * - */ - -// TODO: Allow admins to expire versions of any user -// TODO: Provide feedback as to how many versions were deleted - -// Check user and app status -OCP\JSON::checkLoggedIn(); -OCP\App::checkAppEnabled('files_versions'); -OCP\JSON::callCheck(); - -$versions = new OCA_Versions\Storage(); - -if( $versions->expireAll() ) { - - OCP\JSON::success(); - die(); - -} else { - - OCP\JSON::error(); - die(); - -}
\ No newline at end of file diff --git a/apps/files_versions/ajax/getVersions.php b/apps/files_versions/ajax/getVersions.php index 8476e5e8a51..600e69cf798 100644 --- a/apps/files_versions/ajax/getVersions.php +++ b/apps/files_versions/ajax/getVersions.php @@ -4,10 +4,9 @@ OCP\JSON::checkAppEnabled('files_versions'); $userDirectory = "/".OCP\USER::getUser()."/files"; $source = $_GET['source']; -if( OCA_Versions\Storage::isversioned( $source ) ) { +$count = 5; //show the newest revisions +if( ($versions = OCA_Versions\Storage::getVersions( $source, $count)) ) { - $count=5; //show the newest revisions - $versions = OCA_Versions\Storage::getVersions( $source, $count); $versionsFormatted = array(); foreach ( $versions AS $version ) { diff --git a/apps/files_versions/ajax/rollbackVersion.php b/apps/files_versions/ajax/rollbackVersion.php index f1b02eb4b92..f2c211d9c1e 100644 --- a/apps/files_versions/ajax/rollbackVersion.php +++ b/apps/files_versions/ajax/rollbackVersion.php @@ -8,10 +8,9 @@ $userDirectory = "/".OCP\USER::getUser()."/files"; $file = $_GET['file']; $revision=(int)$_GET['revision']; -if( OCA_Versions\Storage::isversioned( $file ) ) { - if(OCA_Versions\Storage::rollback( $file, $revision )) { - OCP\JSON::success(array("data" => array( "revision" => $revision, "file" => $file ))); - }else{ - OCP\JSON::error(array("data" => array( "message" => "Could not revert:" . $file ))); - } +if(OCA_Versions\Storage::rollback( $file, $revision )) { + OCP\JSON::success(array("data" => array( "revision" => $revision, "file" => $file ))); +}else{ + OCP\JSON::error(array("data" => array( "message" => "Could not revert:" . $file ))); } + diff --git a/apps/files_versions/history.php b/apps/files_versions/history.php index d4c278ebd85..6071240e583 100644 --- a/apps/files_versions/history.php +++ b/apps/files_versions/history.php @@ -28,7 +28,6 @@ $tmpl = new OCP\Template( 'files_versions', 'history', 'user' ); if ( isset( $_GET['path'] ) ) { $path = $_GET['path']; - $path = $path; $tmpl->assign( 'path', $path ); $versions = new OCA_Versions\Storage(); @@ -52,10 +51,8 @@ if ( isset( $_GET['path'] ) ) { } // show the history only if there is something to show - if( OCA_Versions\Storage::isversioned( $path ) ) { - - $count = 999; //show the newest revisions - $versions = OCA_Versions\Storage::getVersions( $path, $count); + $count = 999; //show the newest revisions + if( ($versions = OCA_Versions\Storage::getVersions( $path, $count)) ) { $tmpl->assign( 'versions', array_reverse( $versions ) ); diff --git a/apps/files_versions/js/settings-personal.js b/apps/files_versions/js/settings-personal.js deleted file mode 100644 index 1e6b036fdab..00000000000 --- a/apps/files_versions/js/settings-personal.js +++ /dev/null @@ -1,39 +0,0 @@ -// TODO: allow the button to be clicked only once - -$( document ).ready(function(){ - // - $( '#expireAllBtn' ).click( - - function( event ) { - - // Prevent page from reloading - event.preventDefault(); - - // Show loading gif - $('.expireAllLoading').show(); - - $.getJSON( - OC.filePath('files_versions','ajax','expireAll.php'), - function(result){ - if (result.status == 'success') { - $('.expireAllLoading').hide(); - $('#expireAllBtn').html('Expiration successful'); - } else { - - // Cancel loading - $('#expireAllBtn').html('Expiration failed'); - - // Show Dialog - OC.dialogs.alert( - 'Something went wrong, your files may not have been expired', - 'An error has occurred', - function(){ - $('#expireAllBtn').html(t('files_versions', 'Expire all versions')+'<img style="display: none;" class="loading" src="'+OC.filePath('core','img','loading.gif')+'" />'); - } - ); - } - } - ); - } - ); -});
\ No newline at end of file diff --git a/apps/files_versions/l10n/ar.php b/apps/files_versions/l10n/ar.php index fea7f1c7562..1f1f3100405 100644 --- a/apps/files_versions/l10n/ar.php +++ b/apps/files_versions/l10n/ar.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "إنهاء تاريخ الإنتهاء لجميع الإصدارات", "History" => "السجل الزمني", -"Versions" => "الإصدارات", -"This will delete all existing backup versions of your files" => "هذه العملية ستقوم بإلغاء جميع إصدارات النسخ الاحتياطي للملفات", "Files Versioning" => "أصدرة الملفات", "Enable" => "تفعيل" ); diff --git a/apps/files_versions/l10n/bg_BG.php b/apps/files_versions/l10n/bg_BG.php new file mode 100644 index 00000000000..6ecf12d0b00 --- /dev/null +++ b/apps/files_versions/l10n/bg_BG.php @@ -0,0 +1,4 @@ +<?php $TRANSLATIONS = array( +"History" => "История", +"Enable" => "Включено" +); diff --git a/apps/files_versions/l10n/bn_BD.php b/apps/files_versions/l10n/bn_BD.php new file mode 100644 index 00000000000..dffa4d79a06 --- /dev/null +++ b/apps/files_versions/l10n/bn_BD.php @@ -0,0 +1,5 @@ +<?php $TRANSLATIONS = array( +"History" => "ইতিহাস", +"Files Versioning" => "ফাইল ভার্সন করা", +"Enable" => "সক্রিয় " +); diff --git a/apps/files_versions/l10n/ca.php b/apps/files_versions/l10n/ca.php index 0076d02992f..01e0a116873 100644 --- a/apps/files_versions/l10n/ca.php +++ b/apps/files_versions/l10n/ca.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Expira totes les versions", "History" => "Historial", -"Versions" => "Versions", -"This will delete all existing backup versions of your files" => "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers", "Files Versioning" => "Fitxers de Versions", "Enable" => "Habilita" ); diff --git a/apps/files_versions/l10n/cs_CZ.php b/apps/files_versions/l10n/cs_CZ.php index 3995334d9ee..d219c3e68da 100644 --- a/apps/files_versions/l10n/cs_CZ.php +++ b/apps/files_versions/l10n/cs_CZ.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Vypršet všechny verze", "History" => "Historie", -"Versions" => "Verze", -"This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů", "Files Versioning" => "Verzování souborů", "Enable" => "Povolit" ); diff --git a/apps/files_versions/l10n/da.php b/apps/files_versions/l10n/da.php index bc02b47f2ad..98579747643 100644 --- a/apps/files_versions/l10n/da.php +++ b/apps/files_versions/l10n/da.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Lad alle versioner udløbe", "History" => "Historik", -"Versions" => "Versioner", -"This will delete all existing backup versions of your files" => "Dette vil slette alle eksisterende backupversioner af dine filer", "Files Versioning" => "Versionering af filer", "Enable" => "Aktiver" ); diff --git a/apps/files_versions/l10n/de.php b/apps/files_versions/l10n/de.php index 092bbfbff70..2fcb996de7b 100644 --- a/apps/files_versions/l10n/de.php +++ b/apps/files_versions/l10n/de.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Alle Versionen löschen", "History" => "Historie", -"Versions" => "Versionen", -"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Deiner Dateien.", "Files Versioning" => "Dateiversionierung", "Enable" => "Aktivieren" ); diff --git a/apps/files_versions/l10n/de_DE.php b/apps/files_versions/l10n/de_DE.php index a568112d02d..2fcb996de7b 100644 --- a/apps/files_versions/l10n/de_DE.php +++ b/apps/files_versions/l10n/de_DE.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Alle Versionen löschen", "History" => "Historie", -"Versions" => "Versionen", -"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien.", "Files Versioning" => "Dateiversionierung", "Enable" => "Aktivieren" ); diff --git a/apps/files_versions/l10n/el.php b/apps/files_versions/l10n/el.php index f6b9a5b2998..6b189c2cdd3 100644 --- a/apps/files_versions/l10n/el.php +++ b/apps/files_versions/l10n/el.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Λήξη όλων των εκδόσεων", "History" => "Ιστορικό", -"Versions" => "Εκδόσεις", -"This will delete all existing backup versions of your files" => "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας", "Files Versioning" => "Εκδόσεις Αρχείων", "Enable" => "Ενεργοποίηση" ); diff --git a/apps/files_versions/l10n/eo.php b/apps/files_versions/l10n/eo.php index 0c3835373ef..87b314655c0 100644 --- a/apps/files_versions/l10n/eo.php +++ b/apps/files_versions/l10n/eo.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Eksvalidigi ĉiujn eldonojn", "History" => "Historio", -"Versions" => "Eldonoj", -"This will delete all existing backup versions of your files" => "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj", "Files Versioning" => "Dosiereldonigo", "Enable" => "Kapabligi" ); diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php index f6b63df7c2b..4a8c34e5180 100644 --- a/apps/files_versions/l10n/es.php +++ b/apps/files_versions/l10n/es.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Expirar todas las versiones", "History" => "Historial", -"Versions" => "Versiones", -"This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos", "Files Versioning" => "Versionado de archivos", "Enable" => "Habilitar" ); diff --git a/apps/files_versions/l10n/es_AR.php b/apps/files_versions/l10n/es_AR.php index a78264de03f..74d8907fc35 100644 --- a/apps/files_versions/l10n/es_AR.php +++ b/apps/files_versions/l10n/es_AR.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Expirar todas las versiones", "History" => "Historia", -"Versions" => "Versiones", -"This will delete all existing backup versions of your files" => "Hacer estom borrará todas las versiones guardadas como copia de seguridad de tus archivos", "Files Versioning" => "Versionado de archivos", "Enable" => "Activar" ); diff --git a/apps/files_versions/l10n/et_EE.php b/apps/files_versions/l10n/et_EE.php index f1296f23fcd..ff119d5374e 100644 --- a/apps/files_versions/l10n/et_EE.php +++ b/apps/files_versions/l10n/et_EE.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Kõikide versioonide aegumine", "History" => "Ajalugu", -"Versions" => "Versioonid", -"This will delete all existing backup versions of your files" => "See kustutab kõik sinu failidest tehtud varuversiooni", "Files Versioning" => "Failide versioonihaldus", "Enable" => "Luba" ); diff --git a/apps/files_versions/l10n/eu.php b/apps/files_versions/l10n/eu.php index d84d9011707..c6b4cd7692d 100644 --- a/apps/files_versions/l10n/eu.php +++ b/apps/files_versions/l10n/eu.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Iraungi bertsio guztiak", "History" => "Historia", -"Versions" => "Bertsioak", -"This will delete all existing backup versions of your files" => "Honek zure fitxategien bertsio guztiak ezabatuko ditu", "Files Versioning" => "Fitxategien Bertsioak", "Enable" => "Gaitu" ); diff --git a/apps/files_versions/l10n/fi_FI.php b/apps/files_versions/l10n/fi_FI.php index 3cec4c04bfe..bdce8e9fe52 100644 --- a/apps/files_versions/l10n/fi_FI.php +++ b/apps/files_versions/l10n/fi_FI.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Vanhenna kaikki versiot", "History" => "Historia", -"Versions" => "Versiot", -"This will delete all existing backup versions of your files" => "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot", "Files Versioning" => "Tiedostojen versiointi", "Enable" => "Käytä" ); diff --git a/apps/files_versions/l10n/fr.php b/apps/files_versions/l10n/fr.php index e6dbc274456..2d26b98860a 100644 --- a/apps/files_versions/l10n/fr.php +++ b/apps/files_versions/l10n/fr.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Supprimer les versions intermédiaires", "History" => "Historique", -"Versions" => "Versions", -"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date).", "Files Versioning" => "Versionnage des fichiers", "Enable" => "Activer" ); diff --git a/apps/files_versions/l10n/gl.php b/apps/files_versions/l10n/gl.php index f10c1e16263..7e44b8898bf 100644 --- a/apps/files_versions/l10n/gl.php +++ b/apps/files_versions/l10n/gl.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Caducan todas as versións", "History" => "Historial", -"Versions" => "Versións", -"This will delete all existing backup versions of your files" => "Isto eliminará todas as copias de seguranza que haxa dos seus ficheiros", "Files Versioning" => "Sistema de versión de ficheiros", "Enable" => "Activar" ); diff --git a/apps/files_versions/l10n/he.php b/apps/files_versions/l10n/he.php index 061e88b0dbf..9eb4df64857 100644 --- a/apps/files_versions/l10n/he.php +++ b/apps/files_versions/l10n/he.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "הפגת תוקף כל הגרסאות", "History" => "היסטוריה", -"Versions" => "גרסאות", -"This will delete all existing backup versions of your files" => "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך", "Files Versioning" => "שמירת הבדלי גרסאות של קבצים", "Enable" => "הפעלה" ); diff --git a/apps/files_versions/l10n/hu_HU.php b/apps/files_versions/l10n/hu_HU.php index 1575eda3f35..95d37ad06ed 100644 --- a/apps/files_versions/l10n/hu_HU.php +++ b/apps/files_versions/l10n/hu_HU.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Az összes korábbi változat törlése", "History" => "Korábbi változatok", -"Versions" => "Az állományok korábbi változatai", -"This will delete all existing backup versions of your files" => "Itt törölni tudja állományainak összes korábbi verzióját", "Files Versioning" => "Az állományok verzionálása", "Enable" => "engedélyezve" ); diff --git a/apps/files_versions/l10n/id.php b/apps/files_versions/l10n/id.php index d8ac66c9763..6c553327c42 100644 --- a/apps/files_versions/l10n/id.php +++ b/apps/files_versions/l10n/id.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "kadaluarsakan semua versi", "History" => "riwayat", -"Versions" => "versi", -"This will delete all existing backup versions of your files" => "ini akan menghapus semua versi backup yang ada dari file anda", "Files Versioning" => "pembuatan versi file", "Enable" => "aktifkan" ); diff --git a/apps/files_versions/l10n/is.php b/apps/files_versions/l10n/is.php index f63939d3af9..ccb8287b71e 100644 --- a/apps/files_versions/l10n/is.php +++ b/apps/files_versions/l10n/is.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Úrelda allar útgáfur", "History" => "Saga", -"Versions" => "Útgáfur", -"This will delete all existing backup versions of your files" => "Þetta mun eyða öllum afritum af skránum þínum", "Files Versioning" => "Útgáfur af skrám", "Enable" => "Virkja" ); diff --git a/apps/files_versions/l10n/it.php b/apps/files_versions/l10n/it.php index 0b1e70823d5..c57b0930111 100644 --- a/apps/files_versions/l10n/it.php +++ b/apps/files_versions/l10n/it.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Scadenza di tutte le versioni", "History" => "Cronologia", -"Versions" => "Versioni", -"This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file", "Files Versioning" => "Controllo di versione dei file", "Enable" => "Abilita" ); diff --git a/apps/files_versions/l10n/ja_JP.php b/apps/files_versions/l10n/ja_JP.php index 367152c0743..c97ba3d00ee 100644 --- a/apps/files_versions/l10n/ja_JP.php +++ b/apps/files_versions/l10n/ja_JP.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "すべてのバージョンを削除する", "History" => "履歴", -"Versions" => "バージョン", -"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します", "Files Versioning" => "ファイルのバージョン管理", "Enable" => "有効化" ); diff --git a/apps/files_versions/l10n/ko.php b/apps/files_versions/l10n/ko.php index 688babb1121..f40925e1be2 100644 --- a/apps/files_versions/l10n/ko.php +++ b/apps/files_versions/l10n/ko.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "모든 버전 삭제", "History" => "역사", -"Versions" => "버전", -"This will delete all existing backup versions of your files" => "이 파일의 모든 백업 버전을 삭제합니다", "Files Versioning" => "파일 버전 관리", "Enable" => "사용함" ); diff --git a/apps/files_versions/l10n/ku_IQ.php b/apps/files_versions/l10n/ku_IQ.php index 5fa3b9080d7..db5dbad49fc 100644 --- a/apps/files_versions/l10n/ku_IQ.php +++ b/apps/files_versions/l10n/ku_IQ.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "وهشانهکان گشتیان بهسهردهچن", "History" => "مێژوو", -"Versions" => "وهشان", -"This will delete all existing backup versions of your files" => "ئهمه سهرجهم پاڵپشتی وهشانه ههبووهکانی پهڕگهکانت دهسڕینتهوه", "Files Versioning" => "وهشانی پهڕگه", "Enable" => "چالاککردن" ); diff --git a/apps/files_versions/l10n/lt_LT.php b/apps/files_versions/l10n/lt_LT.php index 3250ddc7c3c..adf4893020e 100644 --- a/apps/files_versions/l10n/lt_LT.php +++ b/apps/files_versions/l10n/lt_LT.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Panaikinti visų versijų galiojimą", "History" => "Istorija", -"Versions" => "Versijos", -"This will delete all existing backup versions of your files" => "Tai ištrins visas esamas failo versijas", "Files Versioning" => "Failų versijos", "Enable" => "Įjungti" ); diff --git a/apps/files_versions/l10n/mk.php b/apps/files_versions/l10n/mk.php index 60a06ad3384..d3ec233fe41 100644 --- a/apps/files_versions/l10n/mk.php +++ b/apps/files_versions/l10n/mk.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Истечи ги сите верзии", "History" => "Историја", -"Versions" => "Версии", -"This will delete all existing backup versions of your files" => "Ова ќе ги избрише сите постоечки резервни копии од вашите датотеки", "Files Versioning" => "Верзии на датотеки", "Enable" => "Овозможи" ); diff --git a/apps/files_versions/l10n/nb_NO.php b/apps/files_versions/l10n/nb_NO.php index b441008db01..18c72506102 100644 --- a/apps/files_versions/l10n/nb_NO.php +++ b/apps/files_versions/l10n/nb_NO.php @@ -1,7 +1,5 @@ <?php $TRANSLATIONS = array( "History" => "Historie", -"Versions" => "Versjoner", -"This will delete all existing backup versions of your files" => "Dette vil slette alle tidligere versjoner av alle filene dine", "Files Versioning" => "Fil versjonering", "Enable" => "Aktiver" ); diff --git a/apps/files_versions/l10n/nl.php b/apps/files_versions/l10n/nl.php index f9b5507621d..cd147ca693f 100644 --- a/apps/files_versions/l10n/nl.php +++ b/apps/files_versions/l10n/nl.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Alle versies laten verlopen", "History" => "Geschiedenis", -"Versions" => "Versies", -"This will delete all existing backup versions of your files" => "Dit zal alle bestaande backup versies van uw bestanden verwijderen", "Files Versioning" => "Bestand versies", "Enable" => "Activeer" ); diff --git a/apps/files_versions/l10n/pl.php b/apps/files_versions/l10n/pl.php index 46c28d4590a..a0247b8abc6 100644 --- a/apps/files_versions/l10n/pl.php +++ b/apps/files_versions/l10n/pl.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Wygasają wszystkie wersje", "History" => "Historia", -"Versions" => "Wersje", -"This will delete all existing backup versions of your files" => "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików", "Files Versioning" => "Wersjonowanie plików", "Enable" => "Włącz" ); diff --git a/apps/files_versions/l10n/pt_BR.php b/apps/files_versions/l10n/pt_BR.php index 3d39a533d65..854a30e6bee 100644 --- a/apps/files_versions/l10n/pt_BR.php +++ b/apps/files_versions/l10n/pt_BR.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Expirar todas as versões", "History" => "Histórico", -"Versions" => "Versões", -"This will delete all existing backup versions of your files" => "Isso removerá todas as versões de backup existentes dos seus arquivos", "Files Versioning" => "Versionamento de Arquivos", "Enable" => "Habilitar" ); diff --git a/apps/files_versions/l10n/pt_PT.php b/apps/files_versions/l10n/pt_PT.php index 2ddf70cc6c5..dc1bde08cad 100644 --- a/apps/files_versions/l10n/pt_PT.php +++ b/apps/files_versions/l10n/pt_PT.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Expirar todas as versões", "History" => "Histórico", -"Versions" => "Versões", -"This will delete all existing backup versions of your files" => "Isto irá apagar todas as versões de backup do seus ficheiros", "Files Versioning" => "Versionamento de Ficheiros", "Enable" => "Activar" ); diff --git a/apps/files_versions/l10n/ro.php b/apps/files_versions/l10n/ro.php index e23e771e392..7dfaee3672b 100644 --- a/apps/files_versions/l10n/ro.php +++ b/apps/files_versions/l10n/ro.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Expiră toate versiunile", "History" => "Istoric", -"Versions" => "Versiuni", -"This will delete all existing backup versions of your files" => "Această acțiune va șterge toate versiunile salvate ale fișierelor tale", "Files Versioning" => "Versionare fișiere", "Enable" => "Activare" ); diff --git a/apps/files_versions/l10n/ru.php b/apps/files_versions/l10n/ru.php index d698e90b8b8..4c7fb501091 100644 --- a/apps/files_versions/l10n/ru.php +++ b/apps/files_versions/l10n/ru.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Просрочить все версии", "History" => "История", -"Versions" => "Версии", -"This will delete all existing backup versions of your files" => "Очистить список версий ваших файлов", "Files Versioning" => "Версии файлов", "Enable" => "Включить" ); diff --git a/apps/files_versions/l10n/ru_RU.php b/apps/files_versions/l10n/ru_RU.php index 557c2f8e6d1..8656e346eb6 100644 --- a/apps/files_versions/l10n/ru_RU.php +++ b/apps/files_versions/l10n/ru_RU.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Срок действия всех версий истекает", "History" => "История", -"Versions" => "Версии", -"This will delete all existing backup versions of your files" => "Это приведет к удалению всех существующих версий резервной копии Ваших файлов", "Files Versioning" => "Файлы управления версиями", "Enable" => "Включить" ); diff --git a/apps/files_versions/l10n/si_LK.php b/apps/files_versions/l10n/si_LK.php index dbddf6dc2e9..37debf869bc 100644 --- a/apps/files_versions/l10n/si_LK.php +++ b/apps/files_versions/l10n/si_LK.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "සියලු අනුවාද අවලංගු කරන්න", "History" => "ඉතිහාසය", -"Versions" => "අනුවාද", -"This will delete all existing backup versions of your files" => "මෙයින් ඔබගේ ගොනුවේ රක්ශිත කරනු ලැබු අනුවාද සියල්ල මකා දමනු ලැබේ", "Files Versioning" => "ගොනු අනුවාදයන්", "Enable" => "සක්රිය කරන්න" ); diff --git a/apps/files_versions/l10n/sk_SK.php b/apps/files_versions/l10n/sk_SK.php index 132c6c09682..a3a3567cb4f 100644 --- a/apps/files_versions/l10n/sk_SK.php +++ b/apps/files_versions/l10n/sk_SK.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Expirovať všetky verzie", "History" => "História", -"Versions" => "Verzie", -"This will delete all existing backup versions of your files" => "Budú zmazané všetky zálohované verzie vašich súborov", "Files Versioning" => "Vytváranie verzií súborov", "Enable" => "Zapnúť" ); diff --git a/apps/files_versions/l10n/sl.php b/apps/files_versions/l10n/sl.php index 22b890a042d..7f386c9edaa 100644 --- a/apps/files_versions/l10n/sl.php +++ b/apps/files_versions/l10n/sl.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Zastaraj vse različice", "History" => "Zgodovina", -"Versions" => "Različice", -"This will delete all existing backup versions of your files" => "S tem bodo izbrisane vse obstoječe različice varnostnih kopij vaših datotek", "Files Versioning" => "Sledenje različicam", "Enable" => "Omogoči" ); diff --git a/apps/files_versions/l10n/sv.php b/apps/files_versions/l10n/sv.php index e36164e30ab..6788d1fb0f9 100644 --- a/apps/files_versions/l10n/sv.php +++ b/apps/files_versions/l10n/sv.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Upphör alla versioner", "History" => "Historik", -"Versions" => "Versioner", -"This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer", "Files Versioning" => "Versionshantering av filer", "Enable" => "Aktivera" ); diff --git a/apps/files_versions/l10n/ta_LK.php b/apps/files_versions/l10n/ta_LK.php index f1215b3ecc1..aca76dcc262 100644 --- a/apps/files_versions/l10n/ta_LK.php +++ b/apps/files_versions/l10n/ta_LK.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "எல்லா பதிப்புகளும் காலாவதியாகிவிட்டது", "History" => "வரலாறு", -"Versions" => "பதிப்புகள்", -"This will delete all existing backup versions of your files" => "உங்களுடைய கோப்புக்களில் ஏற்கனவே உள்ள ஆதாரநகல்களின் பதிப்புக்களை இவை அழித்துவிடும்", "Files Versioning" => "கோப்பு பதிப்புகள்", "Enable" => "இயலுமைப்படுத்துக" ); diff --git a/apps/files_versions/l10n/th_TH.php b/apps/files_versions/l10n/th_TH.php index 89b9f626911..e1e996903ae 100644 --- a/apps/files_versions/l10n/th_TH.php +++ b/apps/files_versions/l10n/th_TH.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "หมดอายุทุกรุ่น", "History" => "ประวัติ", -"Versions" => "รุ่น", -"This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป", "Files Versioning" => "การกำหนดเวอร์ชั่นของไฟล์", "Enable" => "เปิดใช้งาน" ); diff --git a/apps/files_versions/l10n/tr.php b/apps/files_versions/l10n/tr.php index 73f207d5024..e9a4c4702e1 100644 --- a/apps/files_versions/l10n/tr.php +++ b/apps/files_versions/l10n/tr.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Tüm sürümleri sona erdir", "History" => "Geçmiş", -"Versions" => "Sürümler", -"This will delete all existing backup versions of your files" => "Bu dosyalarınızın tüm yedek sürümlerini silecektir", "Files Versioning" => "Dosya Sürümleri", "Enable" => "Etkinleştir" ); diff --git a/apps/files_versions/l10n/uk.php b/apps/files_versions/l10n/uk.php index 7532f755c88..49acda81079 100644 --- a/apps/files_versions/l10n/uk.php +++ b/apps/files_versions/l10n/uk.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Термін дії всіх версій", "History" => "Історія", -"Versions" => "Версії", -"This will delete all existing backup versions of your files" => "Це призведе до знищення всіх існуючих збережених версій Ваших файлів", "Files Versioning" => "Версії файлів", "Enable" => "Включити" ); diff --git a/apps/files_versions/l10n/vi.php b/apps/files_versions/l10n/vi.php index 260c3b6b39c..bb7163f6b18 100644 --- a/apps/files_versions/l10n/vi.php +++ b/apps/files_versions/l10n/vi.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Hết hạn tất cả các phiên bản", "History" => "Lịch sử", -"Versions" => "Phiên bản", -"This will delete all existing backup versions of your files" => "Khi bạn thực hiện thao tác này sẽ xóa tất cả các phiên bản sao lưu hiện có ", "Files Versioning" => "Phiên bản tập tin", "Enable" => "Bật " ); diff --git a/apps/files_versions/l10n/zh_CN.GB2312.php b/apps/files_versions/l10n/zh_CN.GB2312.php index 107805221b8..d9e788033aa 100644 --- a/apps/files_versions/l10n/zh_CN.GB2312.php +++ b/apps/files_versions/l10n/zh_CN.GB2312.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "作废所有版本", "History" => "历史", -"Versions" => "版本", -"This will delete all existing backup versions of your files" => "这将删除所有您现有文件的备份版本", "Files Versioning" => "文件版本", "Enable" => "启用" ); diff --git a/apps/files_versions/l10n/zh_CN.php b/apps/files_versions/l10n/zh_CN.php index 48e7157c98f..14301ff0c04 100644 --- a/apps/files_versions/l10n/zh_CN.php +++ b/apps/files_versions/l10n/zh_CN.php @@ -1,8 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "过期所有版本", "History" => "历史", -"Versions" => "版本", -"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本", "Files Versioning" => "文件版本", "Enable" => "开启" ); diff --git a/apps/files_versions/l10n/zh_TW.php b/apps/files_versions/l10n/zh_TW.php index a21fdc85f8d..a7b496b37db 100644 --- a/apps/files_versions/l10n/zh_TW.php +++ b/apps/files_versions/l10n/zh_TW.php @@ -1,7 +1,5 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "所有逾期的版本", "History" => "歷史", -"Versions" => "版本", "Files Versioning" => "檔案版本化中...", "Enable" => "啟用" ); diff --git a/apps/files_versions/lib/hooks.php b/apps/files_versions/lib/hooks.php index e897a81f7af..5fb9dc3c3c5 100644 --- a/apps/files_versions/lib/hooks.php +++ b/apps/files_versions/lib/hooks.php @@ -39,15 +39,15 @@ class Hooks { * cleanup the versions directory if the actual file gets deleted */ public static function remove_hook($params) { - $versions_fileview = \OCP\Files::getStorage('files_versions'); - $rel_path = $params['path']; - $abs_path = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$rel_path.'.v'; - if(Storage::isversioned($rel_path)) { - $versions = Storage::getVersions($rel_path); - foreach ($versions as $v) { - unlink($abs_path . $v['version']); - } - } + if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') {
+
+ $versions = new Storage( new \OC_FilesystemView('') );
+
+ $path = $params[\OC_Filesystem::signal_param_path];
+
+ if($path<>'') $versions->delete( $path );
+
+ }
} /** @@ -58,18 +58,16 @@ class Hooks { * of the stored versions along the actual file */ public static function rename_hook($params) { - $versions_fileview = \OCP\Files::getStorage('files_versions'); - $rel_oldpath = $params['oldpath']; - $abs_oldpath = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$rel_oldpath.'.v'; - $abs_newpath = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$params['newpath'].'.v'; - if(Storage::isversioned($rel_oldpath)) { - $info=pathinfo($abs_newpath); - if(!file_exists($info['dirname'])) mkdir($info['dirname'], 0750, true); - $versions = Storage::getVersions($rel_oldpath); - foreach ($versions as $v) { - rename($abs_oldpath.$v['version'], $abs_newpath.$v['version']); - } + if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') {
+
+ $versions = new Storage( new \OC_FilesystemView('') );
+
+ $oldpath = $params['oldpath']; + $newpath = $params['newpath'];
+
+ if($oldpath<>'' && $newpath<>'') $versions->rename( $oldpath, $newpath );
+
} } - + } diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 0ccaaf1095d..48be5e223ac 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -1,6 +1,7 @@ <?php /** * Copyright (c) 2012 Frank Karlitschek <frank@owncloud.org> + * 2013 Bjoern Schiessle <schiessle@owncloud.com> * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. @@ -16,24 +17,23 @@ namespace OCA_Versions; class Storage { - - // config.php configuration: - // - files_versions - // - files_versionsfolder - // - files_versionsblacklist - // - files_versionsmaxfilesize - // - files_versionsinterval - // - files_versionmaxversions - // - // todo: - // - finish porting to OC_FilesystemView to enable network transparency - // - add transparent compression. first test if it´s worth it. - const DEFAULTENABLED=true; - const DEFAULTBLACKLIST='avi mp3 mpg mp4 ctmp'; - const DEFAULTMAXFILESIZE=1048576; // 10MB - const DEFAULTMININTERVAL=60; // 1 min - const DEFAULTMAXVERSIONS=50; + const DEFAULTMAXSIZE=50; // unit: percentage; 50% of available disk space/quota + + private static $max_versions_per_interval = array( + 1 => array('intervalEndsAfter' => 10, //first 10sec, one version every 2sec + 'step' => 2), + 2 => array('intervalEndsAfter' => 60, //next minute, one version every 10sec
+ 'step' => 10), + 3 => array('intervalEndsAfter' => 3600, //next hour, one version every minute + 'step' => 60), + 4 => array('intervalEndsAfter' => 86400, //next 24h, one version every hour + 'step' => 3600), + 5 => array('intervalEndsAfter' => 2592000, //next 30days, one version per day
+ 'step' => 86400), + 6 => array('intervalEndsAfter' => -1, //until the end one version per week
+ 'step' => 604800), + ); private static function getUidAndFilename($filename) { @@ -72,56 +72,78 @@ class Storage { return false; } - // check filetype blacklist - $blacklist=explode(' ', \OCP\Config::getSystemValue('files_versionsblacklist', Storage::DEFAULTBLACKLIST)); - foreach($blacklist as $bl) { - $parts=explode('.', $filename); - $ext=end($parts); - if(strtolower($ext)==$bl) { - return false; - } - } // we should have a source file to work with if (!$files_view->file_exists($filename)) { return false; } - // check filesize - if($files_view->filesize($filename)>\OCP\Config::getSystemValue('files_versionsmaxfilesize', Storage::DEFAULTMAXFILESIZE)) { - return false; - } - - - // check mininterval if the file is being modified by the owner (all shared files should be versioned despite mininterval) - if ($uid == \OCP\User::getUser()) { - $versions_fileview = new \OC_FilesystemView('/'.$uid.'/files_versions'); - $versionsName=\OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath($filename); - $versionsFolderName=\OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath(''); - $matches=glob($versionsName.'.v*'); - sort($matches); - $parts=explode('.v', end($matches)); - if((end($parts)+Storage::DEFAULTMININTERVAL)>time()) { - return false; - } - } - - // create all parent folders $info=pathinfo($filename); + $versionsFolderName=\OCP\Config::getSystemValue('datadirectory').$users_view->getAbsolutePath('files_versions/'); if(!file_exists($versionsFolderName.'/'.$info['dirname'])) { mkdir($versionsFolderName.'/'.$info['dirname'], 0750, true); } // store a new version of a file - $users_view->copy('files'.$filename, 'files_versions'.$filename.'.v'.time()); - + $result = $users_view->copy('files'.$filename, 'files_versions'.$filename.'.v'.$users_view->filemtime('files'.$filename)); + if ( ($versionsSize = \OCP\Config::getAppValue('files_versions', 'size')) === null ) {
+ $versionsSize = self::calculateSize($uid);
+ } + $versionsSize += $users_view->filesize('files'.$filename); + // expire old revisions if necessary - Storage::expire($filename); + $newSize = self::expire($filename, $versionsSize); + + if ( $newSize != $versionsSize ) { + \OCP\Config::setAppValue('files_versions', 'size', $versionsSize); + } } } /** + * Delete versions of a file + */ + public static function delete($filename) { + list($uid, $filename) = self::getUidAndFilename($filename);
+ $versions_fileview = new \OC_FilesystemView('/'.$uid .'/files_versions'); +
+ $abs_path = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$filename.'.v';
+ if( ($versions = self::getVersions($filename)) ) {
+ if ( ($versionsSize = \OCP\Config::getAppValue('files_versions', 'size')) === null ) {
+ $versionsSize = self::calculateSize($uid);
+ }
+ foreach ($versions as $v) {
+ unlink($abs_path . $v['version']);
+ $versionsSize -= $v['size'];
+ }
+ \OCP\Config::setAppValue('files_versions', 'size', $versionsSize);
+ } + } + + /**
+ * rename versions of a file
+ */
+ public static function rename($oldpath, $newpath) {
+ list($uid, $oldpath) = self::getUidAndFilename($oldpath); + list($uidn, $newpath) = self::getUidAndFilename($newpath);
+ $versions_view = new \OC_FilesystemView('/'.$uid .'/files_versions'); + $files_view = new \OC_FilesystemView('/'.$uid .'/files'); + $abs_newpath = \OCP\Config::getSystemValue('datadirectory').$versions_view->getAbsolutePath('').$newpath;
+
+ if ( $files_view->is_dir($oldpath) && $versions_view->is_dir($oldpath) ) { + $versions_view->rename($oldpath, $newpath); + } else if ( ($versions = Storage::getVersions($oldpath)) ) {
+ $info=pathinfo($abs_newpath);
+ if(!file_exists($info['dirname'])) mkdir($info['dirname'], 0750, true);
+ $versions = Storage::getVersions($oldpath);
+ foreach ($versions as $v) { + $versions_view->rename($oldpath.'.v'.$v['version'], $newpath.'.v'.$v['version']);
+ }
+ }
+ } + + /** * rollback to an old version of a file. */ public static function rollback($filename, $revision) { @@ -129,45 +151,29 @@ class Storage { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { list($uid, $filename) = self::getUidAndFilename($filename); $users_view = new \OC_FilesystemView('/'.$uid); - + $versionCreated = false; + + //first create a new version + $version = 'files_versions'.$filename.'.v'.$users_view->filemtime('files'.$filename); + if ( !$users_view->file_exists($version)) { + $users_view->copy('files'.$filename, 'files_versions'.$filename.'.v'.$users_view->filemtime('files'.$filename)); + $versionCreated = true; + } + // rollback if( @$users_view->copy('files_versions'.$filename.'.v'.$revision, 'files'.$filename) ) { - + $users_view->touch('files'.$filename, $revision); + Storage::expire($filename); return true; - }else{ - - return false; - + }else if ( $versionCreated ) { + $users_view->unlink($version); } - } + return false; } - /** - * check if old versions of a file exist. - */ - public static function isversioned($filename) { - if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - list($uid, $filename) = self::getUidAndFilename($filename); - $versions_fileview = new \OC_FilesystemView('/'.$uid.'/files_versions'); - - $versionsName=\OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath($filename); - - // check for old versions - $matches=glob($versionsName.'.v*'); - if(count($matches)>0) { - return true; - }else{ - return false; - } - }else{ - return(false); - } - } - - /** * @brief get a list of all available versions of a file in descending chronological order @@ -187,92 +193,232 @@ class Storage { sort( $matches ); - $i = 0; - - $files_view = new \OC_FilesystemView('/'.\OCP\User::getUser().'/files'); + $files_view = new \OC_FilesystemView('/'.$uid.'/files'); $local_file = $files_view->getLocalFile($filename); - foreach( $matches as $ma ) { - $i++; - $versions[$i]['cur'] = 0; + foreach( $matches as $ma ) { $parts = explode( '.v', $ma ); - $versions[$i]['version'] = ( end( $parts ) ); + $version = ( end( $parts ) ); + $key = $version.'#'.$filename; + $versions[$key]['cur'] = 0; + $versions[$key]['version'] = $version; + $versions[$key]['path'] = $filename;
+ $versions[$key]['size'] = $versions_fileview->filesize($filename.'.v'.$version); // if file with modified date exists, flag it in array as currently enabled version - ( \md5_file( $ma ) == \md5_file( $local_file ) ? $versions[$i]['fileMatch'] = 1 : $versions[$i]['fileMatch'] = 0 ); + ( \md5_file( $ma ) == \md5_file( $local_file ) ? $versions[$key]['fileMatch'] = 1 : $versions[$key]['fileMatch'] = 0 ); } $versions = array_reverse( $versions ); foreach( $versions as $key => $value ) { - // flag the first matched file in array (which will have latest modification date) as current version if ( $value['fileMatch'] ) { - $value['cur'] = 1; break; - } - } $versions = array_reverse( $versions ); // only show the newest commits if( $count != 0 and ( count( $versions )>$count ) ) { - $versions = array_slice( $versions, count( $versions ) - $count ); - } return( $versions ); - } else { - // if versioning isn't enabled then return an empty array return( array() ); - } } + /**
+ * @brief get the size of all stored versions from a given user
+ * @param $uid id from the user
+ * @return size of vesions
+ */
+ private static function calculateSize($uid) {
+ if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) {
+ $versions_fileview = new \OC_FilesystemView('/'.$uid.'/files_versions');
+ $versionsRoot = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('');
+
+ $iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($versionsRoot), \RecursiveIteratorIterator::CHILD_FIRST);
+
+ $size = 0; +
+ foreach ($iterator as $path) {
+ if ( preg_match('/^.+\.v(\d+)$/', $path, $match) ) {
+ $relpath = substr($path, strlen($versionsRoot)-1); + $size += $versions_fileview->filesize($relpath);
+ }
+ } + + return $size;
+ }
+ } + /** - * @brief Erase a file's versions which exceed the set quota + * @brief returns all stored file versions from a given user + * @param $uid id to the user + * @return array with contains two arrays 'all' which contains all versions sorted by age and 'by_file' which contains all versions sorted by filename */ - public static function expire($filename) { - if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - list($uid, $filename) = self::getUidAndFilename($filename); + private static function getAllVersions($uid) { + if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) {
$versions_fileview = new \OC_FilesystemView('/'.$uid.'/files_versions'); - - $versionsName=\OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath($filename); - - // check for old versions - $matches = glob( $versionsName.'.v*' ); - - if( count( $matches ) > \OCP\Config::getSystemValue( 'files_versionmaxversions', Storage::DEFAULTMAXVERSIONS ) ) { - - $numberToDelete = count($matches) - \OCP\Config::getSystemValue( 'files_versionmaxversions', Storage::DEFAULTMAXVERSIONS ); - - // delete old versions of a file - $deleteItems = array_slice( $matches, 0, $numberToDelete ); - - foreach( $deleteItems as $de ) { - - unlink( $versionsName.'.v'.$de ); - + $versionsRoot = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath(''); + + $iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($versionsRoot), \RecursiveIteratorIterator::CHILD_FIRST);
+ + $versions = array(); + + foreach ($iterator as $path) { + if ( preg_match('/^.+\.v(\d+)$/', $path, $match) ) { + $relpath = substr($path, strlen($versionsRoot)-1); + $versions[$match[1].'#'.$relpath] = array('path' => $relpath, 'timestamp' => $match[1]); } + }
+ + ksort($versions); + + $i = 0; + + $result = array(); + + foreach( $versions as $key => $value ) {
+ $i++; + $size = $versions_fileview->filesize($value['path']); + $filename = substr($value['path'], 0, -strlen($value['timestamp'])-2); +
+ $result['all'][$key]['version'] = $value['timestamp']; + $result['all'][$key]['path'] = $filename;
+ $result['all'][$key]['size'] = $size; + + $filename = substr($value['path'], 0, -strlen($value['timestamp'])-2); + $result['by_file'][$filename][$key]['version'] = $value['timestamp']; + $result['by_file'][$filename][$key]['path'] = $filename;
+ $result['by_file'][$filename][$key]['size'] = $size; +
} + + return $result; } } /** - * @brief Erase all old versions of all user files - * @return true/false + * @brief Erase a file's versions which exceed the set quota */ - public function expireAll() { - $view = \OCP\Files::getStorage('files_versions'); - return $view->deleteAll('', true); + private static function expire($filename, $versionsSize = null) { + if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { + list($uid, $filename) = self::getUidAndFilename($filename); + $versions_fileview = new \OC_FilesystemView('/'.$uid.'/files_versions'); + + // get available disk space for user + $quota = \OCP\Util::computerFileSize(\OC_Preferences::getValue($uid, 'files', 'quota')); + if ( $quota == null ) { + $quota = \OCP\Util::computerFileSize(\OC_Appconfig::getValue('files', 'default_quota')); + } + if ( $quota == null ) { + $quota = \OC_Filesystem::free_space('/'); + } + + // make sure that we have the current size of the version history + if ( $versionsSize === null ) { + if ( ($versionsSize = \OCP\Config::getAppValue('files_versions', 'size')) === null ) { + $versionsSize = self::calculateSize($uid); + } + } + + // calculate available space for version history
+ $rootInfo = \OC_FileCache::get('', '/'. $uid . '/files'); + $free = $quota-$rootInfo['size']; // remaining free space for user + if ( $free > 0 ) { + $availableSpace = ($free * self::DEFAULTMAXSIZE / 100) - $versionsSize; // how much space can be used for versions + } else { + $availableSpace = $free-$versionsSize; + } + + // after every 1000s run reduce the number of all versions not only for the current file + $random = rand(0, 1000); + if ($random == 0) { + $result = Storage::getAllVersions($uid); + $versions_by_file = $result['by_file']; + $all_versions = $result['all']; + } else { + $all_versions = Storage::getVersions($filename); + $versions_by_file[$filename] = $all_versions; + } + + $time = time(); + + // it is possible to expire versions from more than one file + // iterate through all given files + foreach ($versions_by_file as $filename => $versions) { + $versions = array_reverse($versions); // newest version first + + $interval = 1; + $step = Storage::$max_versions_per_interval[$interval]['step']; + if (Storage::$max_versions_per_interval[$interval]['intervalEndsAfter'] == -1) { + $nextInterval = -1; + } else { + $nextInterval = $time - Storage::$max_versions_per_interval[$interval]['intervalEndsAfter']; + } + + $firstVersion = reset($versions); + $firstKey = key($versions); + $prevTimestamp = $firstVersion['version']; + $nextVersion = $firstVersion['version'] - $step; + $remaining_versions[$firstKey] = $firstVersion; + unset($versions[$firstKey]); + + foreach ($versions as $key => $version) { + $newInterval = true; + while ( $newInterval ) { + if ( $nextInterval == -1 || $version['version'] >= $nextInterval ) { + if ( $version['version'] > $nextVersion ) { + //distance between two version too small, delete version + $versions_fileview->unlink($version['path'].'.v'.$version['version']); + $availableSpace += $version['size']; + $versionsSize -= $version['size']; + unset($all_versions[$key]); // update array with all versions + } else { + $nextVersion = $version['version'] - $step; + } + $newInterval = false; // version checked so we can move to the next one + } else { // time to move on to the next interval + $interval++; + $step = Storage::$max_versions_per_interval[$interval]['step']; + $nextVersion = $prevTimestamp - $step; + if ( Storage::$max_versions_per_interval[$interval]['intervalEndsAfter'] == -1 ) { + $nextInterval = -1; + } else {
+ $nextInterval = $time - Storage::$max_versions_per_interval[$interval]['intervalEndsAfter']; + } + $newInterval = true; // we changed the interval -> check same version with new interval + } + } + $prevTimestamp = $version['version']; + } + } + + // check if enough space is available after versions are rearranged. + // if not we delete the oldest versions until we meet the size limit for versions + $numOfVersions = count($all_versions); + $i = 0; + while ($availableSpace < 0) { + if ($i = $numOfVersions-2) break; // keep at least the last version + $versions_fileview->unlink($all_versions[$i]['path'].'.v'.$all_versions[$i]['version']); + $versionsSize -= $all_versions[$i]['size']; + $availableSpace += $all_versions[$i]['size']; + $i++; + } + + return $versionsSize; // finally return the new size of the version history + } + + return false; } } diff --git a/apps/files_versions/settings-personal.php b/apps/files_versions/settings-personal.php deleted file mode 100644 index 6555bc99c3e..00000000000 --- a/apps/files_versions/settings-personal.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -$tmpl = new OCP\Template( 'files_versions', 'settings-personal'); - -OCP\Util::addscript('files_versions', 'settings-personal'); - -return $tmpl->fetchPage(); diff --git a/apps/files_versions/templates/settings-personal.php b/apps/files_versions/templates/settings-personal.php deleted file mode 100644 index 2b313a07c88..00000000000 --- a/apps/files_versions/templates/settings-personal.php +++ /dev/null @@ -1,12 +0,0 @@ -<form id="versions"> - <fieldset class="personalblock"> - <legend> - <strong><?php echo $l->t('Versions'); ?></strong> - </legend> - <button id="expireAllBtn"> - <?php echo $l->t('Expire all versions'); ?> - <img style="display: none;" class="expireAllLoading" src="<?php echo OCP\Util::imagePath('core', 'loading.gif'); ?>" /> - </button> - <br /><em><?php echo $l->t('This will delete all existing backup versions of your files'); ?></em> - </fieldset> -</form> diff --git a/apps/files_versions/templates/settings.php b/apps/files_versions/templates/settings.php index 88063cb075b..bfca8366f5d 100644 --- a/apps/files_versions/templates/settings.php +++ b/apps/files_versions/templates/settings.php @@ -1,6 +1,6 @@ <form id="versionssettings"> - <fieldset class="personalblock"> - <legend><strong><?php echo $l->t('Files Versioning');?></strong></legend> - <input type="checkbox" name="versions" id="versions" value="1" <?php if (OCP\Config::getSystemValue('versions', 'true')=='true') echo ' checked="checked"'; ?> /> <label for="versions"><?php echo $l->t('Enable'); ?></label> <br/> - </fieldset> + <fieldset class="personalblock"> + <legend><strong><?php echo $l->t('Files Versioning');?></strong></legend> + <input type="checkbox" name="versions" id="versions" value="1" <?php if (OCP\Config::getSystemValue('versions', 'true')=='true') echo ' checked="checked"'; ?> /> <label for="versions"><?php echo $l->t('Enable'); ?></label> <br/> + </fieldset> </form> diff --git a/apps/user_ldap/css/settings.css b/apps/user_ldap/css/settings.css index f3f41fb2d8b..84ada0832ab 100644 --- a/apps/user_ldap/css/settings.css +++ b/apps/user_ldap/css/settings.css @@ -2,9 +2,11 @@ width: 20%; max-width: 200px; display: inline-block; + vertical-align: top; + padding-top: 9px; } -#ldap fieldset input { +#ldap fieldset input, #ldap fieldset textarea { width: 70%; display: inline-block; } diff --git a/apps/user_ldap/l10n/ar.php b/apps/user_ldap/l10n/ar.php index ced0b4293b7..da1710a0a3c 100644 --- a/apps/user_ldap/l10n/ar.php +++ b/apps/user_ldap/l10n/ar.php @@ -1,3 +1,4 @@ <?php $TRANSLATIONS = array( -"Password" => "كلمة المرور" +"Password" => "كلمة المرور", +"Help" => "المساعدة" ); diff --git a/apps/user_ldap/l10n/bg_BG.php b/apps/user_ldap/l10n/bg_BG.php new file mode 100644 index 00000000000..c064534a6b8 --- /dev/null +++ b/apps/user_ldap/l10n/bg_BG.php @@ -0,0 +1,4 @@ +<?php $TRANSLATIONS = array( +"Password" => "Парола", +"Help" => "Помощ" +); diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php new file mode 100644 index 00000000000..094b20cad2d --- /dev/null +++ b/apps/user_ldap/l10n/bn_BD.php @@ -0,0 +1,37 @@ +<?php $TRANSLATIONS = array( +"Host" => "হোস্ট", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL আবশ্যক না হলে আপনি এই প্রটোকলটি মুছে ফেলতে পারেন । এরপর শুরু করুন এটা দিয়ে ldaps://", +"Base DN" => "ভিত্তি DN", +"You can specify Base DN for users and groups in the Advanced tab" => "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।", +"User DN" => "ব্যবহারকারি DN", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. পরিচয় গোপন রেখে অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।", +"Password" => "কূটশব্দ", +"For anonymous access, leave DN and Password empty." => "অজ্ঞাতকুলশীল অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।", +"User Login Filter" => "ব্যবহারকারির প্রবেশ ছাঁকনী", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "প্রবেশের চেষ্টা করার সময় প্রযোজ্য ছাঁকনীটি নির্ধারণ করবে। প্রবেশের সময় ব্যবহারকারী নামটি %%uid দিয়ে প্রতিস্থাপিত হবে।", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "%%uid স্থানধারক ব্যবহার করুন, উদাহরণঃ \"uid=%%uid\"", +"User List Filter" => "ব্যবহারকারী তালিকা ছাঁকনী", +"Defines the filter to apply, when retrieving users." => "ব্যবহারকারী উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।", +"without any placeholder, e.g. \"objectClass=person\"." => "কোন স্থানধারক ব্যতীত, যেমনঃ \"objectClass=person\"।", +"Group Filter" => "গোষ্ঠী ছাঁকনী", +"Defines the filter to apply, when retrieving groups." => "গোষ্ঠীসমূহ উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "কোন স্থান ধারক ব্যতীত, উদাহরণঃ\"objectClass=posixGroup\"।", +"Port" => "পোর্ট", +"Base User Tree" => "ভিত্তি ব্যবহারকারি বৃক্ষাকারে", +"Base Group Tree" => "ভিত্তি গোষ্ঠী বৃক্ষাকারে", +"Group-Member association" => "গোষ্ঠী-সদস্য সংস্থাপন", +"Use TLS" => "TLS ব্যবহার কর", +"Do not use it for SSL connections, it will fail." => "SSL সংযোগের জন্য এটি ব্যবহার করবেন না, তাহলে ব্যর্থ হবেনই।", +"Case insensitve LDAP server (Windows)" => "বর্ণ অসংবেদী LDAP সার্ভার (উইন্ডোজ)", +"Turn off SSL certificate validation." => "SSL সনদপত্র যাচাইকরণ বন্ধ রাক।", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "শুধুমাত্র যদি এই বিকল্পটি ব্যবহার করেই সংযোগ কার্যকরী হয় তবে আপনার ownCloud সার্ভারে LDAP সার্ভারের SSL সনদপত্রটি আমদানি করুন।", +"Not recommended, use for testing only." => "অনুমোদিত নয়, শুধুমাত্র পরীক্ষামূলক ব্যবহারের জন্য।", +"User Display Name Field" => "ব্যবহারকারীর প্রদর্শিতব্য নামের ক্ষেত্র", +"The LDAP attribute to use to generate the user`s ownCloud name." => "ব্যবহারকারীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।", +"Group Display Name Field" => "গোষ্ঠীর প্রদর্শিতব্য নামের ক্ষেত্র", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "গোষ্ঠীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।", +"in bytes" => "বাইটে", +"in seconds. A change empties the cache." => "সেকেন্ডে। কোন পরিবর্তন ক্যাসে খালি করবে।", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ব্যবহারকারী নামের জন্য ফাঁকা রাখুন (পূর্বনির্ধারিত)। অন্যথায়, LDAP/AD বৈশিষ্ট্য নির্ধারণ করুন।", +"Help" => "সহায়িকা" +); diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index d801ddff631..06255c1249a 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -1,9 +1,10 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Avís:</b> 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.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Avís:</b> El mòdul PHP LDAP necessari no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li.", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Avís:</b> El mòdul PHP LDAP no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li.", "Host" => "Màquina", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb ldaps://", "Base DN" => "DN Base", +"One Base DN per line" => "Una DN Base per línia", "You can specify Base DN for users and groups in the Advanced tab" => "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat", "User DN" => "DN Usuari", "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." => "La DN de l'usuari client amb la que s'haurà de fer, per exemple uid=agent,dc=exemple,dc=com. Per un accés anònim, deixeu la DN i la contrasenya en blanc.", @@ -20,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "sense cap paràmetre de substitució, per exemple \"objectClass=grupPosix\".", "Port" => "Port", "Base User Tree" => "Arbre base d'usuaris", +"One User Base DN per line" => "Una DN Base d'Usuari per línia", "Base Group Tree" => "Arbre base de grups", +"One Group Base DN per line" => "Una DN Base de Grup per línia", "Group-Member association" => "Associació membres-grup", "Use TLS" => "Usa TLS", "Do not use it for SSL connections, it will fail." => "No ho useu en connexions SSL, fallarà.", diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 0c14ebb9d1e..80e27f1e62a 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -1,9 +1,10 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Varování:</b> 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.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Varování:</b> není nainstalován LDAP modul pro PHP, podpůrná vrstva nebude fungovat. Požádejte, prosím, správce systému aby jej nainstaloval.", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Varování:</b> není nainstalován LDAP modul pro PHP, podpůrná vrstva nebude fungovat. Požádejte, prosím, správce systému aby jej nainstaloval.", "Host" => "Počítač", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://", "Base DN" => "Základní DN", +"One Base DN per line" => "Jedna základní DN na řádku", "You can specify Base DN for users and groups in the Advanced tab" => "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny", "User DN" => "Uživatelské DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN klentského uživatele ke kterému tvoříte vazbu, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte údaje DN and Heslo prázdné.", @@ -20,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "bez zástupných znaků, např. \"objectClass=posixGroup\".", "Port" => "Port", "Base User Tree" => "Základní uživatelský strom", +"One User Base DN per line" => "Jedna uživatelská základní DN na řádku", "Base Group Tree" => "Základní skupinový strom", +"One Group Base DN per line" => "Jedna skupinová základní DN na řádku", "Group-Member association" => "Asociace člena skupiny", "Use TLS" => "Použít TLS", "Do not use it for SSL connections, it will fail." => "Nepoužívejte pro připojení pomocí SSL, připojení selže.", diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index 87579cb2431..89bda8af97f 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Warnung:</b> Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitte Deinen Systemadministator eine der beiden Anwendungen zu deaktivieren.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Warnung:</b> Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen Systemadministrator das Modul zu installieren.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://", "Base DN" => "Basis-DN", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index f986ae83e87..82877b5ca1b 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Warnung:</b> 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.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Warnung:</b> Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://", "Base DN" => "Basis-DN", diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 8c421cf162b..1f75a687a5d 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Προσοχή:</b> Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Προσοχή:</b> Το PHP LDAP module που απαιτείται δεν είναι εγκατεστημένο και ο μηχανισμός δεν θα λειτουργήσει. Παρακαλώ ζητήστε από τον διαχειριστή του συστήματος να το εγκαταστήσει.", "Host" => "Διακομιστής", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://", "Base DN" => "Base DN", diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 4931af79eaf..48e7b24734e 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Advertencia:</b> 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.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Advertencia:</b> El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo.", "Host" => "Servidor", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://", "Base DN" => "DN base", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 6bd452e9d90..331bf8699f4 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Advertencia:</b> 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.", "Host" => "Servidor", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://", "Base DN" => "DN base", diff --git a/apps/user_ldap/l10n/eu.php b/apps/user_ldap/l10n/eu.php index 06ca9cb294e..7290dabbef0 100644 --- a/apps/user_ldap/l10n/eu.php +++ b/apps/user_ldap/l10n/eu.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Abisua:</b> user_ldap eta user_webdavauth aplikazioak bateraezinak dira. Portaera berezia izan dezakezu. Mesedez eskatu zure sistema kudeatzaileari bietako bat desgaitzeko.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Abisua:</b> PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan.", "Host" => "Hostalaria", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokoloa ez da beharrezkoa, SSL behar baldin ez baduzu. Honela bada hasi ldaps://", "Base DN" => "Oinarrizko DN", diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 9750d1352a8..dd2fb08091c 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Avertissement:</b> 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.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Avertissement:</b> Le module PHP LDAP requis n'est pas installé, l'application ne marchera pas. Contactez votre administrateur système pour qu'il l'installe.", "Host" => "Hôte", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas préfixez avec ldaps://", "Base DN" => "DN Racine", diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index 41431293cba..d60521c4a02 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -1,10 +1,11 @@ <?php $TRANSLATIONS = array( +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Aviso:</b> 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.", "Host" => "Servidor", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Pode omitir o protocolo agás que precise de SSL. Nese caso comece con ldaps://", "Base DN" => "DN base", "You can specify Base DN for users and groups in the Advanced tab" => "Pode especificar a DN base para usuarios e grupos na lapela de «Avanzado»", "User DN" => "DN do usuario", -"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso en anónimo de o DN e o contrasinal baleiros.", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso anónimo deixe o DN e o contrasinal baleiros.", "Password" => "Contrasinal", "For anonymous access, leave DN and Password empty." => "Para o acceso anónimo deixe o DN e o contrasinal baleiros.", "User Login Filter" => "Filtro de acceso de usuarios", @@ -21,7 +22,7 @@ "Base Group Tree" => "Base da árbore de grupo", "Group-Member association" => "Asociación de grupos e membros", "Use TLS" => "Usar TLS", -"Do not use it for SSL connections, it will fail." => "Non empregualo para conexións SSL: fallará.", +"Do not use it for SSL connections, it will fail." => "Non empregalo para conexións SSL: fallará.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP que non distingue entre maiúsculas e minúsculas (Windows)", "Turn off SSL certificate validation." => "Desactiva a validación do certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a conexión só funciona con esta opción importa o certificado SSL do servidor LDAP no seu servidor ownCloud.", diff --git a/apps/user_ldap/l10n/he.php b/apps/user_ldap/l10n/he.php new file mode 100644 index 00000000000..d33ecaadf05 --- /dev/null +++ b/apps/user_ldap/l10n/he.php @@ -0,0 +1,12 @@ +<?php $TRANSLATIONS = array( +"Host" => "מארח", +"User DN" => "DN משתמש", +"Password" => "סיסמא", +"For anonymous access, leave DN and Password empty." => "לגישה אנונימית, השאר את הDM והסיסמא ריקים.", +"User Login Filter" => "סנן כניסת משתמש", +"User List Filter" => "סנן רשימת משתמשים", +"Group Filter" => "סנן קבוצה", +"in bytes" => "בבתים", +"in seconds. A change empties the cache." => "בשניות. שינוי מרוקן את המטמון.", +"Help" => "עזרה" +); diff --git a/apps/user_ldap/l10n/hr.php b/apps/user_ldap/l10n/hr.php new file mode 100644 index 00000000000..91503315066 --- /dev/null +++ b/apps/user_ldap/l10n/hr.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"Help" => "Pomoć" +); diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index 14eb5837ceb..aae29d057ed 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Figyelem:</b> 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.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Figyelem:</b> a szükséges PHP LDAP modul nincs telepítve. Enélkül az LDAP azonosítás nem fog működni. Kérje meg a rendszergazdát, hogy telepítse a szükséges modult!", "Host" => "Kiszolgáló", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "A protokoll előtag elhagyható, kivéve, ha SSL-t kíván használni. Ebben az esetben kezdje így: ldaps://", "Base DN" => "DN-gyökér", @@ -17,6 +16,7 @@ "Group Filter" => "A csoportok szűrője", "Defines the filter to apply, when retrieving groups." => "Ez a szűrő érvényes a csoportok listázásakor.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "itt ne használjunk változót, pl. \"objectClass=posixGroup\".", +"Port" => "Port", "Base User Tree" => "A felhasználói fa gyökere", "Base Group Tree" => "A csoportfa gyökere", "Group-Member association" => "A csoporttagság attribútuma", diff --git a/apps/user_ldap/l10n/ia.php b/apps/user_ldap/l10n/ia.php new file mode 100644 index 00000000000..3586bf5a2e7 --- /dev/null +++ b/apps/user_ldap/l10n/ia.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"Help" => "Adjuta" +); diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index 915ce3af5b8..bee30cfe6ec 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -1,9 +1,10 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Avviso:</b> le applicazioni user_ldap e user_webdavauth sono incompatibili. Potresti riscontrare un comportamento inatteso. Chiedi al tuo amministratore di sistema di disabilitarne uno.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Avviso:</b> il modulo PHP LDAP richiesto non è installato, il motore non funzionerà. Chiedi al tuo amministratore di sistema di installarlo.", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Avviso:</b> il modulo PHP LDAP non è installato, il motore non funzionerà. Chiedi al tuo amministratore di sistema di installarlo.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "È possibile omettere il protocollo, ad eccezione se è necessario SSL. Quindi inizia con ldaps://", "Base DN" => "DN base", +"One Base DN per line" => "Un DN base per riga", "You can specify Base DN for users and groups in the Advanced tab" => "Puoi specificare una DN base per gli utenti ed i gruppi nella scheda Avanzate", "User DN" => "DN utente", "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." => "Il DN per il client dell'utente con cui deve essere associato, ad esempio uid=agent,dc=example,dc=com. Per l'accesso anonimo, lasciare vuoti i campi DN e Password", @@ -20,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "senza nessun segnaposto, per esempio \"objectClass=posixGroup\".", "Port" => "Porta", "Base User Tree" => "Struttura base dell'utente", +"One User Base DN per line" => "Un DN base utente per riga", "Base Group Tree" => "Struttura base del gruppo", +"One Group Base DN per line" => "Un DN base gruppo per riga", "Group-Member association" => "Associazione gruppo-utente ", "Use TLS" => "Usa TLS", "Do not use it for SSL connections, it will fail." => "Non utilizzare per le connessioni SSL, fallirà.", diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index c7b2a0f91b8..1c93db7ba09 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -1,9 +1,10 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>警告:</b> user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能姓があります。システム管理者にどちらかを無効にするよう問い合わせてください。", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>警告:</b> PHP LDAP モジュールがインストールされていません。バックエンドが正しくどうさしません。システム管理者にインストールするよう問い合わせてください。", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>警告:</b> PHP LDAP モジュールがインストールされていません。バックエンドが正しく動作しません。システム管理者にインストールするよう問い合わせてください。", "Host" => "ホスト", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL通信しない場合には、プロトコル名を省略することができます。そうでない場合には、ldaps:// から始めてください。", "Base DN" => "ベースDN", +"One Base DN per line" => "1行に1つのベースDN", "You can specify Base DN for users and groups in the Advanced tab" => "拡張タブでユーザとグループのベースDNを指定することができます。", "User DN" => "ユーザDN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "クライアントユーザーのDNは、特定のものに結びつけることはしません。 例えば uid=agent,dc=example,dc=com. だと匿名アクセスの場合、DNとパスワードは空のままです。", @@ -20,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "プレースホルダーを利用しないでください。例 \"objectClass=posixGroup\"", "Port" => "ポート", "Base User Tree" => "ベースユーザツリー", +"One User Base DN per line" => "1行に1つのユーザベースDN", "Base Group Tree" => "ベースグループツリー", +"One Group Base DN per line" => "1行に1つのグループベースDN", "Group-Member association" => "グループとメンバーの関連付け", "Use TLS" => "TLSを利用", "Do not use it for SSL connections, it will fail." => "SSL接続に利用しないでください、失敗します。", diff --git a/apps/user_ldap/l10n/ka_GE.php b/apps/user_ldap/l10n/ka_GE.php new file mode 100644 index 00000000000..630d92b73ad --- /dev/null +++ b/apps/user_ldap/l10n/ka_GE.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"Help" => "დახმარება" +); diff --git a/apps/user_ldap/l10n/ko.php b/apps/user_ldap/l10n/ko.php index aa775e42b16..c0d09b5c3c1 100644 --- a/apps/user_ldap/l10n/ko.php +++ b/apps/user_ldap/l10n/ko.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>경고</b>user_ldap 앱과 user_webdavauth 앱은 호환되지 않습니다. 오동작을 일으킬 수 있으므로, 시스템 관리자에게 요청하여, 둘 중 하나를 비활성화 하시기 바랍니다.", "Host" => "호스트", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오.", "Base DN" => "기본 DN", diff --git a/apps/user_ldap/l10n/ku_IQ.php b/apps/user_ldap/l10n/ku_IQ.php new file mode 100644 index 00000000000..1ae808ddd91 --- /dev/null +++ b/apps/user_ldap/l10n/ku_IQ.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"Help" => "یارمەتی" +); diff --git a/apps/user_ldap/l10n/lb.php b/apps/user_ldap/l10n/lb.php new file mode 100644 index 00000000000..2926538b5b0 --- /dev/null +++ b/apps/user_ldap/l10n/lb.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"Help" => "Hëllef" +); diff --git a/apps/user_ldap/l10n/lv.php b/apps/user_ldap/l10n/lv.php new file mode 100644 index 00000000000..52353472e4d --- /dev/null +++ b/apps/user_ldap/l10n/lv.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"Help" => "Palīdzība" +); diff --git a/apps/user_ldap/l10n/mk.php b/apps/user_ldap/l10n/mk.php index 70a62e71765..4c231b516d4 100644 --- a/apps/user_ldap/l10n/mk.php +++ b/apps/user_ldap/l10n/mk.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( "Host" => "Домаќин", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Може да го скокнете протколот освен ако не ви треба SSL. Тогаш ставете ldaps://", -"Password" => "Лозинка" +"Password" => "Лозинка", +"Help" => "Помош" ); diff --git a/apps/user_ldap/l10n/ms_MY.php b/apps/user_ldap/l10n/ms_MY.php new file mode 100644 index 00000000000..077a5390cf8 --- /dev/null +++ b/apps/user_ldap/l10n/ms_MY.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"Help" => "Bantuan" +); diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index 23e9a15c010..27c4407360e 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -1,11 +1,12 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Waarschuwing:</b> De Apps user_ldap en user_webdavauth zijn incompatible. U kunt onverwacht gedrag ervaren. Vraag uw beheerder om een van beide apps de deactiveren.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Waarschuwing:</b> De PHP LDAP module is niet geïnstalleerd, de backend zal dus niet werken. Vraag uw beheerder de module te installeren.", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Waarschuwing:</b> De PHP LDAP module is niet geïnstalleerd, het backend zal niet werken. Vraag uw systeembeheerder om de module te installeren.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Je kunt het protocol weglaten, tenzij je SSL vereist. Start in dat geval met ldaps://", -"Base DN" => "Basis DN", -"You can specify Base DN for users and groups in the Advanced tab" => "Je kunt het standaard DN voor gebruikers en groepen specificeren in het tab Geavanceerd.", -"User DN" => "Gebruikers DN", +"Base DN" => "Base DN", +"One Base DN per line" => "Een Base DN per regel", +"You can specify Base DN for users and groups in the Advanced tab" => "Je kunt het Base DN voor gebruikers en groepen specificeren in het tab Geavanceerd.", +"User DN" => "User DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "De DN van de client gebruiker waarmee de verbinding zal worden gemaakt, bijv. uid=agent,dc=example,dc=com. Voor anonieme toegang laat je het DN en het wachtwoord leeg.", "Password" => "Wachtwoord", "For anonymous access, leave DN and Password empty." => "Voor anonieme toegang, laat de DN en het wachtwoord leeg.", @@ -20,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "zonder een placeholder, bijv. \"objectClass=posixGroup\"", "Port" => "Poort", "Base User Tree" => "Basis Gebruikers Structuur", +"One User Base DN per line" => "Een User Base DN per regel", "Base Group Tree" => "Basis Groupen Structuur", +"One Group Base DN per line" => "Een Group Base DN per regel", "Group-Member association" => "Groepslid associatie", "Use TLS" => "Gebruik TLS", "Do not use it for SSL connections, it will fail." => "Gebruik niet voor SSL connecties, deze mislukken.", diff --git a/apps/user_ldap/l10n/nn_NO.php b/apps/user_ldap/l10n/nn_NO.php new file mode 100644 index 00000000000..54d1f158f65 --- /dev/null +++ b/apps/user_ldap/l10n/nn_NO.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"Help" => "Hjelp" +); diff --git a/apps/user_ldap/l10n/oc.php b/apps/user_ldap/l10n/oc.php new file mode 100644 index 00000000000..0bf27d74f2f --- /dev/null +++ b/apps/user_ldap/l10n/oc.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"Help" => "Ajuda" +); diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index 0a3dea14c94..55110b8a830 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Ostrzeżenie:</b> Aplikacje user_ldap i user_webdavauth nie są kompatybilne. Mogą powodować nieoczekiwane zachowanie. Poproś administratora o wyłączenie jednej z nich.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Ostrzeżenie:</b> Moduł PHP LDAP nie jest zainstalowany i nie będzie działał. Poproś administratora o włączenie go.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Można pominąć protokół, z wyjątkiem wymaganego protokołu SSL. Następnie uruchom z ldaps://", "Base DN" => "Baza DN", diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index 1b21b899a2e..9059f178769 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -1,9 +1,10 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Aviso:</b> 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.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Aviso:</b> O módulo PHP LDAP necessário não está instalado, o backend não irá funcionar. Peça ao seu administrador para o instalar.", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Aviso:</b> O módulo PHP LDAP não está instalado, logo não irá funcionar. Por favor peça ao administrador para o instalar.", "Host" => "Anfitrião", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Pode omitir o protocolo, excepto se necessitar de SSL. Neste caso, comece com ldaps://", "Base DN" => "DN base", +"One Base DN per line" => "Uma base DN por linho", "You can specify Base DN for users and groups in the Advanced tab" => "Pode especificar o ND Base para utilizadores e grupos no separador Avançado", "User DN" => "DN do utilizador", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "O DN to cliente ", @@ -20,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "Sem nenhuma variável. Exemplo: \"objectClass=posixGroup\".", "Port" => "Porto", "Base User Tree" => "Base da árvore de utilizadores.", +"One User Base DN per line" => "Uma base de utilizador DN por linha", "Base Group Tree" => "Base da árvore de grupos.", +"One Group Base DN per line" => "Uma base de grupo DN por linha", "Group-Member association" => "Associar utilizador ao grupo.", "Use TLS" => "Usar TLS", "Do not use it for SSL connections, it will fail." => "Não use para ligações SSL, irá falhar.", diff --git a/apps/user_ldap/l10n/ro.php b/apps/user_ldap/l10n/ro.php index b4d7d4902fe..3ab336cfffb 100644 --- a/apps/user_ldap/l10n/ro.php +++ b/apps/user_ldap/l10n/ro.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Atentie:</b> 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.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Atentie:</b Modulul PHP LDAP care este necesar nu este instalat. Va rugam intrebati administratorul de sistem instalarea acestuia", "Host" => "Gazdă", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Puteți omite protocolul, decât dacă folosiți SSL. Atunci se începe cu ldaps://", "Base DN" => "DN de bază", diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index f41a0b05838..42fba32f43f 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Внимание:</b>Приложения user_ldap и user_webdavauth несовместимы. Вы можете столкнуться с неожиданным поведением. Пожалуйста, обратитесь к системному администратору, чтобы отключить одно из них.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Внимание:</b> Необходимый PHP LDAP модуль не установлен, внутренний интерфейс не будет работать. Пожалуйста, обратитесь к системному администратору, чтобы установить его.", "Host" => "Сервер", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Можно опустить протокол, за исключением того, когда вам требуется SSL. Тогда начните с ldaps :/ /", "Base DN" => "Базовый DN", diff --git a/apps/user_ldap/l10n/ru_RU.php b/apps/user_ldap/l10n/ru_RU.php index 09d7899249a..64ba1176f6e 100644 --- a/apps/user_ldap/l10n/ru_RU.php +++ b/apps/user_ldap/l10n/ru_RU.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Предупреждение:</b> Приложения user_ldap и user_webdavauth несовместимы. Вы можете столкнуться с неожиданным поведением системы. Пожалуйста, обратитесь к системному администратору для отключения одного из них.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Предупреждение:</b> Необходимый PHP LDAP-модуль не установлен, backend не будет работать. Пожалуйста, обратитесь к системному администратору, чтобы установить его.", "Host" => "Хост", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Вы можете пропустить протокол, если Вам не требуется SSL. Затем начните с ldaps://", "Base DN" => "База DN", diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index 1d1fc33a83b..247f2bfdcbd 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Opozorilo:</b> Aplikaciji user_ldap in user_webdavauth nista združljivi. Morda boste opazili nepričakovano obnašanje sistema. Prosimo, prosite vašega skrbnika, da eno od aplikacij onemogoči.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Opozorilo:</b> PHP LDAP modul mora biti nameščen, sicer ta vmesnik ne bo deloval. Prosimo, prosite vašega skrbnika, če ga namesti.", "Host" => "Gostitelj", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokol je lahko izpuščen, če ni posebej zahtevan SSL. V tem primeru se mora naslov začeti z ldaps://", "Base DN" => "Osnovni DN", diff --git a/apps/user_ldap/l10n/sr.php b/apps/user_ldap/l10n/sr.php new file mode 100644 index 00000000000..fff39aadc24 --- /dev/null +++ b/apps/user_ldap/l10n/sr.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"Help" => "Помоћ" +); diff --git a/apps/user_ldap/l10n/sr@latin.php b/apps/user_ldap/l10n/sr@latin.php new file mode 100644 index 00000000000..91503315066 --- /dev/null +++ b/apps/user_ldap/l10n/sr@latin.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"Help" => "Pomoć" +); diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index e8e14af7aca..1e36ff91bab 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Varning:</b> Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dom.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Varning:</b> PHP LDAP-modulen måste vara installerad, serversidan kommer inte att fungera. Be din systemadministratör att installera den.", "Host" => "Server", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du behöver inte ange protokoll förutom om du använder SSL. Starta då med ldaps://", "Base DN" => "Start DN", diff --git a/apps/user_ldap/l10n/uk.php b/apps/user_ldap/l10n/uk.php index f82e9f2a420..d617d939265 100644 --- a/apps/user_ldap/l10n/uk.php +++ b/apps/user_ldap/l10n/uk.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Увага:</b> Застосунки user_ldap та user_webdavauth не сумісні. Ви можете зіткнутися з несподіваною поведінкою. Будь ласка, зверніться до системного адміністратора, щоб відключити одну з них.", -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Увага:</ b> Потрібний модуль PHP LDAP не встановлено, базова програма працювати не буде. Будь ласка, зверніться до системного адміністратора, щоб встановити його.", "Host" => "Хост", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Можна не вказувати протокол, якщо вам не потрібен SSL. Тоді почніть з ldaps://", "Base DN" => "Базовий DN", diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php index bb961d534b7..ed5041eff06 100644 --- a/apps/user_ldap/l10n/zh_CN.php +++ b/apps/user_ldap/l10n/zh_CN.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>警告:</b>应用 user_ldap 和 user_webdavauth 不兼容。您可能遭遇未预料的行为。请垂询您的系统管理员禁用其中一个。", "Host" => "主机", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "可以忽略协议,但如要使用SSL,则需以ldaps://开头", "Base DN" => "Base DN", @@ -31,6 +32,7 @@ "Group Display Name Field" => "组显示名称字段", "The LDAP attribute to use to generate the groups`s ownCloud name." => "用来生成组的ownCloud名称的LDAP属性", "in bytes" => "字节数", +"in seconds. A change empties the cache." => "以秒计。修改将清空缓存。", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "将用户名称留空(默认)。否则指定一个LDAP/AD属性", "Help" => "帮助" ); diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index f888577aedb..422e43fc003 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -114,6 +114,15 @@ abstract class Access { * @return the sanitized DN */ private function sanitizeDN($dn) { + //treating multiple base DNs + if(is_array($dn)) { + $result = array(); + foreach($dn as $singleDN) { + $result[] = $this->sanitizeDN($singleDN); + } + return $result; + } + //OID sometimes gives back DNs with whitespace after the comma a la "uid=foo, cn=bar, dn=..." We need to tackle this! $dn = preg_replace('/([^\\\]),(\s+)/u', '\1,', $dn); @@ -212,9 +221,13 @@ abstract class Access { * returns the internal ownCloud name for the given LDAP DN of the group, false on DN outside of search DN or failure */ public function dn2groupname($dn, $ldapname = null) { - if(mb_strripos($dn, $this->sanitizeDN($this->connection->ldapBaseGroups), 0, 'UTF-8') !== (mb_strlen($dn, 'UTF-8')-mb_strlen($this->sanitizeDN($this->connection->ldapBaseGroups), 'UTF-8'))) { + //To avoid bypassing the base DN settings under certain circumstances + //with the group support, check whether the provided DN matches one of + //the given Bases + if(!$this->isDNPartOfBase($dn, $this->connection->ldapBaseGroups)) { return false; } + return $this->dn2ocname($dn, $ldapname, false); } @@ -227,9 +240,13 @@ abstract class Access { * returns the internal ownCloud name for the given LDAP DN of the user, false on DN outside of search DN or failure */ public function dn2username($dn, $ldapname = null) { - if(mb_strripos($dn, $this->sanitizeDN($this->connection->ldapBaseUsers), 0, 'UTF-8') !== (mb_strlen($dn, 'UTF-8')-mb_strlen($this->sanitizeDN($this->connection->ldapBaseUsers), 'UTF-8'))) { + //To avoid bypassing the base DN settings under certain circumstances + //with the group support, check whether the provided DN matches one of + //the given Bases + if(!$this->isDNPartOfBase($dn, $this->connection->ldapBaseUsers)) { return false; } + return $this->dn2ocname($dn, $ldapname, true); } @@ -521,7 +538,7 @@ abstract class Access { /** * @brief executes an LDAP search * @param $filter the LDAP filter for the search - * @param $base the LDAP subtree that shall be searched + * @param $base an array containing the LDAP subtree(s) that shall be searched * @param $attr optional, when a certain attribute shall be filtered out * @returns array with the search result * @@ -544,18 +561,28 @@ abstract class Access { //check wether paged search should be attempted $pagedSearchOK = $this->initPagedSearch($filter, $base, $attr, $limit, $offset); - $sr = ldap_search($link_resource, $base, $filter, $attr); - if(!$sr) { + $linkResources = array_pad(array(), count($base), $link_resource); + $sr = ldap_search($linkResources, $base, $filter, $attr); + $error = ldap_errno($link_resource); + if(!is_array($sr) || $error > 0) { \OCP\Util::writeLog('user_ldap', 'Error when searching: '.ldap_error($link_resource).' code '.ldap_errno($link_resource), \OCP\Util::ERROR); \OCP\Util::writeLog('user_ldap', 'Attempt for Paging? '.print_r($pagedSearchOK, true), \OCP\Util::ERROR); return array(); } - $findings = ldap_get_entries($link_resource, $sr ); + $findings = array(); + foreach($sr as $key => $res) { + $findings = array_merge($findings, ldap_get_entries($link_resource, $res )); + } if($pagedSearchOK) { \OCP\Util::writeLog('user_ldap', 'Paged search successful', \OCP\Util::INFO); - ldap_control_paged_result_response($link_resource, $sr, $cookie); - \OCP\Util::writeLog('user_ldap', 'Set paged search cookie '.$cookie, \OCP\Util::INFO); - $this->setPagedResultCookie($filter, $limit, $offset, $cookie); + foreach($sr as $key => $res) { + $cookie = null; + if(ldap_control_paged_result_response($link_resource, $res, $cookie)) { + \OCP\Util::writeLog('user_ldap', 'Set paged search cookie', \OCP\Util::INFO); + $this->setPagedResultCookie($base[$key], $filter, $limit, $offset, $cookie); + } + } + //browsing through prior pages to get the cookie for the new one if($skipHandling) { return; @@ -565,7 +592,9 @@ abstract class Access { $this->pagedSearchedSuccessful = true; } } else { - \OCP\Util::writeLog('user_ldap', 'Paged search failed :(', \OCP\Util::INFO); + if(!is_null($limit)) { + \OCP\Util::writeLog('user_ldap', 'Paged search failed :(', \OCP\Util::INFO); + } } // if we're here, probably no connection resource is returned. @@ -792,19 +821,40 @@ abstract class Access { } /** + * @brief checks if the given DN is part of the given base DN(s) + * @param $dn the DN + * @param $bases array containing the allowed base DN or DNs + * @returns Boolean + */ + private function isDNPartOfBase($dn, $bases) { + $bases = $this->sanitizeDN($bases); + foreach($bases as $base) { + $belongsToBase = true; + if(mb_strripos($dn, $base, 0, 'UTF-8') !== (mb_strlen($dn, 'UTF-8')-mb_strlen($base))) { + $belongsToBase = false; + } + if($belongsToBase) { + break; + } + } + return $belongsToBase; + } + + /** * @brief get a cookie for the next LDAP paged search + * @param $base a string with the base DN for the search * @param $filter the search filter to identify the correct search * @param $limit the limit (or 'pageSize'), to identify the correct search well * @param $offset the offset for the new search to identify the correct search really good * @returns string containing the key or empty if none is cached */ - private function getPagedResultCookie($filter, $limit, $offset) { + private function getPagedResultCookie($base, $filter, $limit, $offset) { if($offset == 0) { return ''; } $offset -= $limit; //we work with cache here - $cachekey = 'lc' . dechex(crc32($filter)) . '-' . $limit . '-' . $offset; + $cachekey = 'lc' . crc32($base) . '-' . crc32($filter) . '-' . $limit . '-' . $offset; $cookie = $this->connection->getFromCache($cachekey); if(is_null($cookie)) { $cookie = ''; @@ -814,15 +864,16 @@ abstract class Access { /** * @brief set a cookie for LDAP paged search run + * @param $base a string with the base DN for the search * @param $filter the search filter to identify the correct search * @param $limit the limit (or 'pageSize'), to identify the correct search well * @param $offset the offset for the run search to identify the correct search really good * @param $cookie string containing the cookie returned by ldap_control_paged_result_response * @return void */ - private function setPagedResultCookie($filter, $limit, $offset) { + private function setPagedResultCookie($base, $filter, $limit, $offset, $cookie) { if(!empty($cookie)) { - $cachekey = 'lc' . dechex(crc32($filter)) . '-' . $limit . '-' . $offset; + $cachekey = 'lc' . dechex(crc32($base)) . '-' . dechex(crc32($filter)) . '-' .$limit . '-' . $offset; $cookie = $this->connection->writeToCache($cachekey, $cookie); } } @@ -841,40 +892,47 @@ abstract class Access { /** * @brief prepares a paged search, if possible * @param $filter the LDAP filter for the search - * @param $base the LDAP subtree that shall be searched + * @param $bases an array containing the LDAP subtree(s) that shall be searched * @param $attr optional, when a certain attribute shall be filtered outside * @param $limit * @param $offset * */ - private function initPagedSearch($filter, $base, $attr, $limit, $offset) { + private function initPagedSearch($filter, $bases, $attr, $limit, $offset) { $pagedSearchOK = false; if($this->connection->hasPagedResultSupport && !is_null($limit)) { $offset = intval($offset); //can be null - \OCP\Util::writeLog('user_ldap', 'initializing paged search for Filter'.$filter.' base '.$base.' attr '.print_r($attr, true). ' limit ' .$limit.' offset '.$offset, \OCP\Util::DEBUG); + \OCP\Util::writeLog('user_ldap', 'initializing paged search for Filter'.$filter.' base '.print_r($bases, true).' attr '.print_r($attr, true). ' limit ' .$limit.' offset '.$offset, \OCP\Util::INFO); //get the cookie from the search for the previous search, required by LDAP - $cookie = $this->getPagedResultCookie($filter, $limit, $offset); - if(empty($cookie) && ($offset > 0)) { - //no cookie known, although the offset is not 0. Maybe cache run out. We need to start all over *sigh* (btw, Dear Reader, did you need LDAP paged searching was designed by MSFT?) - $reOffset = ($offset - $limit) < 0 ? 0 : $offset - $limit; - //a bit recursive, $offset of 0 is the exit - \OCP\Util::writeLog('user_ldap', 'Looking for cookie L/O '.$limit.'/'.$reOffset, \OCP\Util::INFO); - $this->search($filter, $base, $attr, $limit, $reOffset, true); - $cookie = $this->getPagedResultCookie($filter, $limit, $offset); - //still no cookie? obviously, the server does not like us. Let's skip paging efforts. - //TODO: remember this, probably does not change in the next request... - if(empty($cookie)) { - $cookie = null; + foreach($bases as $base) { + + $cookie = $this->getPagedResultCookie($base, $filter, $limit, $offset); + if(empty($cookie) && ($offset > 0)) { + //no cookie known, although the offset is not 0. Maybe cache run out. We need to start all over *sigh* (btw, Dear Reader, did you need LDAP paged searching was designed by MSFT?) + $reOffset = ($offset - $limit) < 0 ? 0 : $offset - $limit; + //a bit recursive, $offset of 0 is the exit + \OCP\Util::writeLog('user_ldap', 'Looking for cookie L/O '.$limit.'/'.$reOffset, \OCP\Util::INFO); + $this->search($filter, $base, $attr, $limit, $reOffset, true); + $cookie = $this->getPagedResultCookie($base, $filter, $limit, $offset); + //still no cookie? obviously, the server does not like us. Let's skip paging efforts. + //TODO: remember this, probably does not change in the next request... + if(empty($cookie)) { + $cookie = null; + } } - } - if(!is_null($cookie)) { - if($offset > 0) { - \OCP\Util::writeLog('user_ldap', 'Cookie '.$cookie, \OCP\Util::INFO); + if(!is_null($cookie)) { + if($offset > 0) { + \OCP\Util::writeLog('user_ldap', 'Cookie '.$cookie, \OCP\Util::INFO); + } + $pagedSearchOK = ldap_control_paged_result($this->connection->getConnectionResource(), $limit, false, $cookie); + if(!$pagedSearchOK) { + return false; + } + \OCP\Util::writeLog('user_ldap', 'Ready for a paged search', \OCP\Util::INFO); + } else { + \OCP\Util::writeLog('user_ldap', 'No paged search for us, Cpt., Limit '.$limit.' Offset '.$offset, \OCP\Util::INFO); } - $pagedSearchOK = ldap_control_paged_result($this->connection->getConnectionResource(), $limit, false, $cookie); - \OCP\Util::writeLog('user_ldap', 'Ready for a paged search', \OCP\Util::INFO); - } else { - \OCP\Util::writeLog('user_ldap', 'No paged search for us, Cpt., Limit '.$limit.' Offset '.$offset, \OCP\Util::INFO); + } } diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index b14cdafff89..7046cbbfc78 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -187,9 +187,9 @@ class Connection { $this->config['ldapPort'] = \OCP\Config::getAppValue($this->configID, 'ldap_port', 389); $this->config['ldapAgentName'] = \OCP\Config::getAppValue($this->configID, 'ldap_dn', ''); $this->config['ldapAgentPassword'] = base64_decode(\OCP\Config::getAppValue($this->configID, 'ldap_agent_password', '')); - $this->config['ldapBase'] = \OCP\Config::getAppValue($this->configID, 'ldap_base', ''); - $this->config['ldapBaseUsers'] = \OCP\Config::getAppValue($this->configID, 'ldap_base_users', $this->config['ldapBase']); - $this->config['ldapBaseGroups'] = \OCP\Config::getAppValue($this->configID, 'ldap_base_groups', $this->config['ldapBase']); + $this->config['ldapBase'] = preg_split('/\r\n|\r|\n/', \OCP\Config::getAppValue($this->configID, 'ldap_base', '')); + $this->config['ldapBaseUsers'] = preg_split('/\r\n|\r|\n/', \OCP\Config::getAppValue($this->configID, 'ldap_base_users', $this->config['ldapBase'])); + $this->config['ldapBaseGroups'] = preg_split('/\r\n|\r|\n/', \OCP\Config::getAppValue($this->configID, 'ldap_base_groups', $this->config['ldapBase'])); $this->config['ldapTLS'] = \OCP\Config::getAppValue($this->configID, 'ldap_tls', 0); $this->config['ldapNoCase'] = \OCP\Config::getAppValue($this->configID, 'ldap_nocase', 0); $this->config['turnOffCertCheck'] = \OCP\Config::getAppValue($this->configID, 'ldap_turn_off_cert_check', 0); diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index 8522d2f835c..b24c6e2f025 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -8,12 +8,12 @@ echo '<p class="ldapwarning">'.$l->t('<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them.').'</p>'; } if(!function_exists('ldap_connect')) { - echo '<p class="ldapwarning">'.$l->t('<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it.').'</p>'; + echo '<p class="ldapwarning">'.$l->t('<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it.').'</p>'; } ?> <fieldset id="ldapSettings-1"> <p><label for="ldap_host"><?php echo $l->t('Host');?></label><input type="text" id="ldap_host" name="ldap_host" value="<?php echo $_['ldap_host']; ?>" title="<?php echo $l->t('You can omit the protocol, except you require SSL. Then start with ldaps://');?>"></p> - <p><label for="ldap_base"><?php echo $l->t('Base DN');?></label><input type="text" id="ldap_base" name="ldap_base" value="<?php echo $_['ldap_base']; ?>" title="<?php echo $l->t('You can specify Base DN for users and groups in the Advanced tab');?>" /></p> + <p><label for="ldap_base"><?php echo $l->t('Base DN');?></label><textarea id="ldap_base" name="ldap_base" placeholder="<?php echo $l->t('One Base DN per line');?>" title="<?php echo $l->t('You can specify Base DN for users and groups in the Advanced tab');?>"><?php echo $_['ldap_base']; ?></textarea></p> <p><label for="ldap_dn"><?php echo $l->t('User DN');?></label><input type="text" id="ldap_dn" name="ldap_dn" value="<?php echo $_['ldap_dn']; ?>" title="<?php echo $l->t('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.');?>" /></p> <p><label for="ldap_agent_password"><?php echo $l->t('Password');?></label><input type="password" id="ldap_agent_password" name="ldap_agent_password" value="<?php echo $_['ldap_agent_password']; ?>" title="<?php echo $l->t('For anonymous access, leave DN and Password empty.');?>" /></p> <p><label for="ldap_login_filter"><?php echo $l->t('User Login Filter');?></label><input type="text" id="ldap_login_filter" name="ldap_login_filter" value="<?php echo $_['ldap_login_filter']; ?>" title="<?php echo $l->t('Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action.');?>" /><br /><small><?php echo $l->t('use %%uid placeholder, e.g. "uid=%%uid"');?></small></p> @@ -22,8 +22,8 @@ </fieldset> <fieldset id="ldapSettings-2"> <p><label for="ldap_port"><?php echo $l->t('Port');?></label><input type="text" id="ldap_port" name="ldap_port" value="<?php echo $_['ldap_port']; ?>" /></p> - <p><label for="ldap_base_users"><?php echo $l->t('Base User Tree');?></label><input type="text" id="ldap_base_users" name="ldap_base_users" value="<?php echo $_['ldap_base_users']; ?>" /></p> - <p><label for="ldap_base_groups"><?php echo $l->t('Base Group Tree');?></label><input type="text" id="ldap_base_groups" name="ldap_base_groups" value="<?php echo $_['ldap_base_groups']; ?>" /></p> + <p><label for="ldap_base_users"><?php echo $l->t('Base User Tree');?></label><textarea id="ldap_base_users" name="ldap_base_users" placeholder="<?php echo $l->t('One User Base DN per line');?>" title="<?php echo $l->t('Base User Tree');?>"><?php echo $_['ldap_base_users']; ?></textarea></p> + <p><label for="ldap_base_groups"><?php echo $l->t('Base Group Tree');?></label><textarea id="ldap_base_groups" name="ldap_base_groups" placeholder="<?php echo $l->t('One Group Base DN per line');?>" title="<?php echo $l->t('Base Group Tree');?>"><?php echo $_['ldap_base_groups']; ?></textarea></p> <p><label for="ldap_group_member_assoc_attribute"><?php echo $l->t('Group-Member association');?></label><select id="ldap_group_member_assoc_attribute" name="ldap_group_member_assoc_attribute"><option value="uniqueMember"<?php if (isset($_['ldap_group_member_assoc_attribute']) && ($_['ldap_group_member_assoc_attribute'] == 'uniqueMember')) echo ' selected'; ?>>uniqueMember</option><option value="memberUid"<?php if (isset($_['ldap_group_member_assoc_attribute']) && ($_['ldap_group_member_assoc_attribute'] == 'memberUid')) echo ' selected'; ?>>memberUid</option><option value="member"<?php if (isset($_['ldap_group_member_assoc_attribute']) && ($_['ldap_group_member_assoc_attribute'] == 'member')) echo ' selected'; ?>>member (AD)</option></select></p> <p><label for="ldap_tls"><?php echo $l->t('Use TLS');?></label><input type="checkbox" id="ldap_tls" name="ldap_tls" value="1"<?php if ($_['ldap_tls']) echo ' checked'; ?> title="<?php echo $l->t('Do not use it for SSL connections, it will fail.');?>" /></p> <p><label for="ldap_nocase"><?php echo $l->t('Case insensitve LDAP server (Windows)');?></label> <input type="checkbox" id="ldap_nocase" name="ldap_nocase" value="1"<?php if (isset($_['ldap_nocase']) && ($_['ldap_nocase'])) echo ' checked'; ?>></p> diff --git a/apps/user_webdavauth/l10n/bn_BD.php b/apps/user_webdavauth/l10n/bn_BD.php new file mode 100644 index 00000000000..5366552efae --- /dev/null +++ b/apps/user_webdavauth/l10n/bn_BD.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"URL: http://" => "URL:http://" +); diff --git a/apps/user_webdavauth/l10n/ca.php b/apps/user_webdavauth/l10n/ca.php index 84a6c599e78..7ac540f2130 100644 --- a/apps/user_webdavauth/l10n/ca.php +++ b/apps/user_webdavauth/l10n/ca.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"WebDAV Authentication" => "Autenticació WebDAV", "URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud enviarà les credencials d'usuari a aquesta URL. S'interpretarà http 401 i http 403 com a credencials incorrectes i tots els altres codis com a credencials correctes." +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud 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." ); diff --git a/apps/user_webdavauth/l10n/cs_CZ.php b/apps/user_webdavauth/l10n/cs_CZ.php index 5cb9b4c3704..9bd4c96a2bb 100644 --- a/apps/user_webdavauth/l10n/cs_CZ.php +++ b/apps/user_webdavauth/l10n/cs_CZ.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"WebDAV Authentication" => "Ověření WebDAV", "URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud odešle přihlašovací údaje uživatele na URL a z návratové hodnoty určí stav přihlášení. Http 401 a 403 vyhodnotí jako neplatné údaje a všechny ostatní jako úspěšné přihlášení." +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud 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." ); diff --git a/apps/user_webdavauth/l10n/da.php b/apps/user_webdavauth/l10n/da.php index 7d9ee1d5b29..245a5101341 100644 --- a/apps/user_webdavauth/l10n/da.php +++ b/apps/user_webdavauth/l10n/da.php @@ -1,4 +1,3 @@ <?php $TRANSLATIONS = array( -"URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud vil sende brugeroplysningerne til denne webadresse er fortolker http 401 og http 403 som brugeroplysninger forkerte og alle andre koder som brugeroplysninger korrekte." +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/de.php b/apps/user_webdavauth/l10n/de.php index 8589dc0c4fd..f893bddc71c 100644 --- a/apps/user_webdavauth/l10n/de.php +++ b/apps/user_webdavauth/l10n/de.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"WebDAV Authentication" => "WebDAV Authentifikation", "URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud wird die Logindaten zu dieser URL senden. http 401 und http 403 werden als falsche Logindaten interpretiert und alle anderen Codes als korrekte Logindaten." +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud wird die Benutzer-Anmeldedaten an diese URL schicken. Dieses Plugin prüft die Anmeldedaten auf ihre Gültigkeit und interpretiert die HTTP Statusfehler 401 und 403 als ungültige, sowie alle Anderen als gültige Anmeldedaten." ); diff --git a/apps/user_webdavauth/l10n/de_DE.php b/apps/user_webdavauth/l10n/de_DE.php index 3d73dccfe8e..8f67575fc0f 100644 --- a/apps/user_webdavauth/l10n/de_DE.php +++ b/apps/user_webdavauth/l10n/de_DE.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"WebDAV Authentication" => "WebDAV Authentifizierung", "URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud " +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud sendet die Benutzerdaten an diese URL. Dieses Plugin prüft die Antwort und wird die Statuscodes 401 und 403 als ungültige Daten interpretieren und alle anderen Antworten als gültige Daten." ); diff --git a/apps/user_webdavauth/l10n/el.php b/apps/user_webdavauth/l10n/el.php index bf4c11af64c..951709c4d64 100644 --- a/apps/user_webdavauth/l10n/el.php +++ b/apps/user_webdavauth/l10n/el.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"WebDAV Authentication" => "Αυθεντικοποίηση μέσω WebDAV ", "URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "Το ownCloud θα στείλει τα συνθηματικά χρήστη σε αυτό το URL, μεταφράζοντας τα http 401 και http 403 ως λανθασμένα συνθηματικά και όλους τους άλλους κωδικούς ως σωστά συνθηματικά." +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Το ownCloud θα στείλει τα διαπιστευτήρια χρήστη σε αυτό το URL. Αυτό το plugin ελέγχει την απάντηση και την μετατρέπει σε HTTP κωδικό κατάστασης 401 και 403 για μη έγκυρα, όλες οι υπόλοιπες απαντήσεις είναι έγκυρες." ); diff --git a/apps/user_webdavauth/l10n/es.php b/apps/user_webdavauth/l10n/es.php index 3975b04cbc1..245a5101341 100644 --- a/apps/user_webdavauth/l10n/es.php +++ b/apps/user_webdavauth/l10n/es.php @@ -1,4 +1,3 @@ <?php $TRANSLATIONS = array( -"URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud enviará al usuario las interpretaciones 401 y 403 a esta URL como incorrectas y todas las otras credenciales como correctas" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/es_AR.php b/apps/user_webdavauth/l10n/es_AR.php index 0606d3a8eb4..245a5101341 100644 --- a/apps/user_webdavauth/l10n/es_AR.php +++ b/apps/user_webdavauth/l10n/es_AR.php @@ -1,4 +1,3 @@ <?php $TRANSLATIONS = array( -"URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud enviará las credenciales a esta dirección, si son interpretadas como http 401 o http 403 las credenciales son erroneas; todos los otros códigos indican que las credenciales son correctas." +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/eu.php b/apps/user_webdavauth/l10n/eu.php index bbda9f10ba0..245a5101341 100644 --- a/apps/user_webdavauth/l10n/eu.php +++ b/apps/user_webdavauth/l10n/eu.php @@ -1,4 +1,3 @@ <?php $TRANSLATIONS = array( -"URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud erabiltzailearen kredentzialak helbide honetara bidaliko ditu. http 401 eta http 403 kredentzial ez zuzenak bezala hartuko dira eta beste kode guztiak kredentzial zuzentzat hartuko dira." +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/gl.php b/apps/user_webdavauth/l10n/gl.php index a5b7e56771f..245a5101341 100644 --- a/apps/user_webdavauth/l10n/gl.php +++ b/apps/user_webdavauth/l10n/gl.php @@ -1,3 +1,3 @@ <?php $TRANSLATIONS = array( -"WebDAV URL: http://" => "URL WebDAV: http://" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/hu_HU.php b/apps/user_webdavauth/l10n/hu_HU.php index 75a23ed7be4..245a5101341 100644 --- a/apps/user_webdavauth/l10n/hu_HU.php +++ b/apps/user_webdavauth/l10n/hu_HU.php @@ -1,4 +1,3 @@ <?php $TRANSLATIONS = array( -"URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "Az ownCloud rendszer erre a címre fogja elküldeni a felhasználók bejelentkezési adatait. Ha 401-es vagy 403-as http kódot kap vissza, azt sikertelen azonosításként fogja értelmezni, minden más kódot sikeresnek fog tekinteni." +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/is.php b/apps/user_webdavauth/l10n/is.php index 13d9a1fe8f4..8fe0d974b32 100644 --- a/apps/user_webdavauth/l10n/is.php +++ b/apps/user_webdavauth/l10n/is.php @@ -1,4 +1,3 @@ <?php $TRANSLATIONS = array( -"URL: http://" => "Vefslóð: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud mun senda auðkenni notenda á þessa vefslóð og túkla svörin http 401 og http 403 sem rangar auðkenniupplýsingar og öll önnur svör sem rétt." +"URL: http://" => "Vefslóð: http://" ); diff --git a/apps/user_webdavauth/l10n/it.php b/apps/user_webdavauth/l10n/it.php index b0abf2f2082..a7cd6e8e4b4 100644 --- a/apps/user_webdavauth/l10n/it.php +++ b/apps/user_webdavauth/l10n/it.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"WebDAV Authentication" => "Autenticazione WebDAV", "URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud invierà le credenziali dell'utente a questo URL. Interpreta i codici http 401 e http 403 come credenziali errate e tutti gli altri codici come credenziali corrette." +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud 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." ); diff --git a/apps/user_webdavauth/l10n/ja_JP.php b/apps/user_webdavauth/l10n/ja_JP.php index 8643805ffcc..1cd14a03c72 100644 --- a/apps/user_webdavauth/l10n/ja_JP.php +++ b/apps/user_webdavauth/l10n/ja_JP.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"WebDAV Authentication" => "WebDAV 認証", "URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloudのこのURLへのユーザ資格情報の送信は、資格情報が間違っている場合はHTTP401もしくは403を返し、正しい場合は全てのコードを返します。" +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloudはこのURLにユーザ資格情報を送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" ); diff --git a/apps/user_webdavauth/l10n/ko.php b/apps/user_webdavauth/l10n/ko.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/ko.php +++ b/apps/user_webdavauth/l10n/ko.php @@ -1,3 +1,3 @@ <?php $TRANSLATIONS = array( -"WebDAV URL: http://" => "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/nl.php b/apps/user_webdavauth/l10n/nl.php index 687442fb665..7d1bb33923e 100644 --- a/apps/user_webdavauth/l10n/nl.php +++ b/apps/user_webdavauth/l10n/nl.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"WebDAV Authentication" => "WebDAV authenticatie", "URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud zal de inloggegevens naar deze URL als geïnterpreteerde http 401 en http 403 als de inloggegevens onjuist zijn. Andere codes als de inloggegevens correct zijn." +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud 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." ); diff --git a/apps/user_webdavauth/l10n/pl.php b/apps/user_webdavauth/l10n/pl.php index 245a5101341..4887e935316 100644 --- a/apps/user_webdavauth/l10n/pl.php +++ b/apps/user_webdavauth/l10n/pl.php @@ -1,3 +1,5 @@ <?php $TRANSLATIONS = array( -"URL: http://" => "URL: http://" +"WebDAV Authentication" => "Uwierzytelnienie WebDAV", +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud 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." ); diff --git a/apps/user_webdavauth/l10n/pt_PT.php b/apps/user_webdavauth/l10n/pt_PT.php index e8bfcfda81e..d7e87b5c8d1 100644 --- a/apps/user_webdavauth/l10n/pt_PT.php +++ b/apps/user_webdavauth/l10n/pt_PT.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"WebDAV Authentication" => "Autenticação WebDAV", "URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "O ownCloud vai enviar as credenciais para este URL. Todos os códigos http 401 e 403 serão interpretados como credenciais inválidas, todos os restantes códigos http serão interpretados como credenciais correctas." +"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." => "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." ); diff --git a/apps/user_webdavauth/l10n/ro.php b/apps/user_webdavauth/l10n/ro.php index 17157da044d..245a5101341 100644 --- a/apps/user_webdavauth/l10n/ro.php +++ b/apps/user_webdavauth/l10n/ro.php @@ -1,4 +1,3 @@ <?php $TRANSLATIONS = array( -"URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "owncloud va trimite acreditatile de utilizator pentru a interpreta aceasta pagina. Http 401 si Http 403 are acreditarile si orice alt cod gresite ca acreditarile corecte" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/sl.php b/apps/user_webdavauth/l10n/sl.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/sl.php +++ b/apps/user_webdavauth/l10n/sl.php @@ -1,3 +1,3 @@ <?php $TRANSLATIONS = array( -"WebDAV URL: http://" => "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/sv.php b/apps/user_webdavauth/l10n/sv.php index b7a7e4ea2d9..245a5101341 100644 --- a/apps/user_webdavauth/l10n/sv.php +++ b/apps/user_webdavauth/l10n/sv.php @@ -1,4 +1,3 @@ <?php $TRANSLATIONS = array( -"URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud kommer att skicka inloggningsuppgifterna till denna URL och tolkar http 401 och http 403 som fel och alla andra koder som korrekt." +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/uk.php b/apps/user_webdavauth/l10n/uk.php index 57aa90684ae..245a5101341 100644 --- a/apps/user_webdavauth/l10n/uk.php +++ b/apps/user_webdavauth/l10n/uk.php @@ -1,4 +1,3 @@ <?php $TRANSLATIONS = array( -"URL: http://" => "URL: http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud відправить облікові дані на цей URL та буде інтерпретувати http 401 і http 403, як невірні облікові дані, а всі інші коди, як вірні." +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/templates/settings.php b/apps/user_webdavauth/templates/settings.php index 62ed45fd278..880b77ac959 100755 --- a/apps/user_webdavauth/templates/settings.php +++ b/apps/user_webdavauth/templates/settings.php @@ -1,8 +1,8 @@ <form id="webdavauth" action="#" method="post"> <fieldset class="personalblock"> - <legend><strong>WebDAV Authentication</strong></legend> + <legend><strong><?php echo $l->t('WebDAV Authentication');?></strong></legend> <p><label for="webdav_url"><?php echo $l->t('URL: http://');?><input type="text" id="webdav_url" name="webdav_url" value="<?php echo $_['webdav_url']; ?>"></label> <input type="submit" value="Save" /> - <br /><?php echo $l->t('ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct.'); ?> + <br /><?php echo $l->t('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.'); ?> </fieldset> </form> diff --git a/apps/user_webdavauth/user_webdavauth.php b/apps/user_webdavauth/user_webdavauth.php index 839196c114c..1459781a3b4 100755 --- a/apps/user_webdavauth/user_webdavauth.php +++ b/apps/user_webdavauth/user_webdavauth.php @@ -65,7 +65,7 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend { } /* - * we don´t know if a user exists without the password. so we have to return false all the time + * we don´t know if a user exists without the password. so we have to return true all the time */ public function userExists( $uid ){ return true; diff --git a/config/config.sample.php b/config/config.sample.php index 78dfe17ea79..dafb536fa6f 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -36,12 +36,6 @@ $CONFIG = array( /* The automatic protocol detection of ownCloud can fail in certain reverse proxy situations. This option allows to manually override the protocol detection. For example "https" */ "overwriteprotocol" => "", -/* Enhanced auth forces users to enter their password again when performing potential sensitive actions like creating or deleting users */ -"enhancedauth" => true, - -/* Time in seconds how long an user is authenticated without entering his password again before performing sensitive actions like creating or deleting users etc...*/ -"enhancedauthtime" => 15 * 60, - /* A proxy to use to connect to the internet. For example "myproxy.org:88" */ "proxy" => "", @@ -78,6 +72,9 @@ $CONFIG = array( /* Host to use for sending mail, depends on mail_smtpmode if this is used */ "mail_smtphost" => "127.0.0.1", +/* Port to use for sending mail, depends on mail_smtpmode if this is used */ +"mail_smtpport" => 25, + /* authentication needed to send mail, depends on mail_smtpmode if this is used * (false = disable authentication) */ @@ -112,6 +109,9 @@ $CONFIG = array( */ // "datadirectory" => "", +/* Enable maintenance mode to disable ownCloud */ +"maintenance" => false, + "apps_paths" => array( /* Set an array of path for your apps directories @@ -123,12 +123,12 @@ $CONFIG = array( 'path'=> '/var/www/owncloud/apps', 'url' => '/apps', 'writable' => true, - ), - ), - 'user_backends'=>array( - array( - 'class'=>'OC_User_IMAP', - 'arguments'=>array('{imap.gmail.com:993/imap/ssl}INBOX') - ) - ) + ), +), +'user_backends'=>array( + array( + 'class'=>'OC_User_IMAP', + 'arguments'=>array('{imap.gmail.com:993/imap/ssl}INBOX') + ) +) ); diff --git a/core/ajax/update.php b/core/ajax/update.php new file mode 100644 index 00000000000..20ab045c892 --- /dev/null +++ b/core/ajax/update.php @@ -0,0 +1,67 @@ +<?php +set_time_limit(0); +$RUNTIME_NOAPPS = true; +require_once '../../lib/base.php'; + +if (OC::checkUpgrade(false)) { + $updateEventSource = new OC_EventSource(); + $watcher = new UpdateWatcher($updateEventSource); + OC_Hook::connect('update', 'success', $watcher, 'success'); + OC_Hook::connect('update', 'error', $watcher, 'error'); + OC_Hook::connect('update', 'error', $watcher, 'failure'); + $watcher->success('Turned on maintenance mode'); + try { + $result = OC_DB::updateDbFromStructure(OC::$SERVERROOT.'/db_structure.xml'); + $watcher->success('Updated database'); + } catch (Exception $exception) { + $watcher->failure($exception->getMessage()); + } + $minimizerCSS = new OC_Minimizer_CSS(); + $minimizerCSS->clearCache(); + $minimizerJS = new OC_Minimizer_JS(); + $minimizerJS->clearCache(); + OC_Config::setValue('version', implode('.', OC_Util::getVersion())); + OC_App::checkAppsRequirements(); + // load all apps to also upgrade enabled apps + OC_App::loadApps(); + OC_Config::setValue('maintenance', false); + $watcher->success('Turned off maintenance mode'); + $watcher->done(); +} + +class UpdateWatcher { + /** + * @var \OC_EventSource $eventSource; + */ + private $eventSource; + + public function __construct($eventSource) { + $this->eventSource = $eventSource; + } + + public function success($message) { + OC_Util::obEnd(); + $this->eventSource->send('success', $message); + ob_start(); + } + + public function error($message) { + OC_Util::obEnd(); + $this->eventSource->send('error', $message); + ob_start(); + } + + public function failure($message) { + OC_Util::obEnd(); + $this->eventSource->send('failure', $message); + $this->eventSource->close(); + die(); + } + + public function done() { + OC_Util::obEnd(); + $this->eventSource->send('done', ''); + $this->eventSource->close(); + } + +}
\ No newline at end of file diff --git a/core/css/multiselect.css b/core/css/multiselect.css index 99f0e039334..31c8ef88eb9 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -5,15 +5,25 @@ ul.multiselectoptions { background-color:#fff; border:1px solid #ddd; - border-bottom-left-radius:.5em; - border-bottom-right-radius:.5em; border-top:none; box-shadow:0 1px 1px #ddd; padding-top:.5em; position:absolute; + max-height: 20em; + overflow-y: auto; z-index:49; } + ul.multiselectoptions.down { + border-bottom-left-radius:.5em; + border-bottom-right-radius:.5em; + } + + ul.multiselectoptions.up { + border-top-left-radius:.5em; + border-top-right-radius:.5em; + } + ul.multiselectoptions>li { overflow:hidden; white-space:nowrap; @@ -30,11 +40,20 @@ div.multiselect.active { background-color:#fff; + position:relative; + z-index:50; + } + + div.multiselect.up { + border-top:0 none; + border-top-left-radius:0; + border-top-right-radius:0; + } + + div.multiselect.down { border-bottom:none; border-bottom-left-radius:0; border-bottom-right-radius:0; - position:relative; - z-index:50; } div.multiselect>span:first-child { diff --git a/core/css/styles.css b/core/css/styles.css index d635916b5ae..7771fd52b9e 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -34,7 +34,7 @@ filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endC /* INPUTS */ input[type="text"], input[type="password"] { cursor:text; } -input:not([type="checkbox"]), textarea, select, button, .button, #quota, div.jp-progress, .pager li a { +input, textarea, select, button, .button, #quota, div.jp-progress, .pager li a { width:10em; margin:.3em; padding:.6em .5em .4em; font-size:1em; font-family:Arial, Verdana, sans-serif; background:#fff; color:#333; border:1px solid #ddd; outline:none; @@ -56,7 +56,7 @@ input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:# /* BUTTONS */ input[type="submit"], input[type="button"], button, .button, #quota, div.jp-progress, select, .pager li a { width:auto; padding:.4em; - background-color:rgba(230,230,230,.5); font-weight:bold; color:#555; text-shadow:#fff 0 1px 0; border:1px solid rgba(180,180,180,.5); cursor:pointer; + background-color:rgba(230,230,230,.5); font-weight:bold; color:#555; text-shadow:#fff 0 1px 0; border:1px solid #bbb; border:1px solid rgba(180,180,180,.5); cursor:pointer; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } @@ -94,7 +94,8 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b /* CONTENT ------------------------------------------------------------------ */ #controls { padding:0 0.5em; width:100%; top:3.5em; height:2.8em; margin:0; background:#f7f7f7; border-bottom:1px solid #eee; position:fixed; z-index:50; -moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000; } #controls .button { display:inline-block; } -#content { top:3.5em; left:12.5em; position:absolute; } +#content { height: 100%; width: 100%; position: relative; } +#content-wrapper { height: 100%; width: 100%; padding-top: 3.5em; padding-left: 12.5em; box-sizing: border-box; -moz-box-sizing: border-box; position: absolute;} #leftcontent, .leftcontent { position:fixed; overflow:auto; top:6.4em; width:20em; background:#f8f8f8; border-right:1px solid #ddd; } #leftcontent li, .leftcontent li { background:#f8f8f8; padding:.5em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 200ms; -moz-transition:background-color 200ms; -o-transition:background-color 200ms; transition:background-color 200ms; } #leftcontent li:hover, #leftcontent li:active, #leftcontent li.active, .leftcontent li:hover, .leftcontent li:active, .leftcontent li.active { background:#eee; } @@ -214,7 +215,8 @@ div.jp-play-bar, div.jp-seek-bar { padding:0; } .pager { list-style:none; float:right; display:inline; margin:.7em 13em 0 0; } .pager li { display:inline-block; } -li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; color:#FF3B3B; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; } +li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; cursor:default; } +.error { color:#FF3B3B; } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { overflow:hidden; text-overflow:ellipsis; } .hint { background-image:url('../img/actions/info.png'); background-repeat:no-repeat; color:#777777; padding-left:25px; background-position:0 0.3em;} .separator { display:inline; border-left:1px solid #d3d3d3; border-right:1px solid #fff; height:10px; width:0px; margin:4px; } diff --git a/core/js/config.js b/core/js/config.js index f7a29276f7d..563df4e6632 100644 --- a/core/js/config.js +++ b/core/js/config.js @@ -50,6 +50,6 @@ OC.AppConfig={ }, deleteApp:function(app){ OC.AppConfig.postCall('deleteApp',{app:app}); - }, + } }; //TODO OC.Preferences diff --git a/core/js/js.js b/core/js/js.js index 7d967321d93..23ace89f4e3 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -3,14 +3,15 @@ * Add * define('DEBUG', true); * To the end of config/config.php to enable debug mode. + * The undefined checks fix the broken ie8 console */ -if (oc_debug !== true) { +if (oc_debug !== true || typeof console === "undefined" || typeof console.log === "undefined") { if (!window.console) { window.console = {}; } var methods = ['log', 'debug', 'warn', 'info', 'error', 'assert']; for (var i = 0; i < methods.length; i++) { - console[methods[i]] = function () { }; + console[methods[i]] = function () { }; } } @@ -20,7 +21,6 @@ if (oc_debug !== true) { * @param text the string to translate * @return string */ - function t(app,text, vars){ if( !( t.cache[app] )){ $.ajax(OC.filePath('core','ajax','translations.php'),{ @@ -343,8 +343,15 @@ if(typeof localStorage !=='undefined' && localStorage !== null){ return localStorage.setItem(OC.localStorage.namespace+name,JSON.stringify(item)); }, getItem:function(name){ - if(localStorage.getItem(OC.localStorage.namespace+name)===null){return null;} - return JSON.parse(localStorage.getItem(OC.localStorage.namespace+name)); + var item = localStorage.getItem(OC.localStorage.namespace+name); + if(item===null) { + return null; + } else if (typeof JSON === 'undefined') { + //fallback to jquery for IE6/7/8 + return $.parseJSON(item); + } else { + return JSON.parse(item); + } } }; }else{ @@ -497,6 +504,7 @@ function fillHeight(selector) { if(selector.outerHeight() > selector.height()){ selector.css('height', height-(selector.outerHeight()-selector.height()) + 'px'); } + console.warn("This function is deprecated! Use CSS instead"); } /** @@ -512,17 +520,11 @@ function fillWindow(selector) { if(selector.outerWidth() > selector.width()){ selector.css('width', width-(selector.outerWidth()-selector.width()) + 'px'); } + console.warn("This function is deprecated! Use CSS instead"); } $(document).ready(function(){ - $(window).resize(function () { - fillHeight($('#leftcontent')); - fillWindow($('#content')); - fillWindow($('#rightcontent')); - }); - $(window).trigger('resize'); - if(!SVGSupport()){ //replace all svg images with png images for browser that dont support svg replaceSVG(); }else{ @@ -615,7 +617,7 @@ $(document).ready(function(){ $('.jp-controls .jp-previous').tipsy({gravity:'nw', fade:true, live:true}); $('.jp-controls .jp-next').tipsy({gravity:'n', fade:true, live:true}); $('.password .action').tipsy({gravity:'se', fade:true, live:true}); - $('#upload a').tipsy({gravity:'w', fade:true}); + $('#upload').tipsy({gravity:'w', fade:true}); $('.selectedActions a').tipsy({gravity:'s', fade:true, live:true}); $('a.delete').tipsy({gravity: 'e', fade:true, live:true}); $('a.action').tipsy({gravity:'s', fade:true, live:true}); diff --git a/core/js/multiselect.js b/core/js/multiselect.js index c4fd74b0475..623c6e0f7e1 100644 --- a/core/js/multiselect.js +++ b/core/js/multiselect.js @@ -1,20 +1,44 @@ +/** + * @param 'createCallback' A function to be called when a new entry is created. Two arguments are supplied to this function: + * The select element used and the value of the option. If the function returns false addition will be cancelled. If it returns + * anything else it will be used as the value of the newly added option. + * @param 'createText' The placeholder text for the create action. + * @param 'title' The title to show if no options are selected. + * @param 'checked' An array containing values for options that should be checked. Any options which are already selected will be added to this array. + * @param 'labels' The corresponding labels to show for the checked items. + * @param 'oncheck' Callback function which will be called when a checkbox/radiobutton is selected. If the function returns false the input will be unchecked. + * @param 'onuncheck' @see 'oncheck'. + * @param 'singleSelect' If true radiobuttons will be used instead of checkboxes. + */ (function( $ ){ var multiSelectId=-1; - $.fn.multiSelect=function(options){ + $.fn.multiSelect=function(options) { multiSelectId++; var settings = { 'createCallback':false, 'createText':false, + 'singleSelect':false, + 'selectedFirst':false, + 'sort':true, 'title':this.attr('title'), 'checked':[], + 'labels':[], 'oncheck':false, 'onuncheck':false, 'minWidth': 'default;', }; + $(this).attr('data-msid', multiSelectId); $.extend(settings,options); - $.each(this.children(),function(i,option){ - if($(option).attr('selected') && settings.checked.indexOf($(option).val())==-1){ + $.each(this.children(),function(i,option) { + // If the option is selected, but not in the checked array, add it. + if($(option).attr('selected') && settings.checked.indexOf($(option).val()) === -1) { settings.checked.push($(option).val()); + settings.labels.push($(option).text().trim()); + } + // If the option is in the checked array but not selected, select it. + else if(settings.checked.indexOf($(option).val()) !== -1 && !$(option).attr('selected')) { + $(option).attr('selected', 'selected'); + settings.labels.push($(option).text().trim()); } }); var button=$('<div class="multiselect button"><span>'+settings.title+'</span><span>▾</span></div>'); @@ -24,24 +48,36 @@ button.selectedItems=[]; this.hide(); this.before(span); - if(settings.minWidth=='default'){ + if(settings.minWidth=='default') { settings.minWidth=button.width(); } button.css('min-width',settings.minWidth); settings.minOuterWidth=button.outerWidth()-2; button.data('settings',settings); - if(settings.checked.length>0){ - button.children('span').first().text(settings.checked.join(', ')); + + if(!settings.singleSelect && settings.checked.length>0) { + button.children('span').first().text(settings.labels.join(', ')); + } else if(settings.singleSelect) { + button.children('span').first().text(this.find(':selected').text()); } + var self = this; + self.menuDirection = 'down'; button.click(function(event){ var button=$(this); - if(button.parent().children('ul').length>0){ - button.parent().children('ul').slideUp(400,function(){ - button.parent().children('ul').remove(); - button.removeClass('active'); - }); + if(button.parent().children('ul').length>0) { + if(self.menuDirection === 'down') { + button.parent().children('ul').slideUp(400,function() { + button.parent().children('ul').remove(); + button.removeClass('active down'); + }); + } else { + button.parent().children('ul').fadeOut(400,function() { + button.parent().children('ul').remove(); + button.removeClass('active up'); + }); + } return; } var lists=$('ul.multiselectoptions'); @@ -54,49 +90,69 @@ event.stopPropagation(); var options=$(this).parent().next().children(); var list=$('<ul class="multiselectoptions"/>').hide().appendTo($(this).parent()); - function createItem(element,checked){ + var inputType = settings.singleSelect ? 'radio' : 'checkbox'; + function createItem(element, checked){ element=$(element); var item=element.val(); var id='ms'+multiSelectId+'-option-'+item; - var input=$('<input type="checkbox"/>'); + var input=$('<input type="' + inputType + '"/>'); input.attr('id',id); + if(settings.singleSelect) { + input.attr('name', 'ms'+multiSelectId+'-option'); + } var label=$('<label/>'); label.attr('for',id); - label.text(item); - if(settings.checked.indexOf(item)!=-1 || checked){ - input.attr('checked',true); + label.text(element.text() || item); + if(settings.checked.indexOf(item)!=-1 || checked) { + input.attr('checked', true); } if(checked){ - settings.checked.push(item); + if(settings.singleSelect) { + settings.checked = [item]; + settings.labels = [item]; + } else { + settings.checked.push(item); + settings.labels.push(item); + } } input.change(function(){ - var groupname=$(this).next().text(); - if($(this).is(':checked')){ + var value = $(this).attr('id').substring(String('ms'+multiSelectId+'-option').length+1); + var label = $(this).next().text().trim(); + if($(this).is(':checked')) { + if(settings.singleSelect) { + settings.checked = []; + settings.labels = []; + $.each(self.find('option'), function() { + $(this).removeAttr('selected'); + }); + } element.attr('selected','selected'); - if(settings.oncheck){ - if(settings.oncheck(groupname)===false){ + if(typeof settings.oncheck === 'function') { + if(settings.oncheck(value)===false) { $(this).attr('checked', false); return; } } - settings.checked.push(groupname); - }else{ - var index=settings.checked.indexOf(groupname); + settings.checked.push(value); + settings.labels.push(label); + $(this).parent().addClass('checked'); + } else { + var index=settings.checked.indexOf(value); element.attr('selected',null); - if(settings.onuncheck){ - if(settings.onuncheck(groupname)===false){ + if(typeof settings.onuncheck === 'function') { + if(settings.onuncheck(value)===false) { $(this).attr('checked',true); return; } } + $(this).parent().removeClass('checked'); settings.checked.splice(index,1); + settings.labels.splice(index,1); } var oldWidth=button.width(); - if(settings.checked.length>0){ - button.children('span').first().text(settings.checked.join(', ')); - }else{ - button.children('span').first().text(settings.title); - } + button.children('span').first().text(settings.labels.length > 0 + ? settings.labels.join(', ') + : settings.title); var newOuterWidth=Math.max((button.outerWidth()-2),settings.minOuterWidth)+'px'; var newWidth=Math.max(button.width(),settings.minWidth); var pos=button.position(); @@ -110,6 +166,9 @@ }); var li=$('<li></li>'); li.append(input).append(label); + if(input.is(':checked')) { + li.addClass('checked'); + } return li; } $.each(options,function(index,item){ @@ -117,13 +176,13 @@ }); button.parent().data('preventHide',false); if(settings.createText){ - var li=$('<li>+ <em>'+settings.createText+'<em></li>'); + var li=$('<li class="creator">+ <em>'+settings.createText+'<em></li>'); li.click(function(event){ li.empty(); var input=$('<input class="new">'); li.append(input); input.focus(); - input.css('width',button.width()); + input.css('width',button.innerWidth()); button.parent().data('preventHide',true); input.keypress(function(event) { if(event.keyCode == 13) { @@ -132,7 +191,7 @@ var value = $(this).val(); var exists = false; $.each(options,function(index, item) { - if ($(item).val() == value) { + if ($(item).val() == value || $(item).text() == value) { exists = true; return false; } @@ -141,22 +200,39 @@ return false; } var li=$(this).parent(); + var val = $(this).val() + var select=button.parent().next(); + if(typeof settings.createCallback === 'function') { + var response = settings.createCallback(select, val); + if(response === false) { + return false; + } else if(typeof response !== 'undefined') { + val = response; + } + } + if(settings.singleSelect) { + $.each(select.find('option:selected'), function() { + $(this).removeAttr('selected'); + }); + } $(this).remove(); li.text('+ '+settings.createText); li.before(createItem(this)); - var select=button.parent().next(); var option=$('<option selected="selected"/>'); - option.attr('value',value); - option.text($(this).val()); + option.text($(this).val()).val(val).attr('selected', 'selected'); select.append(option); - li.prev().children('input').trigger('click'); + li.prev().children('input').prop('checked', true).trigger('change'); button.parent().data('preventHide',false); - if(settings.createCallback){ - settings.createCallback($(this).val()); + button.children('span').first().text(settings.labels.length > 0 + ? settings.labels.join(', ') + : settings.title); + if(self.menuDirection === 'up') { + var list = li.parent(); + list.css('top', list.position().top-li.outerHeight()); } } }); - input.blur(function(){ + input.blur(function() { event.preventDefault(); event.stopPropagation(); $(this).remove(); @@ -168,21 +244,72 @@ }); list.append(li); } + + var doSort = function(list, selector) { + var rows = list.find('li'+selector).get(); + + if(settings.sort) { + rows.sort(function(a, b) { + return $(a).text().toUpperCase().localeCompare($(b).text().toUpperCase()); + }); + } + + $.each(rows, function(index, row) { + list.append(row); + }); + }; + if(settings.sort && settings.selectedFirst) { + doSort(list, '.checked'); + doSort(list, ':not(.checked)'); + } else if(settings.sort && !settings.selectedFirst) { + doSort(list, ''); + } + list.append(list.find('li.creator')); var pos=button.position(); - list.css('top',pos.top+button.outerHeight()-5); - list.css('left',pos.left+3); - list.css('width',(button.outerWidth()-2)+'px'); - list.slideDown(); - list.click(function(event){ + if($(document).height() > (button.offset().top+button.outerHeight() + list.children().length * button.height()) + || $(document).height()/2 > pos.top + ) { + list.css({ + top:pos.top+button.outerHeight()-5, + left:pos.left+3, + width:(button.outerWidth()-2)+'px', + 'max-height':($(document).height()-(button.offset().top+button.outerHeight()+10))+'px' + }); + list.addClass('down'); + button.addClass('down'); + list.slideDown(); + } else { + list.css('max-height', $(document).height()-($(document).height()-(pos.top)+50)+'px'); + list.css({ + top:pos.top - list.height(), + left:pos.left+3, + width:(button.outerWidth()-2)+'px' + + }); + list.detach().insertBefore($(this)); + list.addClass('up'); + button.addClass('up'); + list.fadeIn(); + self.menuDirection = 'up'; + } + list.click(function(event) { event.stopPropagation(); }); }); - $(window).click(function(){ - if(!button.parent().data('preventHide')){ - button.parent().children('ul').slideUp(400,function(){ - button.parent().children('ul').remove(); - button.removeClass('active'); - }); + $(window).click(function() { + if(!button.parent().data('preventHide')) { + // How can I save the effect in a var? + if(self.menuDirection === 'down') { + button.parent().children('ul').slideUp(400,function() { + button.parent().children('ul').remove(); + button.removeClass('active down'); + }); + } else { + button.parent().children('ul').fadeOut(400,function() { + button.parent().children('ul').remove(); + button.removeClass('active up'); + }); + } } }); diff --git a/core/l10n/ar.php b/core/l10n/ar.php index d33de577b3d..38450f8d54f 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -98,10 +98,6 @@ "Lost your password?" => "هل نسيت كلمة السر؟", "remember" => "تذكر", "Log in" => "أدخل", -"You are logged out." => "تم الخروج بنجاح.", "prev" => "السابق", -"next" => "التالي", -"Security Warning!" => "تحذير أمان!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "الرجاء التحقق من كلمة السر. <br/>من الممكن أحياناً أن نطلب منك إعادة إدخال كلمة السر مرة أخرى.", -"Verify" => "تحقيق" +"next" => "التالي" ); diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 0033324cb1d..a7cba523be2 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -1,62 +1,19 @@ <?php $TRANSLATIONS = array( -"This category already exists: " => "Категорията вече съществува:", -"No categories selected for deletion." => "Няма избрани категории за изтриване", "Settings" => "Настройки", -"Cancel" => "Отказ", -"No" => "Не", -"Yes" => "Да", -"Ok" => "Добре", -"Error" => "Грешка", +"seconds ago" => "преди секунди", +"1 minute ago" => "преди 1 минута", +"1 hour ago" => "преди 1 час", +"today" => "днес", +"yesterday" => "вчера", +"last month" => "последният месец", +"last year" => "последната година", +"years ago" => "последните години", "Password" => "Парола", -"You will receive a link to reset your password via Email." => "Ще получите връзка за нулиране на паролата Ви.", -"Username" => "Потребител", -"Request reset" => "Нулиране на заявка", -"Your password was reset" => "Вашата парола е нулирана", -"New password" => "Нова парола", -"Reset password" => "Нулиране на парола", "Personal" => "Лични", "Users" => "Потребители", -"Apps" => "Програми", +"Apps" => "Приложения", "Admin" => "Админ", "Help" => "Помощ", -"Access forbidden" => "Достъпът е забранен", -"Cloud not found" => "облакът не намерен", -"Edit categories" => "Редактиране на категориите", "Add" => "Добавяне", -"Create an <strong>admin account</strong>" => "Създаване на <strong>админ профил</strong>", -"Advanced" => "Разширено", -"Data folder" => "Директория за данни", -"Configure the database" => "Конфигуриране на базата", -"will be used" => "ще се ползва", -"Database user" => "Потребител за базата", -"Database password" => "Парола за базата", -"Database name" => "Име на базата", -"Database host" => "Хост за базата", -"Finish setup" => "Завършване на настройките", -"Sunday" => "Неделя", -"Monday" => "Понеделник", -"Tuesday" => "Вторник", -"Wednesday" => "Сряда", -"Thursday" => "Четвъртък", -"Friday" => "Петък", -"Saturday" => "Събота", -"January" => "Януари", -"February" => "Февруари", -"March" => "Март", -"April" => "Април", -"May" => "Май", -"June" => "Юни", -"July" => "Юли", -"August" => "Август", -"September" => "Септември", -"October" => "Октомври", -"November" => "Ноември", -"December" => "Декември", -"Log out" => "Изход", -"Lost your password?" => "Забравена парола?", -"remember" => "запомни", -"Log in" => "Вход", -"You are logged out." => "Вие излязохте.", -"prev" => "пред.", -"next" => "следващо" +"web services under your control" => "уеб услуги под Ваш контрол" ); diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php new file mode 100644 index 00000000000..333e4bf0be5 --- /dev/null +++ b/core/l10n/bn_BD.php @@ -0,0 +1,125 @@ +<?php $TRANSLATIONS = array( +"User %s shared a file with you" => "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন", +"User %s shared a folder with you" => "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s নামের ব্যবহারকারী \"%s\" ফাইলটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s নামের ব্যবহারকারী \"%s\" ফোল্ডারটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s", +"Category type not provided." => "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।", +"No category to add?" => "যোগ করার মত কোন ক্যাটেগরি নেই ?", +"This category already exists: " => "এই ক্যাটেগরিটি পূর্ব থেকেই বিদ্যমানঃ", +"Object type not provided." => "অবজেক্টের ধরণটি প্রদান করা হয় নি।", +"%s ID not provided." => "%s ID প্রদান করা হয় নি।", +"Error adding %s to favorites." => "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।", +"No categories selected for deletion." => "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি ।", +"Error removing %s from favorites." => "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।", +"Settings" => "নিয়ামকসমূহ", +"seconds ago" => "সেকেন্ড পূর্বে", +"1 minute ago" => "1 মিনিট পূর্বে", +"{minutes} minutes ago" => "{minutes} মিনিট পূর্বে", +"1 hour ago" => "1 ঘন্টা পূর্বে", +"{hours} hours ago" => "{hours} ঘন্টা পূর্বে", +"today" => "আজ", +"yesterday" => "গতকাল", +"{days} days ago" => "{days} দিন পূর্বে", +"last month" => "গতমাস", +"{months} months ago" => "{months} মাস পূর্বে", +"months ago" => "মাস পূর্বে", +"last year" => "গত বছর", +"years ago" => "বছর পূর্বে", +"Choose" => "বেছে নিন", +"Cancel" => "বাতির", +"No" => "না", +"Yes" => "হ্যাঁ", +"Ok" => "তথাস্তু", +"The object type is not specified." => "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।", +"Error" => "সমস্যা", +"The app name is not specified." => "অ্যাপের নামটি সুনির্দিষ্ট নয়।", +"The required file {file} is not installed!" => "আবশ্যিক {file} টি সংস্থাপিত নেই !", +"Error while sharing" => "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে ", +"Error while unsharing" => "ভাগাভাগি বাতিল করতে সমস্যা দেখা দিয়েছে", +"Error while changing permissions" => "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে", +"Shared with you and the group {group} by {owner}" => "{owner} আপনার এবং {group} গোষ্ঠীর সাথে ভাগাভাগি করেছেন", +"Shared with you by {owner}" => "{owner} আপনার সাথে ভাগাভাগি করেছেন", +"Share with" => "যাদের সাথে ভাগাভাগি করা হয়েছে", +"Share with link" => "লিংকের সাথে ভাগাভাগি কর", +"Password protect" => "কূটশব্দ সুরক্ষিত", +"Password" => "কূটশব্দ", +"Email link to person" => "ব্যক্তির সাথে ই-মেইল যুক্ত কর", +"Send" => "পাঠাও", +"Set expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন", +"Expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ", +"Share via email:" => "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ", +"No people found" => "কোন ব্যক্তি খুঁজে পাওয়া গেল না", +"Resharing is not allowed" => "পূনঃরায় ভাগাভাগি অনুমোদিত নয়", +"Shared in {item} with {user}" => "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে", +"Unshare" => "ভাগাভাগি বাতিল কর", +"can edit" => "সম্পাদনা করতে পারবেন", +"access control" => "অধিগম্যতা নিয়ন্ত্রণ", +"create" => "তৈরী করুন", +"update" => "পরিবর্ধন কর", +"delete" => "মুছে ফেল", +"share" => "ভাগাভাগি কর", +"Password protected" => "কূটশব্দদ্বারা সুরক্ষিত", +"Error unsetting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে", +"Error setting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে", +"Sending ..." => "পাঠানো হচ্ছে......", +"Email sent" => "ই-মেইল পাঠানো হয়েছে", +"ownCloud password reset" => "ownCloud কূটশব্দ পূনঃনির্ধারণ", +"Use the following link to reset your password: {link}" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}", +"You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।", +"Reset email send." => "পূনঃনির্ধারণ ই-মেইল পাঠানো হয়েছে।", +"Request failed!" => "অনুরোধ ব্যর্থ !", +"Username" => "ব্যবহারকারী", +"Request reset" => "অনুরোধ পূনঃনির্ধারণ", +"Your password was reset" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে", +"To login page" => "প্রবেশ পৃষ্ঠায়", +"New password" => "নতুন কূটশব্দ", +"Reset password" => "কূটশব্দ পূনঃনির্ধারণ কর", +"Personal" => "ব্যক্তিগত", +"Users" => "ব্যবহারকারী", +"Apps" => "অ্যাপস", +"Admin" => "প্রশাসন", +"Help" => "সহায়িকা", +"Access forbidden" => "অধিগমনের অনুমতি নেই", +"Cloud not found" => "ক্লাউড খুঁজে পাওয়া গেল না", +"Edit categories" => "ক্যাটেগরি সম্পাদনা", +"Add" => "যোগ কর", +"Security Warning" => "নিরাপত্তাজনিত সতর্কতা", +"Create an <strong>admin account</strong>" => "<strong>প্রশাসক একাউন্ট</strong> তৈরী করুন", +"Advanced" => "সুচারু", +"Data folder" => "ডাটা ফোল্ডার ", +"Configure the database" => "ডাটাবেচ কনফিগার করুন", +"will be used" => "ব্যবহৃত হবে", +"Database user" => "ডাটাবেজ ব্যবহারকারী", +"Database password" => "ডাটাবেজ কূটশব্দ", +"Database name" => "ডাটাবেজের নাম", +"Database tablespace" => "ডাটাবেজ টেবলস্পেস", +"Database host" => "ডাটাবেজ হোস্ট", +"Finish setup" => "সেটআপ সুসম্পন্ন কর", +"Sunday" => "রবিবার", +"Monday" => "সোমবার", +"Tuesday" => "মঙ্গলবার", +"Wednesday" => "বুধবার", +"Thursday" => "বৃহষ্পতিবার", +"Friday" => "শুক্রবার", +"Saturday" => "শনিবার", +"January" => "জানুয়ারি", +"February" => "ফেব্রুয়ারি", +"March" => "মার্চ", +"April" => "এপ্রিল", +"May" => "মে", +"June" => "জুন", +"July" => "জুলাই", +"August" => "অগাষ্ট", +"September" => "সেপ্টেম্বর", +"October" => "অক্টোবর", +"November" => "নভেম্বর", +"December" => "ডিসেম্বর", +"web services under your control" => "ওয়েব সার্ভিসের নিয়ন্ত্রণ আপনার হাতের মুঠোয়", +"Log out" => "প্রস্থান", +"Lost your password?" => "কূটশব্দ হারিয়েছেন?", +"remember" => "মনে রাখ", +"Log in" => "প্রবেশ", +"prev" => "পূর্ববর্তী", +"next" => "পরবর্তী", +"Updating ownCloud to version %s, this may take a while." => "%s ভার্সনে ownCloud পরিবর্ধন করা হচ্ছে, এজন্য কিছু সময় প্রয়োজন।" +); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index f98922f8f38..e66bad25e43 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -125,10 +125,7 @@ "Lost your password?" => "Heu perdut la contrasenya?", "remember" => "recorda'm", "Log in" => "Inici de sessió", -"You are logged out." => "Heu tancat la sessió.", "prev" => "anterior", "next" => "següent", -"Security Warning!" => "Avís de seguretat!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Comproveu la vostra contrasenya. <br/>Per raons de seguretat se us pot demanar escriure de nou la vostra contrasenya.", -"Verify" => "Comprova" +"Updating ownCloud to version %s, this may take a while." => "S'està actualitzant ownCloud a la versió %s, pot trigar una estona." ); diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 96252ea8bba..7a766bd7176 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -125,10 +125,7 @@ "Lost your password?" => "Ztratili jste své heslo?", "remember" => "zapamatovat si", "Log in" => "Přihlásit", -"You are logged out." => "Jste odhlášeni.", "prev" => "předchozí", "next" => "následující", -"Security Warning!" => "Bezpečnostní upozornění.", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Ověřte, prosím, své heslo. <br/>Z bezpečnostních důvodů můžete být občas požádáni o jeho opětovné zadání.", -"Verify" => "Ověřit" +"Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." ); diff --git a/core/l10n/da.php b/core/l10n/da.php index a792e1d9bae..e8155c298c0 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -125,10 +125,6 @@ "Lost your password?" => "Mistet dit kodeord?", "remember" => "husk", "Log in" => "Log ind", -"You are logged out." => "Du er nu logget ud.", "prev" => "forrige", -"next" => "næste", -"Security Warning!" => "Sikkerhedsadvarsel!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Verificer din adgangskode.<br/>Af sikkerhedsårsager kan du lejlighedsvist blive bedt om at indtaste din adgangskode igen.", -"Verify" => "Verificer" +"next" => "næste" ); diff --git a/core/l10n/de.php b/core/l10n/de.php index c5867eda8c3..89846301a58 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -125,10 +125,7 @@ "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", -"You are logged out." => "Du wurdest abgemeldet.", "prev" => "Zurück", "next" => "Weiter", -"Security Warning!" => "Sicherheitswarnung!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Bitte bestätige Dein Passwort. <br/> Aus Sicherheitsgründen wirst Du hierbei gebeten, Dein Passwort erneut einzugeben.", -"Verify" => "Bestätigen" +"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." ); diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index ed0bc0e0ffb..d62b000c0ab 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -125,10 +125,7 @@ "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", -"You are logged out." => "Sie wurden abgemeldet.", "prev" => "Zurück", "next" => "Weiter", -"Security Warning!" => "Sicherheitshinweis!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Bitte überprüfen Sie Ihr Passwort. <br/>Aus Sicherheitsgründen werden Sie gelegentlich aufgefordert, Ihr Passwort erneut einzugeben.", -"Verify" => "Überprüfen" +"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." ); diff --git a/core/l10n/el.php b/core/l10n/el.php index d8a5d7aef51..c029b01fd9c 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -125,10 +125,7 @@ "Lost your password?" => "Ξεχάσατε το συνθηματικό σας;", "remember" => "απομνημόνευση", "Log in" => "Είσοδος", -"You are logged out." => "Έχετε αποσυνδεθεί.", "prev" => "προηγούμενο", "next" => "επόμενο", -"Security Warning!" => "Προειδοποίηση Ασφαλείας!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Παρακαλώ επιβεβαιώστε το συνθηματικό σας. <br/>Για λόγους ασφαλείας μπορεί να ερωτάστε να εισάγετε ξανά το συνθηματικό σας.", -"Verify" => "Επαλήθευση" +"Updating ownCloud to version %s, this may take a while." => "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο." ); diff --git a/core/l10n/eo.php b/core/l10n/eo.php index a605b27ed80..0319eeef2d4 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -121,10 +121,6 @@ "Lost your password?" => "Ĉu vi perdis vian pasvorton?", "remember" => "memori", "Log in" => "Ensaluti", -"You are logged out." => "Vi estas elsalutita.", "prev" => "maljena", -"next" => "jena", -"Security Warning!" => "Sekureca averto!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Bonvolu kontroli vian pasvorton. <br/>Pro sekureco, oni okaze povas peti al vi enigi vian pasvorton ree.", -"Verify" => "Kontroli" +"next" => "jena" ); diff --git a/core/l10n/es.php b/core/l10n/es.php index 2a9f5682dfb..4f8f1936c7f 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -125,10 +125,7 @@ "Lost your password?" => "¿Has perdido tu contraseña?", "remember" => "recuérdame", "Log in" => "Entrar", -"You are logged out." => "Has cerrado la sesión.", "prev" => "anterior", "next" => "siguiente", -"Security Warning!" => "¡Advertencia de seguridad!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Por favor verifique su contraseña. <br/>Por razones de seguridad se le puede volver a preguntar ocasionalmente la contraseña.", -"Verify" => "Verificar" +"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." ); diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 2da7951b064..374a679260b 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "El usurario %s compartió un archivo con vos.", +"User %s shared a folder with you" => "El usurario %s compartió una carpeta con vos.", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s", "Category type not provided." => "Tipo de categoría no provisto. ", "No category to add?" => "¿Ninguna categoría para añadir?", "This category already exists: " => "Esta categoría ya existe: ", @@ -39,6 +43,8 @@ "Share with link" => "Compartir con link", "Password protect" => "Proteger con contraseña ", "Password" => "Contraseña", +"Email link to person" => "Enviar el link por e-mail.", +"Send" => "Enviar", "Set expiration date" => "Asignar fecha de vencimiento", "Expiration date" => "Fecha de vencimiento", "Share via email:" => "compartido a través de e-mail:", @@ -55,6 +61,8 @@ "Password protected" => "Protegido por contraseña", "Error unsetting expiration date" => "Error al remover la fecha de caducidad", "Error setting expiration date" => "Error al asignar fecha de vencimiento", +"Sending ..." => "Enviando...", +"Email sent" => "Email enviado", "ownCloud password reset" => "Restablecer contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Usá este enlace para restablecer tu contraseña: {link}", "You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña", @@ -117,10 +125,7 @@ "Lost your password?" => "¿Perdiste tu contraseña?", "remember" => "recordame", "Log in" => "Entrar", -"You are logged out." => "Terminaste la sesión.", "prev" => "anterior", "next" => "siguiente", -"Security Warning!" => "¡Advertencia de seguridad!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Por favor, verificá tu contraseña. <br/>Por razones de seguridad, puede ser que que te pregunte ocasionalmente la contraseña.", -"Verify" => "Verificar" +"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede domorar un rato." ); diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index b67dd13dd69..b79dd4761e7 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -101,9 +101,6 @@ "Lost your password?" => "Kaotasid oma parooli?", "remember" => "pea meeles", "Log in" => "Logi sisse", -"You are logged out." => "Sa oled välja loginud", "prev" => "eelm", -"next" => "järgm", -"Security Warning!" => "turvahoiatus!", -"Verify" => "Kinnita" +"next" => "järgm" ); diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 1a21ca34705..1239ee86034 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -125,10 +125,6 @@ "Lost your password?" => "Galdu duzu pasahitza?", "remember" => "gogoratu", "Log in" => "Hasi saioa", -"You are logged out." => "Zure saioa bukatu da.", "prev" => "aurrekoa", -"next" => "hurrengoa", -"Security Warning!" => "Segurtasun abisua", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Mesedez egiaztatu zure pasahitza. <br/>Segurtasun arrazoiengatik noizbehinka zure pasahitza berriz sartzea eska diezazukegu.", -"Verify" => "Egiaztatu" +"next" => "hurrengoa" ); diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 2f859dc31d2..a7c3c9ab2e5 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -71,7 +71,6 @@ "Lost your password?" => "آیا گذرواژه تان را به یاد نمی آورید؟", "remember" => "بیاد آوری", "Log in" => "ورود", -"You are logged out." => "شما خارج شدید", "prev" => "بازگشت", "next" => "بعدی" ); diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 4b4a23b8c70..751293e1fd5 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -1,7 +1,13 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "Käyttäjä %s jakoi tiedoston kanssasi", +"User %s shared a folder with you" => "Käyttäjä %s jakoi kansion kanssasi", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Käyttäjä %s jakoi tiedoston \"%s\" kanssasi. Se on ladattavissa täältä: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Käyttäjä %s jakoi kansion \"%s\" kanssasi. Se on ladattavissa täältä: %s", "No category to add?" => "Ei lisättävää luokkaa?", "This category already exists: " => "Tämä luokka on jo olemassa: ", +"Error adding %s to favorites." => "Virhe lisätessä kohdetta %s suosikkeihin.", "No categories selected for deletion." => "Luokkia ei valittu poistettavaksi.", +"Error removing %s from favorites." => "Virhe poistaessa kohdetta %s suosikeista.", "Settings" => "Asetukset", "seconds ago" => "sekuntia sitten", "1 minute ago" => "1 minuutti sitten", @@ -27,6 +33,9 @@ "Error while sharing" => "Virhe jaettaessa", "Error while unsharing" => "Virhe jakoa peruttaessa", "Error while changing permissions" => "Virhe oikeuksia muuttaessa", +"Shared with you and the group {group} by {owner}" => "Jaettu sinun ja ryhmän {group} kanssa käyttäjän {owner} toimesta", +"Shared with you by {owner}" => "Jaettu kanssasi käyttäjän {owner} toimesta", +"Share with" => "Jaa", "Share with link" => "Jaa linkillä", "Password protect" => "Suojaa salasanalla", "Password" => "Salasana", @@ -52,6 +61,7 @@ "ownCloud password reset" => "ownCloud-salasanan nollaus", "Use the following link to reset your password: {link}" => "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}", "You will receive a link to reset your password via Email." => "Saat sähköpostitse linkin nollataksesi salasanan.", +"Reset email send." => "Salasanan nollausviesti lähetetty.", "Request failed!" => "Pyyntö epäonnistui!", "Username" => "Käyttäjätunnus", "Request reset" => "Tilaus lähetetty", @@ -108,10 +118,7 @@ "Lost your password?" => "Unohditko salasanasi?", "remember" => "muista", "Log in" => "Kirjaudu sisään", -"You are logged out." => "Olet kirjautunut ulos.", "prev" => "edellinen", "next" => "seuraava", -"Security Warning!" => "Turvallisuusvaroitus!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Vahvista salasanasi. <br/>Turvallisuussyistä sinulta saatetaan ajoittain kysyä salasanasi uudelleen.", -"Verify" => "Vahvista" +"Updating ownCloud to version %s, this may take a while." => "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken." ); diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 082bace76ce..39269e43b5d 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -59,7 +59,7 @@ "delete" => "supprimer", "share" => "partager", "Password protected" => "Protégé par un mot de passe", -"Error unsetting expiration date" => "Un erreur est survenue pendant la suppression de la date d'expiration", +"Error unsetting expiration date" => "Une erreur est survenue pendant la suppression de la date d'expiration", "Error setting expiration date" => "Erreur lors de la spécification de la date d'expiration", "Sending ..." => "En cours d'envoi ...", "Email sent" => "Email envoyé", @@ -83,7 +83,7 @@ "Cloud not found" => "Introuvable", "Edit categories" => "Modifier les catégories", "Add" => "Ajouter", -"Security Warning" => "Avertissement de sécutité", +"Security Warning" => "Avertissement de sécurité", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Aucun générateur de nombre aléatoire sécurisé n'est disponible, veuillez activer l'extension PHP OpenSSL", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sans générateur de nombre aléatoire sécurisé, un attaquant peut être en mesure de prédire les jetons de réinitialisation du mot de passe, et ainsi prendre le contrôle de votre compte utilisateur.", "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.", @@ -125,10 +125,7 @@ "Lost your password?" => "Mot de passe perdu ?", "remember" => "se souvenir de moi", "Log in" => "Connexion", -"You are logged out." => "Vous êtes désormais déconnecté.", "prev" => "précédent", "next" => "suivant", -"Security Warning!" => "Alerte de sécurité !", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Veuillez vérifier votre mot de passe. <br/>Par sécurité il vous sera occasionnellement demandé d'entrer votre mot de passe de nouveau.", -"Verify" => "Vérification" +"Updating ownCloud to version %s, this may take a while." => "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps." ); diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 4cdc39896b5..2642debb288 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -1,23 +1,27 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "O usuario %s compartíu un ficheiro con vostede", +"User %s shared a folder with you" => "O usuario %s compartíu un cartafol con vostede", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o ficheiro «%s» con vostede. Teno dispoñíbel en: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o cartafol «%s» con vostede. Teno dispoñíbel en: %s", "Category type not provided." => "Non se indicou o tipo de categoría", "No category to add?" => "Sen categoría que engadir?", "This category already exists: " => "Esta categoría xa existe: ", "Object type not provided." => "Non se forneceu o tipo de obxecto.", -"%s ID not provided." => "Non se deu o ID %s.", -"Error adding %s to favorites." => "Erro ao engadir %s aos favoritos.", +"%s ID not provided." => "Non se forneceu o ID %s.", +"Error adding %s to favorites." => "Produciuse un erro ao engadir %s aos favoritos.", "No categories selected for deletion." => "Non hai categorías seleccionadas para eliminar.", -"Error removing %s from favorites." => "Erro ao eliminar %s dos favoritos.", +"Error removing %s from favorites." => "Produciuse un erro ao eliminar %s dos favoritos.", "Settings" => "Configuracións", "seconds ago" => "segundos atrás", "1 minute ago" => "hai 1 minuto", -"{minutes} minutes ago" => "{minutes} minutos atrás", +"{minutes} minutes ago" => "hai {minutes} minutos", "1 hour ago" => "hai 1 hora", -"{hours} hours ago" => "{hours} horas atrás", +"{hours} hours ago" => "hai {hours} horas", "today" => "hoxe", "yesterday" => "onte", -"{days} days ago" => "{days} días atrás", +"{days} days ago" => "hai {days} días", "last month" => "último mes", -"{months} months ago" => "{months} meses atrás", +"{months} months ago" => "hai {months} meses", "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", @@ -30,42 +34,46 @@ "Error" => "Erro", "The app name is not specified." => "Non se especificou o nome do aplicativo.", "The required file {file} is not installed!" => "Non está instalado o ficheiro {file} que se precisa", -"Error while sharing" => "Erro compartindo", -"Error while unsharing" => "Erro ao deixar de compartir", -"Error while changing permissions" => "Erro ao cambiar os permisos", -"Shared with you and the group {group} by {owner}" => "Compartido contigo e co grupo {group} de {owner}", -"Shared with you by {owner}" => "Compartido contigo por {owner}", +"Error while sharing" => "Produciuse un erro ao compartir", +"Error while unsharing" => "Produciuse un erro ao deixar de compartir", +"Error while changing permissions" => "Produciuse un erro ao cambiar os permisos", +"Shared with you and the group {group} by {owner}" => "Compartido con vostede e co grupo {group} por {owner}", +"Shared with you by {owner}" => "Compartido con vostede por {owner}", "Share with" => "Compartir con", -"Share with link" => "Compartir ca ligazón", +"Share with link" => "Compartir coa ligazón", "Password protect" => "Protexido con contrasinais", "Password" => "Contrasinal", +"Email link to person" => "Enviar ligazón por correo", +"Send" => "Enviar", "Set expiration date" => "Definir a data de caducidade", "Expiration date" => "Data de caducidade", -"Share via email:" => "Compartir por correo electrónico:", +"Share via email:" => "Compartir por correo:", "No people found" => "Non se atopou xente", -"Resharing is not allowed" => "Non se acepta volver a compartir", +"Resharing is not allowed" => "Non se permite volver a compartir", "Shared in {item} with {user}" => "Compartido en {item} con {user}", "Unshare" => "Deixar de compartir", "can edit" => "pode editar", "access control" => "control de acceso", "create" => "crear", "update" => "actualizar", -"delete" => "borrar", +"delete" => "eliminar", "share" => "compartir", "Password protected" => "Protexido con contrasinal", -"Error unsetting expiration date" => "Erro ao quitar a data de caducidade", -"Error setting expiration date" => "Erro ao definir a data de caducidade", -"ownCloud password reset" => "Restablecer contrasinal de ownCloud", -"Use the following link to reset your password: {link}" => "Usa a seguinte ligazón para restablecer o contrasinal: {link}", -"You will receive a link to reset your password via Email." => "Recibirá unha ligazón por correo electrónico para restablecer o contrasinal", -"Reset email send." => "Restablecer o envío por correo.", -"Request failed!" => "Fallo na petición", +"Error unsetting expiration date" => "Produciuse un erro ao retirar a data de caducidade", +"Error setting expiration date" => "Produciuse un erro ao definir a data de caducidade", +"Sending ..." => "Enviando...", +"Email sent" => "Correo enviado", +"ownCloud password reset" => "Restabelecer o contrasinal de ownCloud", +"Use the following link to reset your password: {link}" => "Usa a seguinte ligazón para restabelecer o contrasinal: {link}", +"You will receive a link to reset your password via Email." => "Recibirá unha ligazón por correo para restabelecer o contrasinal", +"Reset email send." => "Restabelecer o envío por correo.", +"Request failed!" => "Non foi posíbel facer a petición", "Username" => "Nome de usuario", -"Request reset" => "Petición de restablecemento", -"Your password was reset" => "O contrasinal foi restablecido", +"Request reset" => "Petición de restabelecemento", +"Your password was reset" => "O contrasinal foi restabelecido", "To login page" => "A páxina de conexión", "New password" => "Novo contrasinal", -"Reset password" => "Restablecer contrasinal", +"Reset password" => "Restabelecer o contrasinal", "Personal" => "Persoal", "Users" => "Usuarios", "Apps" => "Aplicativos", @@ -75,15 +83,15 @@ "Cloud not found" => "Nube non atopada", "Edit categories" => "Editar categorías", "Add" => "Engadir", -"Security Warning" => "Aviso de seguridade", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non hai un xerador de números aleatorios dispoñíbel. Activa o engadido de OpenSSL para PHP.", -"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sen un xerador de números aleatorios seguro podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa túa conta.", -"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 teu cartafol de datos e os teus ficheiros son seguramente accesibles a través de internet. O ficheiro .htaccess que ownCloud fornece non está empregándose. Suxírese que configures o teu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou movas o cartafol de datos fóra do root do directorio de datos do servidor web.", +"Security Warning" => "Aviso de seguranza", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non hai un xerador de números ao chou dispoñíbel. Active o engadido de OpenSSL para PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sen un xerador seguro de números ao chou podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa súa conta.", +"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. Suxerimoslle 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.", "Create an <strong>admin account</strong>" => "Crear unha <strong>contra de administrador</strong>", "Advanced" => "Avanzado", "Data folder" => "Cartafol de datos", "Configure the database" => "Configurar a base de datos", -"will be used" => "será utilizado", +"will be used" => "vai ser utilizado", "Database user" => "Usuario da base de datos", "Database password" => "Contrasinal da base de datos", "Database name" => "Nome da base de datos", @@ -97,30 +105,27 @@ "Thursday" => "Xoves", "Friday" => "Venres", "Saturday" => "Sábado", -"January" => "Xaneiro", -"February" => "Febreiro", -"March" => "Marzo", -"April" => "Abril", -"May" => "Maio", -"June" => "Xuño", -"July" => "Xullo", -"August" => "Agosto", -"September" => "Setembro", -"October" => "Outubro", -"November" => "Novembro", -"December" => "Decembro", +"January" => "xaneiro", +"February" => "febreiro", +"March" => "marzo", +"April" => "abril", +"May" => "maio", +"June" => "xuño", +"July" => "xullo", +"August" => "agosto", +"September" => "setembro", +"October" => "outubro", +"November" => "novembro", +"December" => "decembro", "web services under your control" => "servizos web baixo o seu control", "Log out" => "Desconectar", "Automatic logon rejected!" => "Rexeitouse a entrada automática", -"If you did not change your password recently, your account may be compromised!" => "Se non fixeches cambios de contrasinal recentemente é posíbel que a túa conta estea comprometida!", -"Please change your password to secure your account again." => "Cambia de novo o teu contrasinal para asegurar a túa conta.", +"If you did not change your password recently, your account may be compromised!" => "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!", +"Please change your password to secure your account again." => "Cambie de novo o seu contrasinal para asegurar a súa conta.", "Lost your password?" => "Perdeu o contrasinal?", "remember" => "lembrar", "Log in" => "Conectar", -"You are logged out." => "Está desconectado", "prev" => "anterior", "next" => "seguinte", -"Security Warning!" => "Advertencia de seguranza", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Verifica o teu contrasinal.<br/>Por motivos de seguridade pode que ocasionalmente se che pregunte de novo polo teu contrasinal.", -"Verify" => "Verificar" +"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a versión %s, esto pode levar un anaco." ); diff --git a/core/l10n/he.php b/core/l10n/he.php index 50addbd5278..59eb3ae14d4 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -125,10 +125,7 @@ "Lost your password?" => "שכחת את ססמתך?", "remember" => "שמירת הססמה", "Log in" => "כניסה", -"You are logged out." => "לא התחברת.", "prev" => "הקודם", "next" => "הבא", -"Security Warning!" => "אזהרת אבטחה!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "נא לאמת את הססמה שלך. <br/>מטעמי אבטחה יתכן שתופיע בקשה להזין את הססמה שוב.", -"Verify" => "אימות" +"Updating ownCloud to version %s, this may take a while." => "מעדכן את ownCloud אל גרסא %s, זה עלול לקחת זמן מה." ); diff --git a/core/l10n/hi.php b/core/l10n/hi.php index 0e4f18c6cd8..d7f9fd150b0 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -12,7 +12,6 @@ "Database user" => "डेटाबेस उपयोगकर्ता", "Database password" => "डेटाबेस पासवर्ड", "Finish setup" => "सेटअप समाप्त करे", -"You are logged out." => "आप लोग आउट कर दिए गए हैं.", "prev" => "पिछला", "next" => "अगला" ); diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 69bdd3a4f83..43dbbe51ae0 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -91,7 +91,6 @@ "Lost your password?" => "Izgubili ste lozinku?", "remember" => "zapamtiti", "Log in" => "Prijava", -"You are logged out." => "Odjavljeni ste.", "prev" => "prethodan", "next" => "sljedeći" ); diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 9ac326d45ec..49b686423ab 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -1,28 +1,73 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "%s felhasználó megosztott Önnel egy fájlt", +"User %s shared a folder with you" => "%s felhasználó megosztott Önnel egy mappát", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s felhasználó megosztotta ezt az állományt Önnel: %s. A fájl innen tölthető le: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s felhasználó megosztotta ezt a mappát Önnel: %s. A mappa innen tölthető le: %s", +"Category type not provided." => "Nincs megadva a kategória típusa.", "No category to add?" => "Nincs hozzáadandó kategória?", -"This category already exists: " => "Ez a kategória már létezik", +"This category already exists: " => "Ez a kategória már létezik: ", +"Object type not provided." => "Az objektum típusa nincs megadva.", +"%s ID not provided." => "%s ID nincs megadva.", +"Error adding %s to favorites." => "Nem sikerült a kedvencekhez adni ezt: %s", "No categories selected for deletion." => "Nincs törlésre jelölt kategória", +"Error removing %s from favorites." => "Nem sikerült a kedvencekből törölni ezt: %s", "Settings" => "Beállítások", -"seconds ago" => "másodperccel ezelőtt", -"1 minute ago" => "1 perccel ezelőtt", +"seconds ago" => "pár másodperce", +"1 minute ago" => "1 perce", +"{minutes} minutes ago" => "{minutes} perce", "1 hour ago" => "1 órája", +"{hours} hours ago" => "{hours} órája", "today" => "ma", "yesterday" => "tegnap", +"{days} days ago" => "{days} napja", "last month" => "múlt hónapban", -"months ago" => "hónappal ezelőtt", +"{months} months ago" => "{months} hónapja", +"months ago" => "több hónapja", "last year" => "tavaly", -"years ago" => "évvel ezelőtt", +"years ago" => "több éve", +"Choose" => "Válasszon", "Cancel" => "Mégse", "No" => "Nem", "Yes" => "Igen", "Ok" => "Ok", +"The object type is not specified." => "Az objektum típusa nincs megadva.", "Error" => "Hiba", -"Password" => "Jelszó", -"Unshare" => "Nem oszt meg", -"create" => "létrehozás", +"The app name is not specified." => "Az alkalmazás neve nincs megadva.", +"The required file {file} is not installed!" => "A szükséges fájl: {file} nincs telepítve!", +"Error while sharing" => "Nem sikerült létrehozni a megosztást", +"Error while unsharing" => "Nem sikerült visszavonni a megosztást", +"Error while changing permissions" => "Nem sikerült módosítani a jogosultságokat", +"Shared with you and the group {group} by {owner}" => "Megosztotta Önnel és a(z) {group} csoporttal: {owner}", +"Shared with you by {owner}" => "Megosztotta Önnel: {owner}", +"Share with" => "Kivel osztom meg", +"Share with link" => "Link megadásával osztom meg", +"Password protect" => "Jelszóval is védem", +"Password" => "Jelszó (tetszőleges)", +"Email link to person" => "Email címre küldjük el", +"Send" => "Küldjük el", +"Set expiration date" => "Legyen lejárati idő", +"Expiration date" => "A lejárati idő", +"Share via email:" => "Megosztás emaillel:", +"No people found" => "Nincs találat", +"Resharing is not allowed" => "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal", +"Shared in {item} with {user}" => "Megosztva {item}-ben {user}-rel", +"Unshare" => "A megosztás visszavonása", +"can edit" => "módosíthat", +"access control" => "jogosultság", +"create" => "létrehoz", +"update" => "szerkeszt", +"delete" => "töröl", +"share" => "megoszt", +"Password protected" => "Jelszóval van védve", +"Error unsetting expiration date" => "Nem sikerült a lejárati időt törölni", +"Error setting expiration date" => "Nem sikerült a lejárati időt beállítani", +"Sending ..." => "Küldés ...", +"Email sent" => "Az emailt elküldtük", "ownCloud password reset" => "ownCloud jelszó-visszaállítás", -"Use the following link to reset your password: {link}" => "Használja az alábbi linket a jelszó-visszaállításhoz: {link}", -"You will receive a link to reset your password via Email." => "Egy e-mailben kap értesítést a jelszóváltoztatás módjáról.", +"Use the following link to reset your password: {link}" => "Használja ezt a linket a jelszó ismételt beállításához: {link}", +"You will receive a link to reset your password via Email." => "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról.", +"Reset email send." => "Elküldtük az emailt a jelszó ismételt beállításához.", +"Request failed!" => "Nem sikerült a kérést teljesíteni!", "Username" => "Felhasználónév", "Request reset" => "Visszaállítás igénylése", "Your password was reset" => "Jelszó megváltoztatva", @@ -32,48 +77,54 @@ "Personal" => "Személyes", "Users" => "Felhasználók", "Apps" => "Alkalmazások", -"Admin" => "Admin", +"Admin" => "Adminisztráció", "Help" => "Súgó", -"Access forbidden" => "Hozzáférés tiltva", +"Access forbidden" => "A hozzáférés nem engedélyezett", "Cloud not found" => "A felhő nem található", "Edit categories" => "Kategóriák szerkesztése", "Add" => "Hozzáadás", "Security Warning" => "Biztonsági figyelmeztetés", -"Create an <strong>admin account</strong>" => "<strong>Rendszergazdafiók</strong> létrehozása", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nem érhető el megfelelő véletlenszám-generátor, telepíteni kellene a PHP OpenSSL kiegészítését.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Megfelelő véletlenszám-generátor hiányában egy támadó szándékú idegen képes lehet megjósolni a jelszóvisszaállító tokent, és Ön helyett belépni.", +"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 nem legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre.", +"Create an <strong>admin account</strong>" => "<strong>Rendszergazdai belépés</strong> létrehozása", "Advanced" => "Haladó", "Data folder" => "Adatkönyvtár", "Configure the database" => "Adatbázis konfigurálása", -"will be used" => "használva lesz", +"will be used" => "adatbázist fogunk használni", "Database user" => "Adatbázis felhasználónév", "Database password" => "Adatbázis jelszó", -"Database name" => "Adatbázis név", +"Database name" => "Az adatbázis neve", +"Database tablespace" => "Az adatbázis táblázattér (tablespace)", "Database host" => "Adatbázis szerver", -"Finish setup" => "Beállítás befejezése", -"Sunday" => "Vasárnap", -"Monday" => "Hétfő", -"Tuesday" => "Kedd", -"Wednesday" => "Szerda", -"Thursday" => "Csütörtök", -"Friday" => "Péntek", -"Saturday" => "Szombat", -"January" => "Január", -"February" => "Február", -"March" => "Március", -"April" => "Április", -"May" => "Május", -"June" => "Június", -"July" => "Július", -"August" => "Augusztus", -"September" => "Szeptember", -"October" => "Október", -"November" => "November", -"December" => "December", -"web services under your control" => "webszolgáltatások az irányításod alatt", +"Finish setup" => "A beállítások befejezése", +"Sunday" => "vasárnap", +"Monday" => "hétfő", +"Tuesday" => "kedd", +"Wednesday" => "szerda", +"Thursday" => "csütörtök", +"Friday" => "péntek", +"Saturday" => "szombat", +"January" => "január", +"February" => "február", +"March" => "március", +"April" => "április", +"May" => "május", +"June" => "június", +"July" => "július", +"August" => "augusztus", +"September" => "szeptember", +"October" => "október", +"November" => "november", +"December" => "december", +"web services under your control" => "webszolgáltatások saját kézben", "Log out" => "Kilépés", -"Lost your password?" => "Elfelejtett jelszó?", +"Automatic logon rejected!" => "Az automatikus bejelentkezés sikertelen!", +"If you did not change your password recently, your account may be compromised!" => "Ha mostanában nem módosította a jelszavát, akkor lehetséges, hogy idegenek jutottak be a rendszerbe az Ön nevében!", +"Please change your password to secure your account again." => "A biztonsága érdekében változtassa meg a jelszavát!", +"Lost your password?" => "Elfelejtette a jelszavát?", "remember" => "emlékezzen", "Log in" => "Bejelentkezés", -"You are logged out." => "Kilépett.", -"prev" => "Előző", -"next" => "Következő" +"prev" => "előző", +"next" => "következő" ); diff --git a/core/l10n/ia.php b/core/l10n/ia.php index 07cc118f0e6..d614f8381af 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -52,7 +52,6 @@ "Lost your password?" => "Tu perdeva le contrasigno?", "remember" => "memora", "Log in" => "Aperir session", -"You are logged out." => "Tu session ha essite claudite.", "prev" => "prev", "next" => "prox" ); diff --git a/core/l10n/id.php b/core/l10n/id.php index 99df16332f5..ee5fad95217 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -100,10 +100,6 @@ "Lost your password?" => "Lupa password anda?", "remember" => "selalu login", "Log in" => "Masuk", -"You are logged out." => "Anda telah keluar.", "prev" => "sebelum", -"next" => "selanjutnya", -"Security Warning!" => "peringatan keamanan!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "mohon periksa kembali kata kunci anda. <br/>untuk alasan keamanan,anda akan sesekali diminta untuk memasukan kata kunci lagi.", -"Verify" => "periksa kembali" +"next" => "selanjutnya" ); diff --git a/core/l10n/is.php b/core/l10n/is.php index 53b2fe88839..e810eb359fd 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -4,7 +4,7 @@ "User %s shared the file \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi skránni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s", "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi möppunni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s", "Category type not provided." => "Flokkur ekki gefin", -"No category to add?" => "Enginn flokkur til að <strong>bæta við</strong>?", +"No category to add?" => "Enginn flokkur til að bæta við?", "This category already exists: " => "Þessi flokkur er þegar til:", "Object type not provided." => "Tegund ekki í boði.", "%s ID not provided." => "%s ID ekki í boði.", @@ -31,7 +31,7 @@ "Yes" => "Já", "Ok" => "Í lagi", "The object type is not specified." => "Tegund ekki tilgreind", -"Error" => "<strong>Villa</strong>", +"Error" => "Villa", "The app name is not specified." => "Nafn forrits ekki tilgreint", "The required file {file} is not installed!" => "Umbeðina skráin {file} ekki tiltæk!", "Error while sharing" => "Villa við deilingu", @@ -63,7 +63,7 @@ "Error setting expiration date" => "Villa við að setja gildistíma", "Sending ..." => "Sendi ...", "Email sent" => "Tölvupóstur sendur", -"ownCloud password reset" => "endursetja ownCloud <strong>lykilorð</strong>", +"ownCloud password reset" => "endursetja ownCloud lykilorð", "Use the following link to reset your password: {link}" => "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}", "You will receive a link to reset your password via Email." => "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið.", "Reset email send." => "Beiðni um endursetningu send.", @@ -78,9 +78,9 @@ "Users" => "Notendur", "Apps" => "Forrit", "Admin" => "Vefstjórn", -"Help" => "Help", +"Help" => "Hjálp", "Access forbidden" => "Aðgangur bannaður", -"Cloud not found" => "Skýið finnst eigi", +"Cloud not found" => "Ský finnst ekki", "Edit categories" => "Breyta flokkum", "Add" => "Bæta", "Security Warning" => "Öryggis aðvörun", @@ -92,12 +92,12 @@ "Data folder" => "Gagnamappa", "Configure the database" => "Stilla gagnagrunn", "will be used" => "verður notað", -"Database user" => "Notandi gagnagrunns", -"Database password" => "Lykilorð gagnagrunns", +"Database user" => "Gagnagrunns notandi", +"Database password" => "Gagnagrunns lykilorð", "Database name" => "Nafn gagnagrunns", "Database tablespace" => "Töflusvæði gagnagrunns", "Database host" => "Netþjónn gagnagrunns", -"Finish setup" => "Ljúka uppsetningu", +"Finish setup" => "Virkja uppsetningu", "Sunday" => "Sunnudagur", "Monday" => "Mánudagur", "Tuesday" => "Þriðjudagur", @@ -125,10 +125,7 @@ "Lost your password?" => "Týndir þú lykilorðinu?", "remember" => "muna eftir mér", "Log in" => "<strong>Skrá inn</strong>", -"You are logged out." => "Þú ert útskráð(ur).", "prev" => "fyrra", "next" => "næsta", -"Security Warning!" => "Öryggis aðvörun!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Vinsamlegast staðfestu lykilorðið þitt.<br/>Í öryggisskyni munum við biðja þig um að skipta um lykilorð af og til.", -"Verify" => "Staðfesta" +"Updating ownCloud to version %s, this may take a while." => "Uppfæri ownCloud í útgáfu %s, það gæti tekið smá stund." ); diff --git a/core/l10n/it.php b/core/l10n/it.php index e97deb9fb5f..89b6a7952a9 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -125,10 +125,7 @@ "Lost your password?" => "Hai perso la password?", "remember" => "ricorda", "Log in" => "Accedi", -"You are logged out." => "Sei uscito.", "prev" => "precedente", "next" => "successivo", -"Security Warning!" => "Avviso di sicurezza", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Verifica la tua password.<br/>Per motivi di sicurezza, potresti ricevere una richiesta di digitare nuovamente la password.", -"Verify" => "Verifica" +"Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, potrebbe richiedere del tempo." ); diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 72615d36f62..7d4baf94583 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -125,10 +125,7 @@ "Lost your password?" => "パスワードを忘れましたか?", "remember" => "パスワードを記憶する", "Log in" => "ログイン", -"You are logged out." => "ログアウトしました。", "prev" => "前", "next" => "次", -"Security Warning!" => "セキュリティ警告!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "パスワードの確認<br/>セキュリティ上の理由によりパスワードの再入力をお願いします。", -"Verify" => "確認" +"Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。" ); diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index efb3998a77e..aafdacab4c6 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -98,9 +98,6 @@ "Lost your password?" => "დაგავიწყდათ პაროლი?", "remember" => "დამახსოვრება", "Log in" => "შესვლა", -"You are logged out." => "თქვენ გამოხვედით სისტემიდან", "prev" => "წინა", -"next" => "შემდეგი", -"Security Warning!" => "უსაფრთხოების გაფრთხილება!", -"Verify" => "შემოწმება" +"next" => "შემდეგი" ); diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 3846dff796b..3db5a501173 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "User %s 가 당신과 파일을 공유하였습니다.", +"User %s shared a folder with you" => "User %s 가 당신과 폴더를 공유하였습니다.", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "User %s 가 파일 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다.", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "User %s 가 폴더 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다.", "Category type not provided." => "분류 형식이 제공되지 않았습니다.", "No category to add?" => "추가할 분류가 없습니까?", "This category already exists: " => "이 분류는 이미 존재합니다:", @@ -39,6 +43,8 @@ "Share with link" => "URL 링크로 공유", "Password protect" => "암호 보호", "Password" => "암호", +"Email link to person" => "이메일 주소", +"Send" => "전송", "Set expiration date" => "만료 날짜 설정", "Expiration date" => "만료 날짜", "Share via email:" => "이메일로 공유:", @@ -55,6 +61,8 @@ "Password protected" => "암호로 보호됨", "Error unsetting expiration date" => "만료 날짜 해제 오류", "Error setting expiration date" => "만료 날짜 설정 오류", +"Sending ..." => "전송 중...", +"Email sent" => "이메일 발송됨", "ownCloud password reset" => "ownCloud 암호 재설정", "Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}", "You will receive a link to reset your password via Email." => "이메일로 암호 재설정 링크를 보냈습니다.", @@ -117,10 +125,7 @@ "Lost your password?" => "암호를 잊으셨습니까?", "remember" => "기억하기", "Log in" => "로그인", -"You are logged out." => "로그아웃되었습니다.", "prev" => "이전", "next" => "다음", -"Security Warning!" => "보안 경고!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "암호를 확인해 주십시오.<br/>보안상의 이유로 종종 암호를 물어볼 것입니다.", -"Verify" => "확인" +"Updating ownCloud to version %s, this may take a while." => "ownCloud 를 버젼 %s로 업데이트 하는 중, 시간이 소요됩니다." ); diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 7a1c462ffd1..407b8093a27 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -64,7 +64,6 @@ "Lost your password?" => "Passwuert vergiess?", "remember" => "verhalen", "Log in" => "Log dech an", -"You are logged out." => "Du bass ausgeloggt.", "prev" => "zeréck", "next" => "weider" ); diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 9c5c8f90c5e..ec15c646191 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -104,10 +104,6 @@ "Lost your password?" => "Pamiršote slaptažodį?", "remember" => "prisiminti", "Log in" => "Prisijungti", -"You are logged out." => "Jūs atsijungėte.", "prev" => "atgal", -"next" => "kitas", -"Security Warning!" => "Saugumo pranešimas!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Prašome patvirtinti savo vartotoją.<br/>Dėl saugumo, slaptažodžio patvirtinimas bus reikalaujamas įvesti kas kiek laiko.", -"Verify" => "Patvirtinti" +"next" => "kitas" ); diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 5543c7a56d6..8a6dc033de6 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -30,7 +30,6 @@ "Lost your password?" => "Aizmirsāt paroli?", "remember" => "atcerēties", "Log in" => "Ielogoties", -"You are logged out." => "Jūs esat veiksmīgi izlogojies.", "prev" => "iepriekšējā", "next" => "nākamā" ); diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 401baf6efa0..d8fa16d44f3 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -125,10 +125,6 @@ "Lost your password?" => "Ја заборавивте лозинката?", "remember" => "запамти", "Log in" => "Најава", -"You are logged out." => "Одјавени сте.", "prev" => "претходно", -"next" => "следно", -"Security Warning!" => "Безбедносно предупредување.", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Ве молам потврдете ја вашата лозинка. <br />Од безбедносни причини од време на време може да биде побарано да ја внесете вашата лозинка повторно.", -"Verify" => "Потврди" +"next" => "следно" ); diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 56a79572ef7..b08ccecf616 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -62,7 +62,6 @@ "Lost your password?" => "Hilang kata laluan?", "remember" => "ingat", "Log in" => "Log masuk", -"You are logged out." => "Anda telah log keluar.", "prev" => "sebelum", "next" => "seterus" ); diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 4069e297a7b..d985e454b7c 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -100,9 +100,6 @@ "Lost your password?" => "Mistet passordet ditt?", "remember" => "husk", "Log in" => "Logg inn", -"You are logged out." => "Du er logget ut", "prev" => "forrige", -"next" => "neste", -"Security Warning!" => "Sikkerhetsadvarsel!", -"Verify" => "Verifiser" +"next" => "neste" ); diff --git a/core/l10n/nl.php b/core/l10n/nl.php index c3f5c887658..739d8181d6f 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -125,10 +125,7 @@ "Lost your password?" => "Uw wachtwoord vergeten?", "remember" => "onthoud gegevens", "Log in" => "Meld je aan", -"You are logged out." => "U bent afgemeld.", "prev" => "vorige", "next" => "volgende", -"Security Warning!" => "Beveiligingswaarschuwing!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Verifieer uw wachtwoord!<br/>Om veiligheidsredenen wordt u regelmatig gevraagd uw wachtwoord in te geven.", -"Verify" => "Verifieer" +"Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren." ); diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index e62e0dea730..8aaf0b705c8 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -52,7 +52,6 @@ "Lost your password?" => "Gløymt passordet?", "remember" => "hugs", "Log in" => "Logg inn", -"You are logged out." => "Du er logga ut.", "prev" => "førre", "next" => "neste" ); diff --git a/core/l10n/oc.php b/core/l10n/oc.php index 1ae67063572..be6d5aec285 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -93,7 +93,6 @@ "Lost your password?" => "L'as perdut lo senhal ?", "remember" => "bremba-te", "Log in" => "Dintrada", -"You are logged out." => "Sias pas dintra (t/ada)", "prev" => "dariièr", "next" => "venent" ); diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 1208aec5a53..3324040209b 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -125,10 +125,7 @@ "Lost your password?" => "Nie pamiętasz hasła?", "remember" => "Zapamiętanie", "Log in" => "Zaloguj", -"You are logged out." => "Wylogowano użytkownika.", "prev" => "wstecz", "next" => "naprzód", -"Security Warning!" => "Ostrzeżenie o zabezpieczeniach!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Sprawdź swoje hasło.<br/>Ze względów bezpieczeństwa możesz zostać czasami poproszony o wprowadzenie hasła ponownie.", -"Verify" => "Zweryfikowane" +"Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s, może to potrwać chwilę." ); diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index f28b0035995..3b119650268 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -117,10 +117,6 @@ "Lost your password?" => "Esqueçeu sua senha?", "remember" => "lembrete", "Log in" => "Log in", -"You are logged out." => "Você está desconectado.", "prev" => "anterior", -"next" => "próximo", -"Security Warning!" => "Aviso de Segurança!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Por favor, verifique a sua senha.<br />Por motivos de segurança, você deverá ser solicitado a muda-la ocasionalmente.", -"Verify" => "Verificar" +"next" => "próximo" ); diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index a2bfcf4f882..6e3a558986c 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -125,10 +125,7 @@ "Lost your password?" => "Esqueceu a sua password?", "remember" => "lembrar", "Log in" => "Entrar", -"You are logged out." => "Estás desconetado.", "prev" => "anterior", "next" => "seguinte", -"Security Warning!" => "Aviso de Segurança!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Por favor verifique a sua palavra-passe. <br/>Por razões de segurança, pode ser-lhe perguntada, ocasionalmente, a sua palavra-passe de novo.", -"Verify" => "Verificar" +"Updating ownCloud to version %s, this may take a while." => "A Actualizar o ownCloud para a versão %s, esta operação pode demorar." ); diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 1c58e5fe2be..c3434706df8 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -109,10 +109,6 @@ "Lost your password?" => "Ai uitat parola?", "remember" => "amintește", "Log in" => "Autentificare", -"You are logged out." => "Ai ieșit", "prev" => "precedentul", -"next" => "următorul", -"Security Warning!" => "Advertisment de Securitate", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Te rog verifica parola. <br/>Pentru securitate va poate fi cerut ocazional introducerea parolei din nou", -"Verify" => "Verifica" +"next" => "următorul" ); diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 4db2a2f06fd..7434d6af7f8 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -125,10 +125,7 @@ "Lost your password?" => "Забыли пароль?", "remember" => "запомнить", "Log in" => "Войти", -"You are logged out." => "Вы вышли.", "prev" => "пред", "next" => "след", -"Security Warning!" => "Предупреждение безопасности!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Пожалуйста, проверьте свой пароль. <br/>По соображениям безопасности, Вам иногда придется вводить свой пароль снова.", -"Verify" => "Подтвердить" +"Updating ownCloud to version %s, this may take a while." => "Производится обновление ownCloud до версии %s. Это может занять некоторое время." ); diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index c18fe245c9e..84bd8f93156 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -125,10 +125,6 @@ "Lost your password?" => "Забыли пароль?", "remember" => "запомнить", "Log in" => "Войти", -"You are logged out." => "Вы вышли из системы.", "prev" => "предыдущий", -"next" => "следующий", -"Security Warning!" => "Предупреждение системы безопасности!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Пожалуйста, проверьте свой пароль. <br/>По соображениям безопасности Вам может быть иногда предложено ввести пароль еще раз.", -"Verify" => "Проверить" +"next" => "следующий" ); diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index 35b0df3188c..a6aeb484ed7 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -85,7 +85,6 @@ "Lost your password?" => "මුරපදය අමතකද?", "remember" => "මතක තබාගන්න", "Log in" => "ප්රවේශවන්න", -"You are logged out." => "ඔබ නික්මී ඇත.", "prev" => "පෙර", "next" => "ඊළඟ" ); diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 162d94e8242..286642ace7a 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "Používateľ %s zdieľa s Vami súbor", +"User %s shared a folder with you" => "Používateľ %s zdieľa s Vami adresár", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Používateľ %s zdieľa s Vami súbor \"%s\". Môžete si ho stiahnuť tu: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Používateľ %s zdieľa s Vami adresár \"%s\". Môžete si ho stiahnuť tu: %s", "Category type not provided." => "Neposkytnutý kategorický typ.", "No category to add?" => "Žiadna kategória pre pridanie?", "This category already exists: " => "Táto kategória už existuje:", @@ -39,6 +43,8 @@ "Share with link" => "Zdieľať cez odkaz", "Password protect" => "Chrániť heslom", "Password" => "Heslo", +"Email link to person" => "Odoslať odkaz osobe e-mailom", +"Send" => "Odoslať", "Set expiration date" => "Nastaviť dátum expirácie", "Expiration date" => "Dátum expirácie", "Share via email:" => "Zdieľať cez e-mail:", @@ -55,6 +61,8 @@ "Password protected" => "Chránené heslom", "Error unsetting expiration date" => "Chyba pri odstraňovaní dátumu vypršania platnosti", "Error setting expiration date" => "Chyba pri nastavení dátumu vypršania platnosti", +"Sending ..." => "Odosielam ...", +"Email sent" => "Email odoslaný", "ownCloud password reset" => "Obnovenie hesla pre ownCloud", "Use the following link to reset your password: {link}" => "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}", "You will receive a link to reset your password via Email." => "Odkaz pre obnovenie hesla obdržíte e-mailom.", @@ -117,10 +125,7 @@ "Lost your password?" => "Zabudli ste heslo?", "remember" => "zapamätať", "Log in" => "Prihlásiť sa", -"You are logged out." => "Ste odhlásený.", "prev" => "späť", "next" => "ďalej", -"Security Warning!" => "Bezpečnostné varovanie!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Prosím, overte svoje heslo. <br />Z bezpečnostných dôvodov môžete byť občas požiadaný o jeho opätovné zadanie.", -"Verify" => "Overenie" +"Updating ownCloud to version %s, this may take a while." => "Aktualizujem ownCloud na verziu %s, môže to chvíľu trvať." ); diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 0ee2eb03b3c..b2c924d412e 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -125,10 +125,6 @@ "Lost your password?" => "Ali ste pozabili geslo?", "remember" => "Zapomni si me", "Log in" => "Prijava", -"You are logged out." => "Sta odjavljeni.", "prev" => "nazaj", -"next" => "naprej", -"Security Warning!" => "Varnostno opozorilo!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Prosimo, če preverite vaše geslo. Iz varnostnih razlogov vas lahko občasno prosimo, da ga ponovno vnesete.", -"Verify" => "Preveri" +"next" => "naprej" ); diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 406b92ff83f..6b64d1957e7 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -117,10 +117,6 @@ "Lost your password?" => "Изгубили сте лозинку?", "remember" => "упамти", "Log in" => "Пријава", -"You are logged out." => "Одјављени сте.", "prev" => "претходно", -"next" => "следеће", -"Security Warning!" => "Сигурносно упозорење!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Потврдите лозинку. <br />Из сигурносних разлога затрежићемо вам да два пута унесете лозинку.", -"Verify" => "Потврди" +"next" => "следеће" ); diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index af48a845720..efcb7c10f01 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -46,7 +46,6 @@ "Log out" => "Odjava", "Lost your password?" => "Izgubili ste lozinku?", "remember" => "upamti", -"You are logged out." => "Odjavljeni ste.", "prev" => "prethodno", "next" => "sledeće" ); diff --git a/core/l10n/sv.php b/core/l10n/sv.php index a7698fb30ce..70a9871be26 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -125,10 +125,7 @@ "Lost your password?" => "Glömt ditt lösenord?", "remember" => "kom ihåg", "Log in" => "Logga in", -"You are logged out." => "Du är utloggad.", "prev" => "föregående", "next" => "nästa", -"Security Warning!" => "Säkerhetsvarning!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Bekräfta ditt lösenord. <br/>Av säkerhetsskäl kan du ibland bli ombedd att ange ditt lösenord igen.", -"Verify" => "Verifiera" +"Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund." ); diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 9a432d11c9b..65cfbbf965d 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -117,10 +117,6 @@ "Lost your password?" => "உங்கள் கடவுச்சொல்லை தொலைத்துவிட்டீர்களா?", "remember" => "ஞாபகப்படுத்துக", "Log in" => "புகுபதிகை", -"You are logged out." => "நீங்கள் விடுபதிகை செய்துவிட்டீர்கள்.", "prev" => "முந்தைய", -"next" => "அடுத்து", -"Security Warning!" => "பாதுகாப்பு எச்சரிக்கை!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "உங்களுடைய கடவுச்சொல்லை உறுதிப்படுத்துக. <br/> பாதுகாப்பு காரணங்களுக்காக நீங்கள் எப்போதாவது உங்களுடைய கடவுச்சொல்லை மீண்டும் நுழைக்க கேட்கப்படுவீர்கள்.", -"Verify" => "உறுதிப்படுத்தல்" +"next" => "அடுத்து" ); diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index e254ccf259f..183997e4c94 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -117,10 +117,6 @@ "Lost your password?" => "ลืมรหัสผ่าน?", "remember" => "จำรหัสผ่าน", "Log in" => "เข้าสู่ระบบ", -"You are logged out." => "คุณออกจากระบบเรียบร้อยแล้ว", "prev" => "ก่อนหน้า", -"next" => "ถัดไป", -"Security Warning!" => "คำเตือนเพื่อความปลอดภัย!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "กรุณายืนยันรหัสผ่านของคุณ <br/> เพื่อความปลอดภัย คุณจะถูกขอให้กรอกรหัสผ่านอีกครั้ง", -"Verify" => "ยืนยัน" +"next" => "ถัดไป" ); diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 86036e5ebd1..284a4d97130 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -104,9 +104,6 @@ "Lost your password?" => "Parolanızı mı unuttunuz?", "remember" => "hatırla", "Log in" => "Giriş yap", -"You are logged out." => "Çıkış yaptınız.", "prev" => "önceki", -"next" => "sonraki", -"Security Warning!" => "Güvenlik Uyarısı!", -"Verify" => "Doğrula" +"next" => "sonraki" ); diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 180d2a5c6bd..88e18d3eb28 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -125,10 +125,7 @@ "Lost your password?" => "Забули пароль?", "remember" => "запам'ятати", "Log in" => "Вхід", -"You are logged out." => "Ви вийшли з системи.", "prev" => "попередній", "next" => "наступний", -"Security Warning!" => "Попередження про небезпеку!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Будь ласка, повторно введіть свій пароль. <br/>З питань безпеки, Вам інколи доведеться повторно вводити свій пароль.", -"Verify" => "Підтвердити" +"Updating ownCloud to version %s, this may take a while." => "Оновлення ownCloud до версії %s, це може зайняти деякий час." ); diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 38e909d3f4e..c827dc038e6 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -117,10 +117,6 @@ "Lost your password?" => "Bạn quên mật khẩu ?", "remember" => "ghi nhớ", "Log in" => "Đăng nhập", -"You are logged out." => "Bạn đã đăng xuất.", "prev" => "Lùi lại", -"next" => "Kế tiếp", -"Security Warning!" => "Cảnh báo bảo mật !", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Vui lòng xác nhận mật khẩu của bạn. <br/> Vì lý do bảo mật thỉnh thoảng bạn có thể được yêu cầu nhập lại mật khẩu.", -"Verify" => "Kiểm tra" +"next" => "Kế tiếp" ); diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index a785a36afcc..74dd9ad8a3f 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -106,10 +106,6 @@ "Lost your password?" => "忘记密码?", "remember" => "备忘", "Log in" => "登陆", -"You are logged out." => "你已经注销了", "prev" => "后退", -"next" => "前进", -"Security Warning!" => "安全警告!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "请确认您的密码。<br/>处于安全原因你偶尔也会被要求再次输入您的密码。", -"Verify" => "确认" +"next" => "前进" ); diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 64b108ca1dd..6c098e211d3 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -124,10 +124,6 @@ "Lost your password?" => "忘记密码?", "remember" => "记住", "Log in" => "登录", -"You are logged out." => "您已注销。", "prev" => "上一页", -"next" => "下一页", -"Security Warning!" => "安全警告!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "请验证您的密码。 <br/>出于安全考虑,你可能偶尔会被要求再次输入密码。", -"Verify" => "验证" +"next" => "下一页" ); diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 45c7596e609..7537c764451 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -1,14 +1,22 @@ <?php $TRANSLATIONS = array( -"No category to add?" => "無分類添加?", -"This category already exists: " => "此分類已經存在:", +"User %s shared a file with you" => "用戶 %s 與您分享了一個檔案", +"User %s shared a folder with you" => "用戶 %s 與您分享了一個資料夾", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "用戶 %s 與您分享了檔案 \"%s\" ,您可以從這裡下載它: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用戶 %s 與您分享了資料夾 \"%s\" ,您可以從這裡下載它: %s", +"Category type not provided." => "未提供分類類型。", +"No category to add?" => "沒有可增加的分類?", +"This category already exists: " => "此分類已經存在:", "Object type not provided." => "不支援的物件類型", -"No categories selected for deletion." => "沒選擇要刪除的分類", +"%s ID not provided." => "未提供 %s ID 。", +"Error adding %s to favorites." => "加入 %s 到最愛時發生錯誤。", +"No categories selected for deletion." => "沒有選擇要刪除的分類。", +"Error removing %s from favorites." => "從最愛移除 %s 時發生錯誤。", "Settings" => "設定", "seconds ago" => "幾秒前", "1 minute ago" => "1 分鐘前", "{minutes} minutes ago" => "{minutes} 分鐘前", "1 hour ago" => "1 個小時前", -"{hours} hours ago" => "{hours} 個小時前", +"{hours} hours ago" => "{hours} 小時前", "today" => "今天", "yesterday" => "昨天", "{days} days ago" => "{days} 天前", @@ -22,18 +30,26 @@ "No" => "No", "Yes" => "Yes", "Ok" => "Ok", +"The object type is not specified." => "未指定物件類型。", "Error" => "錯誤", -"The app name is not specified." => "沒有詳述APP名稱.", +"The app name is not specified." => "沒有指定 app 名稱。", +"The required file {file} is not installed!" => "沒有安裝所需的檔案 {file} !", "Error while sharing" => "分享時發生錯誤", "Error while unsharing" => "取消分享時發生錯誤", +"Error while changing permissions" => "修改權限時發生錯誤", +"Shared with you and the group {group} by {owner}" => "由 {owner} 分享給您和 {group}", "Shared with you by {owner}" => "{owner} 已經和您分享", -"Share with" => "與分享", +"Share with" => "與...分享", "Share with link" => "使用連結分享", "Password protect" => "密碼保護", "Password" => "密碼", +"Email link to person" => "將連結 email 給別人", +"Send" => "寄出", "Set expiration date" => "設置到期日", "Expiration date" => "到期日", -"Share via email:" => "透過email分享:", +"Share via email:" => "透過 email 分享:", +"No people found" => "沒有找到任何人", +"Resharing is not allowed" => "不允許重新分享", "Shared in {item} with {user}" => "已和 {user} 分享 {item}", "Unshare" => "取消共享", "can edit" => "可編輯", @@ -42,15 +58,18 @@ "update" => "更新", "delete" => "刪除", "share" => "分享", -"Password protected" => "密碼保護", +"Password protected" => "受密碼保護", +"Error unsetting expiration date" => "解除過期日設定失敗", "Error setting expiration date" => "錯誤的到期日設定", +"Sending ..." => "正在寄出...", +"Email sent" => "Email 已寄出", "ownCloud password reset" => "ownCloud 密碼重設", -"Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: (聯結) ", -"You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱", -"Reset email send." => "重設郵件已送出.", -"Request failed!" => "請求失敗!", +"Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: {link}", +"You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱。", +"Reset email send." => "重設郵件已送出。", +"Request failed!" => "請求失敗!", "Username" => "使用者名稱", -"Request reset" => "要求重設", +"Request reset" => "請求重設", "Your password was reset" => "你的密碼已重設", "To login page" => "至登入頁面", "New password" => "新密碼", @@ -60,12 +79,14 @@ "Apps" => "應用程式", "Admin" => "管理者", "Help" => "幫助", -"Access forbidden" => "禁止存取", +"Access forbidden" => "存取被拒", "Cloud not found" => "未發現雲", "Edit categories" => "編輯分類", -"Add" => "添加", +"Add" => "增加", "Security Warning" => "安全性警告", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "沒有可用的隨機數字產生器, 請啟用 PHP 中 OpenSSL 擴充功能.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "沒有可用的亂數產生器,請啟用 PHP 中的 OpenSSL 擴充功能。", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "若沒有安全的亂數產生器,攻擊者可能可以預測密碼重設信物,然後控制您的帳戶。", +"Your data directory and 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 。", "Create an <strong>admin account</strong>" => "建立一個<strong>管理者帳號</strong>", "Advanced" => "進階", "Data folder" => "資料夾", @@ -96,14 +117,15 @@ "October" => "十月", "November" => "十一月", "December" => "十二月", -"web services under your control" => "網路服務已在你控制", +"web services under your control" => "網路服務在您控制之下", "Log out" => "登出", -"Lost your password?" => "忘記密碼?", +"Automatic logon rejected!" => "自動登入被拒!", +"If you did not change your password recently, your account may be compromised!" => "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!", +"Please change your password to secure your account again." => "請更改您的密碼以再次取得您的帳戶的控制權。", +"Lost your password?" => "忘記密碼?", "remember" => "記住", "Log in" => "登入", -"You are logged out." => "你已登出", "prev" => "上一頁", "next" => "下一頁", -"Security Warning!" => "安全性警告!", -"Verify" => "驗證" +"Updating ownCloud to version %s, this may take a while." => "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。" ); diff --git a/core/lostpassword/controller.php b/core/lostpassword/controller.php index e64b16d3b83..3ef8eaf71aa 100644 --- a/core/lostpassword/controller.php +++ b/core/lostpassword/controller.php @@ -45,8 +45,6 @@ class OC_Core_LostPassword_Controller { $l = OC_L10N::get('core'); $from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply'); OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud'); - echo('Mailsent'); - self::displayLostPasswordPage(false, true); } else { self::displayLostPasswordPage(true, false); diff --git a/core/templates/exception.php b/core/templates/exception.php index 4b951fca51b..47792225557 100644 --- a/core/templates/exception.php +++ b/core/templates/exception.php @@ -5,7 +5,7 @@ <p class="exception"> <?php if($_['showsysinfo'] == true) { - echo 'If you would like to support ownCloud\'s developers and report this error in our <a href="http://bugs.owncloud.org">Bugtracker</a>, please copy the following informations into the description. <br><br><textarea readonly>'; + echo 'If you would like to support ownCloud\'s developers and report this error in our <a href="https://github.com/owncloud/core">bug tracker</a>, please copy the following informations into the description. <br><br><textarea readonly>'; echo 'Message: ' . $_['message'] . "\n"; echo 'Error Code: ' . $_['code'] . "\n"; echo 'File: ' . $_['file'] . "\n"; diff --git a/core/templates/installation.php b/core/templates/installation.php index 28fbf29b540..03c580c9b0b 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -1,7 +1,7 @@ -<input type='hidden' id='hasMySQL' value='<?php echo $_['hasMySQL'] ?>'></input> -<input type='hidden' id='hasSQLite' value='<?php echo $_['hasSQLite'] ?>'></input> -<input type='hidden' id='hasPostgreSQL' value='<?php echo $_['hasPostgreSQL'] ?>'></input> -<input type='hidden' id='hasOracle' value='<?php echo $_['hasOracle'] ?>'></input> +<input type='hidden' id='hasMySQL' value='<?php echo $_['hasMySQL'] ?>'> +<input type='hidden' id='hasSQLite' value='<?php echo $_['hasSQLite'] ?>'> +<input type='hidden' id='hasPostgreSQL' value='<?php echo $_['hasPostgreSQL'] ?>'> +<input type='hidden' id='hasOracle' value='<?php echo $_['hasOracle'] ?>'> <form action="index.php" method="post"> <input type="hidden" name="install" value="true" /> <?php if(count($_['errors']) > 0): ?> @@ -113,7 +113,7 @@ </p> <p class="infield groupmiddle"> <label for="dbname" class="infield"><?php echo $l->t( 'Database name' ); ?></label> - <input type="text" name="dbname" id="dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" autocomplete="off" pattern="[0-9a-zA-Z$_]+" /> + <input type="text" name="dbname" id="dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" autocomplete="off" pattern="[0-9a-zA-Z$_-]+" /> </p> </div> <?php endif; ?> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index ba5053edecf..a16d2c9e55d 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -67,8 +67,10 @@ </ul> </div></nav> - <div id="content"> - <?php echo $_['content']; ?> + <div id="content-wrapper"> + <div id="content"> + <?php echo $_['content']; ?> + </div> </div> </body> </html> diff --git a/core/templates/login.php b/core/templates/login.php index 10093baabf7..43e45997803 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -1,50 +1,50 @@ <!--[if IE 8]><style>input[type="checkbox"]{padding:0;}</style><![endif]--> <form method="post"> - <fieldset> - <?php if (!empty($_['redirect_url'])) { - echo '<input type="hidden" name="redirect_url" value="' . $_['redirect_url'] . '" />'; - } ?> - <ul> - <?php if (isset($_['invalidcookie']) && ($_['invalidcookie'])): ?> - <li class="errors"> - <?php echo $l->t('Automatic logon rejected!'); ?><br> - <small><?php echo $l->t('If you did not change your password recently, your account may be compromised!'); ?></small> - <br> - <small><?php echo $l->t('Please change your password to secure your account again.'); ?></small> - </li> - <?php endif; ?> - <?php if (isset($_['invalidpassword']) && ($_['invalidpassword'])): ?> - <a href="<?php echo OC_Helper::linkToRoute('core_lostpassword_index') ?>"> - <li class="errors"> - <?php echo $l->t('Lost your password?'); ?> - </li> - </a> - <?php endif; ?> - </ul> - <p class="infield grouptop"> - <input type="text" name="user" id="user" - value="<?php echo $_['username']; ?>"<?php echo $_['user_autofocus'] ? ' autofocus' : ''; ?> - autocomplete="on" required/> - <label for="user" class="infield"><?php echo $l->t('Username'); ?></label> - <img class="svg" src="<?php echo image_path('', 'actions/user.svg'); ?>" alt=""/> - </p> + <fieldset> + <?php if (!empty($_['redirect_url'])) { + echo '<input type="hidden" name="redirect_url" value="' . $_['redirect_url'] . '" />'; + } ?> + <ul> + <?php if (isset($_['invalidcookie']) && ($_['invalidcookie'])): ?> + <li class="errors"> + <?php echo $l->t('Automatic logon rejected!'); ?><br> + <small><?php echo $l->t('If you did not change your password recently, your account may be compromised!'); ?></small> + <br> + <small><?php echo $l->t('Please change your password to secure your account again.'); ?></small> + </li> + <?php endif; ?> + <?php if (isset($_['invalidpassword']) && ($_['invalidpassword'])): ?> + <a href="<?php echo OC_Helper::linkToRoute('core_lostpassword_index') ?>"> + <li class="errors"> + <?php echo $l->t('Lost your password?'); ?> + </li> + </a> + <?php endif; ?> + </ul> + <p class="infield grouptop"> + <input type="text" name="user" id="user" + value="<?php echo $_['username']; ?>"<?php echo $_['user_autofocus'] ? ' autofocus' : ''; ?> + autocomplete="on" required/> + <label for="user" class="infield"><?php echo $l->t('Username'); ?></label> + <img class="svg" src="<?php echo image_path('', 'actions/user.svg'); ?>" alt=""/> + </p> - <p class="infield groupbottom"> - <input type="password" name="password" id="password" value="" - required<?php echo $_['user_autofocus'] ? '' : ' autofocus'; ?> /> - <label for="password" class="infield"><?php echo $l->t('Password'); ?></label> - <img class="svg" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt=""/> - </p> - <input type="checkbox" name="remember_login" value="1" id="remember_login"/><label - for="remember_login"><?php echo $l->t('remember'); ?></label> - <input type="hidden" name="timezone-offset" id="timezone-offset"/> - <input type="submit" id="submit" class="login primary" value="<?php echo $l->t('Log in'); ?>"/> - </fieldset> + <p class="infield groupbottom"> + <input type="password" name="password" id="password" value="" + required<?php echo $_['user_autofocus'] ? '' : ' autofocus'; ?> /> + <label for="password" class="infield"><?php echo $l->t('Password'); ?></label> + <img class="svg" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt=""/> + </p> + <input type="checkbox" name="remember_login" value="1" id="remember_login"/><label + for="remember_login"><?php echo $l->t('remember'); ?></label> + <input type="hidden" name="timezone-offset" id="timezone-offset"/> + <input type="submit" id="submit" class="login primary" value="<?php echo $l->t('Log in'); ?>"/> + </fieldset> </form> <script> - $(document).ready(function () { - var visitortimezone = (-new Date().getTimezoneOffset() / 60); - $('#timezone-offset').val(visitortimezone); - }); + $(document).ready(function () { + var visitortimezone = (-new Date().getTimezoneOffset() / 60); + $('#timezone-offset').val(visitortimezone); + }); </script> diff --git a/core/templates/logout.php b/core/templates/logout.php deleted file mode 100644 index 2247ed8e70f..00000000000 --- a/core/templates/logout.php +++ /dev/null @@ -1 +0,0 @@ -<?php echo $l->t( 'You are logged out.' ); diff --git a/core/templates/update.php b/core/templates/update.php new file mode 100644 index 00000000000..c9f3144f257 --- /dev/null +++ b/core/templates/update.php @@ -0,0 +1,31 @@ +<ul> + <li class='update'> + <?php echo $l->t('Updating ownCloud to version %s, this may take a while.', array($_['version'])); ?><br /><br /> + </li> +</ul> +<script> + $(document).ready(function () { + OC.EventSource.requesttoken = oc_requesttoken; + var updateEventSource = new OC.EventSource(OC.webroot+'/core/ajax/update.php'); + updateEventSource.listen('success', function(message) { + $('<span>').append(message).append('<br />').appendTo($('.update')); + }); + updateEventSource.listen('error', function(message) { + $('<span>').addClass('error').append(message).append('<br />').appendTo($('.update')); + }); + updateEventSource.listen('failure', function(message) { + $('<span>').addClass('error').append(message).append('<br />').appendTo($('.update')); + $('<span>') + .addClass('error bold') + .append('<br />') + .append(t('core', 'The update was unsuccessful. Please report this issue to the <a href="https://github.com/owncloud/core/issues" target="_blank">ownCloud community</a>.')) + .appendTo($('.update')); + }); + updateEventSource.listen('done', function(message) { + $('<span>').addClass('bold').append('<br />').append(t('core', 'The update was successful. Redirecting you to ownCloud now.')).appendTo($('.update')); + setTimeout(function () { + window.location.href = OC.webroot; + }, 3000); + }); + }); +</script>
\ No newline at end of file diff --git a/core/templates/verify.php b/core/templates/verify.php deleted file mode 100644 index 600eaca05b7..00000000000 --- a/core/templates/verify.php +++ /dev/null @@ -1,18 +0,0 @@ -<form method="post"> - <fieldset> - <ul> - <li class="errors"> - <?php echo $l->t('Security Warning!'); ?><br> - <small><?php echo $l->t("Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again."); ?></small> - </li> - </ul> - <p class="infield"> - <input type="text" value="<?php echo $_['username']; ?>" disabled="disabled" /> - </p> - <p class="infield"> - <label for="password" class="infield"><?php echo $l->t( 'Password' ); ?></label> - <input type="password" name="password" id="password" value="" required /> - </p> - <input type="submit" id="submit" class="login" value="<?php echo $l->t( 'Verify' ); ?>" /> - </fieldset> -</form> diff --git a/issue_template.md b/issue_template.md new file mode 100644 index 00000000000..f9bff71af97 --- /dev/null +++ b/issue_template.md @@ -0,0 +1,46 @@ +### Expected behaviour +Tell us what should happen + +### Actual behaviour +Tell us what happens instead + +### Steps to reproduce +1. +2. +3. + +### Server configuration +Operating system: + +Web server: + +Database: + +PHP version: + +ownCloud version: + +### Client configuration +Browser: + +Operating system: + +### Logs +#### Web server error log +``` +Insert your webserver log here +``` + +#### ownCloud log (data/owncloud.log) +``` +Insert your ownCloud log here +``` + +#### Browser log +``` +Insert your browser log here, this could for example include: + +a) The javascript console log +b) The network log +c) ... +``` diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 0785bd05e65..c1497f76a41 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" -"PO-Revision-Date: 2012-12-23 19:06+0000\n" -"Last-Translator: aboodilankaboot <shiningmoon25@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -85,55 +85,55 @@ msgstr "" msgid "Settings" msgstr "تعديلات" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "اليوم" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -209,7 +209,6 @@ msgid "Password protect" msgstr "حماية كلمة السر" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "كلمة السر" @@ -554,10 +553,6 @@ msgstr "تذكر" msgid "Log in" msgstr "أدخل" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "تم الخروج بنجاح." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "السابق" @@ -566,16 +561,7 @@ msgstr "السابق" msgid "next" msgstr "التالي" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "تحذير أمان!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "الرجاء التحقق من كلمة السر. <br/>من الممكن أحياناً أن نطلب منك إعادة إدخال كلمة السر مرة أخرى." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "تحقيق" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 2f8cead51f3..b57cae5c403 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,72 @@ 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/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "الملفات" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "محذوف" @@ -65,122 +91,134 @@ msgstr "محذوف" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "إغلق" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "الاسم" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "حجم" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "معدل" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -192,27 +230,27 @@ msgstr "" msgid "Maximum upload size" msgstr "الحد الأقصى لحجم الملفات التي يمكن رفعها" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "حفظ" @@ -232,36 +270,36 @@ msgstr "مجلد" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "إرفع" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "تحميل" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index 3b32ba6301d..8224c627626 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 19:47+0000\n" -"Last-Translator: aboodilankaboot <shiningmoon25@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ 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" -#: js/settings-personal.js:31 templates/settings-personal.php:7 -msgid "Expire all versions" -msgstr "إنهاء تاريخ الإنتهاء لجميع الإصدارات" - #: js/versions.js:16 msgid "History" msgstr "السجل الزمني" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "الإصدارات" - -#: templates/settings-personal.php:10 -msgid "This will delete all existing backup versions of your files" -msgstr "هذه العملية ستقوم بإلغاء جميع إصدارات النسخ الاحتياطي للملفات" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "أصدرة الملفات" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 6a9cdf2b15b..dbb9b7359cf 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: 2012-12-24 00:11+0100\n" -"PO-Revision-Date: 2012-12-23 19:00+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -17,27 +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" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "المساعدة" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "شخصي" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "تعديلات" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "المستخدمين" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "" @@ -57,11 +57,15 @@ msgstr "" msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "لم يتم التأكد من الشخصية بنجاح" @@ -81,55 +85,55 @@ msgstr "معلومات إضافية" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "منذ ثواني" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "منذ دقيقة" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "اليوم" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index a800f4eef21..1da68062efd 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "المجموعة موجودة مسبقاً" msgid "Unable to add group" msgstr "فشل إضافة المجموعة" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "فشل عملية تفعيل التطبيق" @@ -44,14 +44,6 @@ msgstr "تم حفظ البريد الإلكتروني" msgid "Invalid email" msgstr "البريد الإلكتروني غير صالح" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "تم تغيير ال OpenID" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "طلبك غير مفهوم" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "فشل إزالة المجموعة" @@ -68,6 +60,10 @@ msgstr "فشل إزالة المستخدم" msgid "Language changed" msgstr "تم تغيير اللغة" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "طلبك غير مفهوم" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "لا يستطيع المدير إزالة حسابه من مجموعة المديرين" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 7aaa90abe9a..ab2b79bb6c3 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 19:40+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -180,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "المساعدة" diff --git a/l10n/ar/user_webdavauth.po b/l10n/ar/user_webdavauth.po index ac1aa5b4a5e..92180c70e7e 100644 --- a/l10n/ar/user_webdavauth.po +++ b/l10n/ar/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: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 19:22+0000\n" -"Last-Translator: aboodilankaboot <shiningmoon25@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +19,17 @@ 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" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "الرابط: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/bg_BG/core.po b/l10n/bg_BG/core.po index f40f16cbec4..a4addcd1355 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "" #: ajax/vcategories/add.php:37 msgid "This category already exists: " -msgstr "Категорията вече съществува:" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -76,7 +76,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Няма избрани категории за изтриване" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -87,57 +87,57 @@ msgstr "" msgid "Settings" msgstr "Настройки" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" -msgstr "" +msgstr "преди секунди" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" -msgstr "" +msgstr "преди 1 минута" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" -msgstr "" +msgstr "преди 1 час" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" -msgstr "" +msgstr "днес" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" -msgstr "" +msgstr "вчера" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" -msgstr "" +msgstr "последният месец" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" -msgstr "" +msgstr "последната година" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" -msgstr "" +msgstr "последните години" #: js/oc-dialogs.js:126 msgid "Choose" @@ -145,19 +145,19 @@ msgstr "" #: js/oc-dialogs.js:146 js/oc-dialogs.js:166 msgid "Cancel" -msgstr "Отказ" +msgstr "" #: js/oc-dialogs.js:162 msgid "No" -msgstr "Не" +msgstr "" #: js/oc-dialogs.js:163 msgid "Yes" -msgstr "Да" +msgstr "" #: js/oc-dialogs.js:180 msgid "Ok" -msgstr "Добре" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -165,10 +165,10 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -178,7 +178,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -206,12 +206,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Парола" @@ -275,23 +274,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -305,7 +304,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Ще получите връзка за нулиране на паролата Ви." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -315,18 +314,18 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" -msgstr "Потребител" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Нулиране на заявка" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Вашата парола е нулирана" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -334,11 +333,11 @@ msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Нова парола" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Нулиране на парола" +msgstr "" #: strings.php:5 msgid "Personal" @@ -350,7 +349,7 @@ msgstr "Потребители" #: strings.php:7 msgid "Apps" -msgstr "Програми" +msgstr "Приложения" #: strings.php:8 msgid "Admin" @@ -362,15 +361,15 @@ msgstr "Помощ" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Достъпът е забранен" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "облакът не намерен" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Редактиране на категориите" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" @@ -403,181 +402,168 @@ msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" -msgstr "Създаване на <strong>админ профил</strong>" +msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" -msgstr "Разширено" +msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" -msgstr "Директория за данни" +msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" -msgstr "Конфигуриране на базата" +msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" -msgstr "ще се ползва" +msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" -msgstr "Потребител за базата" +msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" -msgstr "Парола за базата" +msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" -msgstr "Име на базата" +msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" -msgstr "Хост за базата" +msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" -msgstr "Завършване на настройките" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Sunday" -msgstr "Неделя" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Monday" -msgstr "Понеделник" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Tuesday" -msgstr "Вторник" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Wednesday" -msgstr "Сряда" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Thursday" -msgstr "Четвъртък" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Friday" -msgstr "Петък" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Saturday" -msgstr "Събота" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "January" -msgstr "Януари" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "February" -msgstr "Февруари" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "March" -msgstr "Март" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "April" -msgstr "Април" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "May" -msgstr "Май" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "June" -msgstr "Юни" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "July" -msgstr "Юли" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "August" -msgstr "Август" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "September" -msgstr "Септември" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "October" -msgstr "Октомври" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "November" -msgstr "Ноември" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "December" -msgstr "Декември" +msgstr "" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "" +msgstr "уеб услуги под Ваш контрол" #: templates/layout.user.php:45 msgid "Log out" -msgstr "Изход" +msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" -msgstr "Забравена парола?" +msgstr "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" -msgstr "запомни" +msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" -msgstr "Вход" - -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Вие излязохте." +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "пред." +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "следващо" - -#: templates/verify.php:5 -msgid "Security Warning!" msgstr "" -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index aec7865e431..14ac7f3c7b6 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Stefan Ilivanov <ilivanov@gmail.com>, 2011. +# Stefan Ilivanov <ilivanov@gmail.com>, 2011,2013. # Yasen Pramatarov <yasen@lindeas.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -19,169 +19,207 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" -msgstr "Файлът е качен успешно" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" -msgstr "Файлът е качен частично" +msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" -msgstr "Фахлът не бе качен" +msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" -msgstr "Липсва временната папка" +msgstr "Липсва временна папка" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" -msgstr "Грешка при запис на диска" +msgstr "" + +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" #: appinfo/app.php:10 msgid "Files" msgstr "Файлове" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Изтриване" #: js/fileactions.js:181 msgid "Rename" -msgstr "" +msgstr "Преименуване" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" -msgstr "" +msgstr "препокриване" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" -msgstr "" +msgstr "отказ" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" -msgstr "" +msgstr "възтановяване" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" -msgstr "Грешка при качване" +msgstr "" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." -msgstr "Качването е отменено." +msgstr "Качването е спряно." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Име" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Размер" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Променено" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -191,39 +229,39 @@ msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Макс. размер за качване" +msgstr "Максимален размер за качване" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 означава без ограничение" +msgstr "Ползвайте 0 за без ограничения" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Запис" #: templates/index.php:7 msgid "New" -msgstr "Нов" +msgstr "Ново" #: templates/index.php:10 msgid "Text file" -msgstr "Текстов файл" +msgstr "" #: templates/index.php:12 msgid "Folder" @@ -233,36 +271,36 @@ msgstr "Папка" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Качване" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" -msgstr "Отказване на качването" +msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" -msgstr "Няма нищо, качете нещо!" +msgstr "Няма нищо тук. Качете нещо." -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Изтегляне" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" -msgstr "Файлът е прекалено голям" +msgstr "Файлът който сте избрали за качване е прекалено голям" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." +msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." -msgstr "Файловете се претърсват, изчакайте." +msgstr "" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 0db200dba5a..c5aca629edc 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov <ilivanov@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:51+0000\n" +"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Криптиране" -#: templates/settings.php:4 -msgid "Exclude the following file types from encryption" -msgstr "" +#: templates/settings.php:6 +msgid "Enable Encryption" +msgstr "Включване на криптирането" -#: templates/settings.php:5 +#: templates/settings.php:7 msgid "None" -msgstr "" +msgstr "Няма" -#: templates/settings.php:10 -msgid "Enable Encryption" -msgstr "" +#: templates/settings.php:12 +msgid "Exclude the following file types from encryption" +msgstr "Изключване на следните файлови типове от криптирането" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index d4483eadffc..656df3768cc 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov <ilivanov@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:47+0000\n" +"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\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" @@ -19,7 +20,7 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "Достъпът е даден" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" @@ -27,11 +28,11 @@ msgstr "" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "Даване на достъп" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "Попълнете всички задължителни полета" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." @@ -56,7 +57,7 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Външно хранилище" #: templates/settings.php:8 templates/settings.php:22 msgid "Mount point" @@ -64,15 +65,15 @@ msgstr "" #: templates/settings.php:9 msgid "Backend" -msgstr "" +msgstr "Администрация" #: templates/settings.php:10 msgid "Configuration" -msgstr "" +msgstr "Конфигурация" #: templates/settings.php:11 msgid "Options" -msgstr "" +msgstr "Опции" #: templates/settings.php:12 msgid "Applicable" @@ -84,11 +85,11 @@ msgstr "" #: templates/settings.php:85 msgid "None set" -msgstr "" +msgstr "Няма избрано" #: templates/settings.php:86 msgid "All Users" -msgstr "" +msgstr "Всички потребители" #: templates/settings.php:87 msgid "Groups" @@ -96,25 +97,25 @@ msgstr "Групи" #: templates/settings.php:95 msgid "Users" -msgstr "" +msgstr "Потребители" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Изтриване" #: templates/settings.php:124 msgid "Enable User External Storage" -msgstr "" +msgstr "Вкл. на поддръжка за външно потр. хранилище" #: templates/settings.php:125 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Позволено е на потребителите да ползват тяхно лично външно хранилище" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" -msgstr "" +msgstr "SSL основни сертификати" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" -msgstr "" +msgstr "Импортиране на основен сертификат" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 3e75975fb63..0d7fe218e8c 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov <ilivanov@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:45+0000\n" +"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\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" @@ -19,30 +20,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Парола" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Потвърждение" -#: templates/public.php:9 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s сподели папката %s с Вас" -#: templates/public.php:11 +#: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s сподели файла %s с Вас" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:22 templates/public.php:38 msgid "Download" -msgstr "" +msgstr "Изтегляне" -#: templates/public.php:29 +#: templates/public.php:37 msgid "No preview available for" -msgstr "" +msgstr "Няма наличен преглед за" -#: templates/public.php:37 +#: templates/public.php:43 msgid "web services under your control" -msgstr "" +msgstr "уеб услуги под Ваш контрол" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index df3fc299453..be466434b93 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov <ilivanov@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,21 +18,9 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" -msgstr "" - -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "История" #: templates/settings.php:3 msgid "Files Versioning" @@ -39,4 +28,4 @@ msgstr "" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Включено" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 3ba99f9b10d..5e238d11362 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov <ilivanov@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -17,136 +18,140 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" -msgstr "" +msgstr "Помощ" -#: app.php:292 +#: app.php:308 msgid "Personal" -msgstr "Лично" +msgstr "Лични" -#: app.php:297 +#: app.php:313 msgid "Settings" -msgstr "" +msgstr "Настройки" -#: app.php:302 +#: app.php:318 msgid "Users" -msgstr "" +msgstr "Потребители" -#: app.php:309 +#: app.php:325 msgid "Apps" -msgstr "" +msgstr "Приложения" -#: app.php:311 +#: app.php:327 msgid "Admin" -msgstr "" +msgstr "Админ" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." -msgstr "" +msgstr "Изтеглянето като ZIP е изключено." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Файловете трябва да се изтеглят един по един." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" -msgstr "" +msgstr "Назад към файловете" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." +msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив." + +#: helper.php:228 +msgid "couldn't be determined" msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Приложението не е включено." -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Проблем с идентификацията" +msgstr "Възникна проблем с идентификацията" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Ключът е изтекъл, моля презаредете страницата" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Файлове" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Текст" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Снимки" -#: template.php:103 +#: template.php:113 msgid "seconds ago" -msgstr "" +msgstr "преди секунди" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" -msgstr "" +msgstr "преди 1 минута" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "преди %d минути" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" -msgstr "" +msgstr "преди 1 час" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "преди %d часа" -#: template.php:108 +#: template.php:118 msgid "today" -msgstr "" +msgstr "днес" -#: template.php:109 +#: template.php:119 msgid "yesterday" -msgstr "" +msgstr "вчера" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" -msgstr "" +msgstr "преди %d дни" -#: template.php:111 +#: template.php:121 msgid "last month" -msgstr "" +msgstr "последният месец" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" -msgstr "" +msgstr "преди %d месеца" -#: template.php:113 +#: template.php:123 msgid "last year" -msgstr "" +msgstr "последната година" -#: template.php:114 +#: template.php:124 msgid "years ago" -msgstr "" +msgstr "последните години" #: updater.php:75 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s е налична. Получете <a href=\"%s\">повече информация</a>" #: updater.php:77 msgid "up to date" -msgstr "" +msgstr "е актуална" #: updater.php:80 msgid "updates check is disabled" -msgstr "" +msgstr "проверката за обновления е изключена" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Невъзможно откриване на категорията \"%s\"" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 37e75b3725c..4275c1ee1b3 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 18:49+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -32,25 +32,17 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Е-пощата е записана" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Неправилна е-поща" - -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID е сменено" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Невалидна заявка" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" @@ -58,7 +50,7 @@ msgstr "" #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "Проблем с идентификацията" +msgstr "Възникна проблем с идентификацията" #: ajax/removeuser.php:24 msgid "Unable to delete user" @@ -66,7 +58,11 @@ msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Езика е сменен" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Невалидна заявка" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -84,15 +80,15 @@ msgstr "" #: js/apps.js:28 js/apps.js:67 msgid "Disable" -msgstr "Изключване" +msgstr "" #: js/apps.js:28 js/apps.js:55 msgid "Enable" -msgstr "Включване" +msgstr "Включено" #: js/personal.js:69 msgid "Saving..." -msgstr "Записване..." +msgstr "" #: personal.php:42 personal.php:43 msgid "__language_name__" @@ -108,7 +104,7 @@ msgstr "" #: templates/apps.php:27 msgid "Select an App" -msgstr "Изберете програма" +msgstr "" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" @@ -149,7 +145,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "Клиенти" +msgstr "" #: templates/personal.php:13 msgid "Download Desktop Clients" @@ -173,43 +169,43 @@ msgstr "" #: templates/personal.php:23 msgid "Unable to change your password" -msgstr "Невъзможна промяна на паролата" +msgstr "" #: templates/personal.php:24 msgid "Current password" -msgstr "Текуща парола" +msgstr "" #: templates/personal.php:25 msgid "New password" -msgstr "Нова парола" +msgstr "" #: templates/personal.php:26 msgid "show" -msgstr "показва" +msgstr "" #: templates/personal.php:27 msgid "Change password" -msgstr "Промяна на парола" +msgstr "" #: templates/personal.php:33 msgid "Email" -msgstr "Е-поща" +msgstr "E-mail" #: templates/personal.php:34 msgid "Your email address" -msgstr "Адресът на е-пощата ви" +msgstr "" #: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" -msgstr "Въведете е-поща за възстановяване на паролата" +msgstr "" #: templates/personal.php:41 templates/personal.php:42 msgid "Language" -msgstr "Език" +msgstr "" #: templates/personal.php:47 msgid "Help translate" -msgstr "Помощ за превода" +msgstr "" #: templates/personal.php:52 msgid "WebDAV" @@ -243,7 +239,7 @@ msgstr "Групи" #: templates/users.php:32 msgid "Create" -msgstr "Ново" +msgstr "" #: templates/users.php:35 msgid "Default Storage" @@ -255,7 +251,7 @@ msgstr "" #: templates/users.php:60 templates/users.php:153 msgid "Other" -msgstr "Друго" +msgstr "" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 7d102e98bdf..0ec1c50339e 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -60,7 +64,7 @@ msgstr "" #: templates/settings.php:18 msgid "Password" -msgstr "" +msgstr "Парола" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -180,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Помощ" diff --git a/l10n/bg_BG/user_webdavauth.po b/l10n/bg_BG/user_webdavauth.po index b77ffa970b2..c541db398fd 100644 --- a/l10n/bg_BG/user_webdavauth.po +++ b/l10n/bg_BG/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/bn_BD/core.po b/l10n/bn_BD/core.po new file mode 100644 index 00000000000..8c24eb72e22 --- /dev/null +++ b/l10n/bn_BD/core.po @@ -0,0 +1,566 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Shubhra Paul <paul_shubhra@yahoo.com>, 2013. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:84 +#, php-format +msgid "User %s shared a file with you" +msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন" + +#: ajax/share.php:86 +#, php-format +msgid "User %s shared a folder with you" +msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন" + +#: ajax/share.php:88 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "%s নামের ব্যবহারকারী \"%s\" ফাইলটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s" + +#: ajax/share.php:90 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "%s নামের ব্যবহারকারী \"%s\" ফোল্ডারটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "যোগ করার মত কোন ক্যাটেগরি নেই ?" + +#: ajax/vcategories/add.php:37 +msgid "This category already exists: " +msgstr "এই ক্যাটেগরিটি পূর্ব থেকেই বিদ্যমানঃ" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "অবজেক্টের ধরণটি প্রদান করা হয় নি।" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "%s ID প্রদান করা হয় নি।" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি ।" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।" + +#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 +msgid "Settings" +msgstr "নিয়ামকসমূহ" + +#: js/js.js:711 +msgid "seconds ago" +msgstr "সেকেন্ড পূর্বে" + +#: js/js.js:712 +msgid "1 minute ago" +msgstr "1 মিনিট পূর্বে" + +#: js/js.js:713 +msgid "{minutes} minutes ago" +msgstr "{minutes} মিনিট পূর্বে" + +#: js/js.js:714 +msgid "1 hour ago" +msgstr "1 ঘন্টা পূর্বে" + +#: js/js.js:715 +msgid "{hours} hours ago" +msgstr "{hours} ঘন্টা পূর্বে" + +#: js/js.js:716 +msgid "today" +msgstr "আজ" + +#: js/js.js:717 +msgid "yesterday" +msgstr "গতকাল" + +#: js/js.js:718 +msgid "{days} days ago" +msgstr "{days} দিন পূর্বে" + +#: js/js.js:719 +msgid "last month" +msgstr "গতমাস" + +#: js/js.js:720 +msgid "{months} months ago" +msgstr "{months} মাস পূর্বে" + +#: js/js.js:721 +msgid "months ago" +msgstr "মাস পূর্বে" + +#: js/js.js:722 +msgid "last year" +msgstr "গত বছর" + +#: js/js.js:723 +msgid "years ago" +msgstr "বছর পূর্বে" + +#: js/oc-dialogs.js:126 +msgid "Choose" +msgstr "বেছে নিন" + +#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +msgid "Cancel" +msgstr "বাতির" + +#: js/oc-dialogs.js:162 +msgid "No" +msgstr "না" + +#: js/oc-dialogs.js:163 +msgid "Yes" +msgstr "হ্যাঁ" + +#: js/oc-dialogs.js:180 +msgid "Ok" +msgstr "তথাস্তু" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।" + +#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 +msgid "Error" +msgstr "সমস্যা" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "অ্যাপের নামটি সুনির্দিষ্ট নয়।" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "আবশ্যিক {file} টি সংস্থাপিত নেই !" + +#: js/share.js:124 js/share.js:594 +msgid "Error while sharing" +msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " + +#: js/share.js:135 +msgid "Error while unsharing" +msgstr "ভাগাভাগি বাতিল করতে সমস্যা দেখা দিয়েছে" + +#: js/share.js:142 +msgid "Error while changing permissions" +msgstr "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে" + +#: js/share.js:151 +msgid "Shared with you and the group {group} by {owner}" +msgstr "{owner} আপনার এবং {group} গোষ্ঠীর সাথে ভাগাভাগি করেছেন" + +#: js/share.js:153 +msgid "Shared with you by {owner}" +msgstr "{owner} আপনার সাথে ভাগাভাগি করেছেন" + +#: js/share.js:158 +msgid "Share with" +msgstr "যাদের সাথে ভাগাভাগি করা হয়েছে" + +#: js/share.js:163 +msgid "Share with link" +msgstr "লিংকের সাথে ভাগাভাগি কর" + +#: js/share.js:166 +msgid "Password protect" +msgstr "কূটশব্দ সুরক্ষিত" + +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 +msgid "Password" +msgstr "কূটশব্দ" + +#: js/share.js:172 +msgid "Email link to person" +msgstr "ব্যক্তির সাথে ই-মেইল যুক্ত কর" + +#: js/share.js:173 +msgid "Send" +msgstr "পাঠাও" + +#: js/share.js:177 +msgid "Set expiration date" +msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন" + +#: js/share.js:178 +msgid "Expiration date" +msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ" + +#: js/share.js:210 +msgid "Share via email:" +msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ" + +#: js/share.js:212 +msgid "No people found" +msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" + +#: js/share.js:239 +msgid "Resharing is not allowed" +msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" + +#: js/share.js:275 +msgid "Shared in {item} with {user}" +msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" + +#: js/share.js:296 +msgid "Unshare" +msgstr "ভাগাভাগি বাতিল কর" + +#: js/share.js:308 +msgid "can edit" +msgstr "সম্পাদনা করতে পারবেন" + +#: js/share.js:310 +msgid "access control" +msgstr "অধিগম্যতা নিয়ন্ত্রণ" + +#: js/share.js:313 +msgid "create" +msgstr "তৈরী করুন" + +#: js/share.js:316 +msgid "update" +msgstr "পরিবর্ধন কর" + +#: js/share.js:319 +msgid "delete" +msgstr "মুছে ফেল" + +#: js/share.js:322 +msgid "share" +msgstr "ভাগাভাগি কর" + +#: js/share.js:356 js/share.js:541 +msgid "Password protected" +msgstr "কূটশব্দদ্বারা সুরক্ষিত" + +#: js/share.js:554 +msgid "Error unsetting expiration date" +msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" + +#: js/share.js:566 +msgid "Error setting expiration date" +msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" + +#: js/share.js:581 +msgid "Sending ..." +msgstr "পাঠানো হচ্ছে......" + +#: js/share.js:592 +msgid "Email sent" +msgstr "ই-মেইল পাঠানো হয়েছে" + +#: lostpassword/controller.php:47 +msgid "ownCloud password reset" +msgstr "ownCloud কূটশব্দ পূনঃনির্ধারণ" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "পূনঃনির্ধারণ ই-মেইল পাঠানো হয়েছে।" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "অনুরোধ ব্যর্থ !" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 +msgid "Username" +msgstr "ব্যবহারকারী" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "অনুরোধ পূনঃনির্ধারণ" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "প্রবেশ পৃষ্ঠায়" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "নতুন কূটশব্দ" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "কূটশব্দ পূনঃনির্ধারণ কর" + +#: strings.php:5 +msgid "Personal" +msgstr "ব্যক্তিগত" + +#: strings.php:6 +msgid "Users" +msgstr "ব্যবহারকারী" + +#: strings.php:7 +msgid "Apps" +msgstr "অ্যাপস" + +#: strings.php:8 +msgid "Admin" +msgstr "প্রশাসন" + +#: strings.php:9 +msgid "Help" +msgstr "সহায়িকা" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "অধিগমনের অনুমতি নেই" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "ক্লাউড খুঁজে পাওয়া গেল না" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "ক্যাটেগরি সম্পাদনা" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "যোগ কর" + +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "নিরাপত্তাজনিত সতর্কতা" + +#: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 +msgid "Create an <strong>admin account</strong>" +msgstr "<strong>প্রশাসক একাউন্ট</strong> তৈরী করুন" + +#: templates/installation.php:50 +msgid "Advanced" +msgstr "সুচারু" + +#: templates/installation.php:52 +msgid "Data folder" +msgstr "ডাটা ফোল্ডার " + +#: templates/installation.php:59 +msgid "Configure the database" +msgstr "ডাটাবেচ কনফিগার করুন" + +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 +msgid "will be used" +msgstr "ব্যবহৃত হবে" + +#: templates/installation.php:107 +msgid "Database user" +msgstr "ডাটাবেজ ব্যবহারকারী" + +#: templates/installation.php:111 +msgid "Database password" +msgstr "ডাটাবেজ কূটশব্দ" + +#: templates/installation.php:115 +msgid "Database name" +msgstr "ডাটাবেজের নাম" + +#: templates/installation.php:123 +msgid "Database tablespace" +msgstr "ডাটাবেজ টেবলস্পেস" + +#: templates/installation.php:129 +msgid "Database host" +msgstr "ডাটাবেজ হোস্ট" + +#: templates/installation.php:134 +msgid "Finish setup" +msgstr "সেটআপ সুসম্পন্ন কর" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Sunday" +msgstr "রবিবার" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Monday" +msgstr "সোমবার" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Tuesday" +msgstr "মঙ্গলবার" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Wednesday" +msgstr "বুধবার" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Thursday" +msgstr "বৃহষ্পতিবার" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Friday" +msgstr "শুক্রবার" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Saturday" +msgstr "শনিবার" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "January" +msgstr "জানুয়ারি" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "February" +msgstr "ফেব্রুয়ারি" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "March" +msgstr "মার্চ" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "April" +msgstr "এপ্রিল" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "May" +msgstr "মে" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "June" +msgstr "জুন" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "July" +msgstr "জুলাই" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "August" +msgstr "অগাষ্ট" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "September" +msgstr "সেপ্টেম্বর" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "October" +msgstr "অক্টোবর" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "November" +msgstr "নভেম্বর" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "December" +msgstr "ডিসেম্বর" + +#: templates/layout.guest.php:42 +msgid "web services under your control" +msgstr "ওয়েব সার্ভিসের নিয়ন্ত্রণ আপনার হাতের মুঠোয়" + +#: templates/layout.user.php:45 +msgid "Log out" +msgstr "প্রস্থান" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "কূটশব্দ হারিয়েছেন?" + +#: templates/login.php:39 +msgid "remember" +msgstr "মনে রাখ" + +#: templates/login.php:41 +msgid "Log in" +msgstr "প্রবেশ" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "পূর্ববর্তী" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "পরবর্তী" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "%s ভার্সনে ownCloud পরিবর্ধন করা হচ্ছে, এজন্য কিছু সময় প্রয়োজন।" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po new file mode 100644 index 00000000000..33908fc14e1 --- /dev/null +++ b/l10n/bn_BD/files.po @@ -0,0 +1,305 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Shubhra Paul <paul_shubhra@yahoo.com>, 2013. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:05+0000\n" +"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.com>\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\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 কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "%s কে স্থানান্তর করা সম্ভব হলো না" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "ফাইলের নাম পরিবর্তন করা সম্ভব হলো না" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যা অজ্ঞাত।" + +#: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে" + +#: ajax/upload.php:22 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" + +#: ajax/upload.php:24 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "আপলোড করা ফাইলটি HTML ফর্মে নির্ধারিত MAX_FILE_SIZE নির্দেশিত সর্বোচ্চ আকার অতিক্রম করেছে " + +#: ajax/upload.php:26 +msgid "The uploaded file was only partially uploaded" +msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" + +#: ajax/upload.php:27 +msgid "No file was uploaded" +msgstr "কোন ফাইল আপলোড করা হয় নি" + +#: ajax/upload.php:28 +msgid "Missing a temporary folder" +msgstr "অস্থায়ী ফোল্ডার খোয়া গিয়েছে" + +#: ajax/upload.php:29 +msgid "Failed to write to disk" +msgstr "ডিস্কে লিখতে ব্যর্থ" + +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "যথেষ্ঠ পরিমাণ স্থান নেই" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "ভুল ডিরেক্টরি" + +#: appinfo/app.php:10 +msgid "Files" +msgstr "ফাইল" + +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 +msgid "Unshare" +msgstr "ভাগাভাগি বাতিল " + +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 +msgid "Delete" +msgstr "মুছে ফেল" + +#: js/fileactions.js:181 +msgid "Rename" +msgstr "পূনঃনামকরণ" + +#: js/filelist.js:205 js/filelist.js:207 +msgid "{new_name} already exists" +msgstr "{new_name} টি বিদ্যমান" + +#: js/filelist.js:205 js/filelist.js:207 +msgid "replace" +msgstr "প্রতিস্থাপন" + +#: js/filelist.js:205 +msgid "suggest name" +msgstr "নাম সুপারিশ করুন" + +#: js/filelist.js:205 js/filelist.js:207 +msgid "cancel" +msgstr "বাতিল" + +#: js/filelist.js:254 +msgid "replaced {new_name}" +msgstr "{new_name} প্রতিস্থাপন করা হয়েছে" + +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 +msgid "undo" +msgstr "ক্রিয়া প্রত্যাহার" + +#: js/filelist.js:256 +msgid "replaced {new_name} with {old_name}" +msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" + +#: js/filelist.js:288 +msgid "unshared {files}" +msgstr "{files} ভাগাভাগি বাতিল কর" + +#: js/filelist.js:290 +msgid "deleted {files}" +msgstr "{files} মুছে ফেলা হয়েছে" + +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "টি একটি অননুমোদিত নাম।" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "ফাইলের নামটি ফাঁকা রাখা যাবে না।" + +#: js/files.js:45 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" + +#: js/files.js:186 +msgid "generating ZIP-file, it may take some time." +msgstr "ZIP- ফাইল তৈরী করা হচ্ছে, এজন্য কিছু সময় আবশ্যক।" + +#: js/files.js:224 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার ০ বাইট" + +#: js/files.js:224 +msgid "Upload Error" +msgstr "আপলোড করতে সমস্যা " + +#: js/files.js:241 +msgid "Close" +msgstr "বন্ধ" + +#: js/files.js:260 js/files.js:376 js/files.js:409 +msgid "Pending" +msgstr "মুলতুবি" + +#: js/files.js:280 +msgid "1 file uploading" +msgstr "১টি ফাইল আপলোড করা হচ্ছে" + +#: js/files.js:283 js/files.js:338 js/files.js:353 +msgid "{count} files uploading" +msgstr "{count} টি ফাইল আপলোড করা হচ্ছে" + +#: js/files.js:357 js/files.js:393 +msgid "Upload cancelled." +msgstr "আপলোড বাতিল করা হয়েছে।" + +#: js/files.js:464 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" + +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL ফাঁকা রাখা যাবে না।" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" + +#: js/files.js:727 +msgid "{count} files scanned" +msgstr "{count} টি ফাইল স্ক্যান করা হয়েছে" + +#: js/files.js:735 +msgid "error while scanning" +msgstr "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে" + +#: js/files.js:808 templates/index.php:64 +msgid "Name" +msgstr "নাম" + +#: js/files.js:809 templates/index.php:75 +msgid "Size" +msgstr "আকার" + +#: js/files.js:810 templates/index.php:77 +msgid "Modified" +msgstr "পরিবর্তিত" + +#: js/files.js:829 +msgid "1 folder" +msgstr "১টি ফোল্ডার" + +#: js/files.js:831 +msgid "{count} folders" +msgstr "{count} টি ফোল্ডার" + +#: js/files.js:839 +msgid "1 file" +msgstr "১টি ফাইল" + +#: js/files.js:841 +msgid "{count} files" +msgstr "{count} টি ফাইল" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "ফাইল হ্যার্ডলিং" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "আপলোডের সর্বোচ্চ আকার" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "অনুমোদিত সর্বোচ্চ আকার" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার জন্য আবশ্যক।" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "ZIP ডাউনলোড সক্রিয় কর" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "০ এর অর্থ অসীম" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "ZIP ফাইলের ইনপুটের সর্বোচ্চ আকার" + +#: templates/admin.php:26 +msgid "Save" +msgstr "সংরক্ষন কর" + +#: templates/index.php:7 +msgid "New" +msgstr "নতুন" + +#: templates/index.php:10 +msgid "Text file" +msgstr "টেক্সট ফাইল" + +#: templates/index.php:12 +msgid "Folder" +msgstr "ফোল্ডার" + +#: templates/index.php:14 +msgid "From link" +msgstr " লিংক থেকে" + +#: templates/index.php:18 +msgid "Upload" +msgstr "আপলোড" + +#: templates/index.php:41 +msgid "Cancel upload" +msgstr "আপলোড বাতিল কর" + +#: templates/index.php:56 +msgid "Nothing in here. Upload something!" +msgstr "এখানে কিছুই নেই। কিছু আপলোড করুন !" + +#: templates/index.php:70 +msgid "Download" +msgstr "ডাউনলোড" + +#: templates/index.php:102 +msgid "Upload too large" +msgstr "আপলোডের আকারটি অনেক বড়" + +#: templates/index.php:104 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন " + +#: templates/index.php:109 +msgid "Files are being scanned, please wait." +msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" + +#: templates/index.php:112 +msgid "Current scanning" +msgstr "বর্তমান স্ক্যানিং" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po new file mode 100644 index 00000000000..8c13e55a14a --- /dev/null +++ b/l10n/bn_BD/files_encryption.po @@ -0,0 +1,34 @@ +# 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-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:15+0000\n" +"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.com>\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "Encryption" +msgstr "সংকেতায়ন" + +#: templates/settings.php:6 +msgid "Enable Encryption" +msgstr "সংকেতায়ন সক্রিয় কর" + +#: templates/settings.php:7 +msgid "None" +msgstr "কোনটিই নয়" + +#: templates/settings.php:12 +msgid "Exclude the following file types from encryption" +msgstr "সংকেতায়ন থেকে নিম্নোক্ত ধরণসমূহ বাদ দাও" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po new file mode 100644 index 00000000000..fc11b94750f --- /dev/null +++ b/l10n/bn_BD/files_external.po @@ -0,0 +1,120 @@ +# 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-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:28+0000\n" +"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.com>\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 +msgid "Access granted" +msgstr "অধিগমনের অনুমতি প্রদান করা হলো" + +#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +msgid "Error configuring Dropbox storage" +msgstr "Dropbox সংরক্ষণাগার নির্ধারণ করতে সমস্যা " + +#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +msgid "Grant access" +msgstr "অধিগমনের অনুমতি প্রদান কর" + +#: js/dropbox.js:73 js/google.js:72 +msgid "Fill out all required fields" +msgstr "আবশ্যিক সমস্ত ক্ষেত্র পূরণ করুন" + +#: js/dropbox.js:85 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "দয়া করে সঠিক এবং বৈধ Dropbox app key and secret প্রদান করুন।" + +#: js/google.js:26 js/google.js:73 js/google.js:78 +msgid "Error configuring Google Drive storage" +msgstr "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা " + +#: lib/config.php:434 +msgid "" +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:435 +msgid "" +"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "বাহ্যিক সংরক্ষণাগার" + +#: templates/settings.php:8 templates/settings.php:22 +msgid "Mount point" +msgstr "মাউন্ট পয়েন্ট" + +#: templates/settings.php:9 +msgid "Backend" +msgstr "পশ্চাদপট" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "কনফিগারেসন" + +#: templates/settings.php:11 +msgid "Options" +msgstr "বিকল্পসমূহ" + +#: templates/settings.php:12 +msgid "Applicable" +msgstr "প্রযোজ্য" + +#: templates/settings.php:27 +msgid "Add mount point" +msgstr "মাউন্ট পয়েন্ট যোগ কর" + +#: templates/settings.php:85 +msgid "None set" +msgstr "কোনটিই নির্ধারণ করা হয় নি" + +#: templates/settings.php:86 +msgid "All Users" +msgstr "সমস্ত ব্যবহারকারী" + +#: templates/settings.php:87 +msgid "Groups" +msgstr "গোষ্ঠীসমূহ" + +#: templates/settings.php:95 +msgid "Users" +msgstr "ব্যবহারকারী" + +#: templates/settings.php:108 templates/settings.php:109 +#: templates/settings.php:144 templates/settings.php:145 +msgid "Delete" +msgstr "মুছে ফেল" + +#: templates/settings.php:124 +msgid "Enable User External Storage" +msgstr "ব্যবহারকারীর বাহ্যিক সংরক্ষণাগার সক্রিয় কর" + +#: templates/settings.php:125 +msgid "Allow users to mount their own external storage" +msgstr "ব্যবহারকারীদেরকে তাদের নিজস্ব বাহ্যিক সংরক্ষনাগার সাউন্ট করতে অনুমোদন দাও" + +#: templates/settings.php:136 +msgid "SSL root certificates" +msgstr "SSL রুট সনদপত্র" + +#: templates/settings.php:153 +msgid "Import Root Certificate" +msgstr "রুট সনদপত্রটি আমদানি করুন" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po new file mode 100644 index 00000000000..55a97e9d95c --- /dev/null +++ b/l10n/bn_BD/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 09:58+0000\n" +"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.com>\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "কূটশব্দ" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "জমা দাও" + +#: templates/public.php:17 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" + +#: templates/public.php:19 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" + +#: templates/public.php:22 templates/public.php:38 +msgid "Download" +msgstr "ডাউনলোড" + +#: templates/public.php:37 +msgid "No preview available for" +msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" + +#: templates/public.php:43 +msgid "web services under your control" +msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po new file mode 100644 index 00000000000..2af1e4efdd9 --- /dev/null +++ b/l10n/bn_BD/files_versions.po @@ -0,0 +1,30 @@ +# 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-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/versions.js:16 +msgid "History" +msgstr "ইতিহাস" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "ফাইল ভার্সন করা" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "সক্রিয় " diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po new file mode 100644 index 00000000000..da90c84c976 --- /dev/null +++ b/l10n/bn_BD/lib.po @@ -0,0 +1,156 @@ +# 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-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:301 +msgid "Help" +msgstr "সহায়িকা" + +#: app.php:308 +msgid "Personal" +msgstr "ব্যক্তিগত" + +#: app.php:313 +msgid "Settings" +msgstr "নিয়ামকসমূহ" + +#: app.php:318 +msgid "Users" +msgstr "ব্যভহারকারী" + +#: app.php:325 +msgid "Apps" +msgstr "অ্যাপ" + +#: app.php:327 +msgid "Admin" +msgstr "প্রশাসক" + +#: files.php:365 +msgid "ZIP download is turned off." +msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" + +#: files.php:366 +msgid "Files need to be downloaded one by one." +msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।" + +#: files.php:366 files.php:391 +msgid "Back to Files" +msgstr "ফাইলে ফিরে চল" + +#: files.php:390 +msgid "Selected files too large to generate zip file." +msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।" + +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "অ্যাপ্লিকেসনটি সক্রিয় নয়" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "অনুমোদন ঘটিত সমস্যা" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "ফাইল" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: template.php:113 +msgid "seconds ago" +msgstr "সেকেন্ড পূর্বে" + +#: template.php:114 +msgid "1 minute ago" +msgstr "১ মিনিট পূর্বে" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "%d মিনিট পূর্বে" + +#: template.php:116 +msgid "1 hour ago" +msgstr "1 ঘন্টা পূর্বে" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 +msgid "today" +msgstr "আজ" + +#: template.php:119 +msgid "yesterday" +msgstr "গতকাল" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "%d দিন পূর্বে" + +#: template.php:121 +msgid "last month" +msgstr "গত মাস" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:123 +msgid "last year" +msgstr "গত বছর" + +#: template.php:124 +msgid "years ago" +msgstr "বছর পূর্বে" + +#: updater.php:75 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "%s এখন সুলভ। <a href=\"%s\">আরও জানুন</a>" + +#: updater.php:77 +msgid "up to date" +msgstr "সর্বশেষ" + +#: updater.php:80 +msgid "updates check is disabled" +msgstr "পরিবর্ধন পরীক্ষণ করা বন্ধ রাখা হয়েছে" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po new file mode 100644 index 00000000000..34c75b953eb --- /dev/null +++ b/l10n/bn_BD/settings.po @@ -0,0 +1,268 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Shubhra Paul <paul_shubhra@yahoo.com>, 2013. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "গোষ্ঠী যোগ করা সম্ভব হলো না" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "অ্যপটি সক্রিয় করতে সক্ষম নয়।" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "ই-মেইল সংরক্ষন করা হয়েছে" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "ই-মেইলটি সঠিক নয়" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "গোষ্ঠী মুছে ফেলা সম্ভব হলো না " + +#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "অনুমোদন ঘটিত সমস্যা" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "ব্যবহারকারী মুছে ফেলা সম্ভব হলো না " + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "ভাষা পরিবর্তন করা হয়েছে" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "অনুরোধটি যথাযথ নয়" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "প্রশাসকবৃন্দ তাদেরকে প্রশাসক গোষ্ঠী থেকে মুছে ফেলতে পারবেন না" + +#: ajax/togglegroups.php:28 +#, php-format +msgid "Unable to add user to group %s" +msgstr " %s গোষ্ঠীতে ব্যবহারকারী যোগ করা সম্ভব হলো না " + +#: ajax/togglegroups.php:34 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "%s গোষ্ঠী থেকে ব্যবহারকারীকে অপসারণ করা সম্ভব হলো না" + +#: js/apps.js:28 js/apps.js:67 +msgid "Disable" +msgstr "নিষ্ক্রিয়" + +#: js/apps.js:28 js/apps.js:55 +msgid "Enable" +msgstr "সক্রিয় " + +#: js/personal.js:69 +msgid "Saving..." +msgstr "সংরক্ষণ করা হচ্ছে.." + +#: personal.php:42 personal.php:43 +msgid "__language_name__" +msgstr "__language_name__" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "আপনার অ্যাপটি যোগ করুন" + +#: templates/apps.php:11 +msgid "More Apps" +msgstr "আরও অ্যাপ" + +#: templates/apps.php:27 +msgid "Select an App" +msgstr "অ্যাপ নির্বাচন করুন" + +#: templates/apps.php:31 +msgid "See application page at apps.owncloud.com" +msgstr "apps.owncloud.com এ অ্যাপ্লিকেসন পৃষ্ঠা দেখুন" + +#: templates/apps.php:32 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "<span class=\"licence\"></span>-লাইসেন্সধারী <span class=\"author\"></span>" + +#: templates/help.php:3 +msgid "User Documentation" +msgstr "ব্যবহারকারী সহায়িকা" + +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "প্রশাসক সহায়িকা" + +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "অনলাইন সহায়িকা" + +#: templates/help.php:7 +msgid "Forum" +msgstr "ফোরাম" + +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "বাগট্র্যাকার" + +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "বাণিজ্যিক সাপোর্ট" + +#: templates/personal.php:8 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" +msgstr "আপনি ব্যবহার করছেন <strong>%s</strong>, সুলভ <strong>%s</strong> এর মধ্যে।" + +#: templates/personal.php:12 +msgid "Clients" +msgstr "ক্লায়েন্ট" + +#: templates/personal.php:13 +msgid "Download Desktop Clients" +msgstr "ডেস্কটপ ক্লায়েন্ট ডাউনলোড করুন" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "অ্যান্ড্রয়েড ক্লায়েন্ট ডাউনলোড করুন" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "iOS ক্লায়েন্ট ডাউনলোড করুন" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 +msgid "Password" +msgstr "কূটশব্দ" + +#: templates/personal.php:22 +msgid "Your password was changed" +msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে " + +#: templates/personal.php:23 +msgid "Unable to change your password" +msgstr "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়" + +#: templates/personal.php:24 +msgid "Current password" +msgstr "বর্তমান কূটশব্দ" + +#: templates/personal.php:25 +msgid "New password" +msgstr "নতুন কূটশব্দ" + +#: templates/personal.php:26 +msgid "show" +msgstr "প্রদর্শন" + +#: templates/personal.php:27 +msgid "Change password" +msgstr "কূটশব্দ পরিবর্তন করুন" + +#: templates/personal.php:33 +msgid "Email" +msgstr "ই-মেইল " + +#: templates/personal.php:34 +msgid "Your email address" +msgstr "আপনার ই-মেইল ঠিকানা" + +#: templates/personal.php:35 +msgid "Fill in an email address to enable password recovery" +msgstr "কূটশব্দ পূনরূদ্ধার সক্রিয় করার জন্য ই-মেইল ঠিকানাটি পূরণ করুন" + +#: templates/personal.php:41 templates/personal.php:42 +msgid "Language" +msgstr "ভাষা" + +#: templates/personal.php:47 +msgid "Help translate" +msgstr "অনুবাদ করতে সহায়তা করুন" + +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "WebDAV" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন" + +#: templates/personal.php:63 +msgid "Version" +msgstr "ভার্সন" + +#: templates/personal.php:65 +msgid "" +"Developed by the <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +msgstr "তৈলী করেছেন <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud সম্প্রদায়</a>, যার <a href=\"https://github.com/owncloud\" target=\"_blank\"> উৎস কোডটি <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> এর অধীনে লাইসেন্সকৃত।" + +#: templates/users.php:21 templates/users.php:81 +msgid "Name" +msgstr "রাম" + +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 +msgid "Groups" +msgstr "গোষ্ঠীসমূহ" + +#: templates/users.php:32 +msgid "Create" +msgstr "তৈরী কর" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "পূর্বনির্ধারিত সংরক্ষণাগার" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "অসীম" + +#: templates/users.php:60 templates/users.php:153 +msgid "Other" +msgstr "অন্যান্য" + +#: templates/users.php:85 templates/users.php:117 +msgid "Group Admin" +msgstr "গোষ্ঠী প্রশাসক" + +#: templates/users.php:87 +msgid "Storage" +msgstr "সংরক্ষণাগার" + +#: templates/users.php:133 +msgid "Default" +msgstr "পূর্বনির্ধারিত" + +#: templates/users.php:161 +msgid "Delete" +msgstr "মুছে ফেল" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po new file mode 100644 index 00000000000..68b329db2f1 --- /dev/null +++ b/l10n/bn_BD/user_ldap.po @@ -0,0 +1,195 @@ +# 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-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:8 +msgid "" +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +msgid "" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:15 +msgid "Host" +msgstr "হোস্ট" + +#: templates/settings.php:15 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "SSL আবশ্যক না হলে আপনি এই প্রটোকলটি মুছে ফেলতে পারেন । এরপর শুরু করুন এটা দিয়ে ldaps://" + +#: templates/settings.php:16 +msgid "Base DN" +msgstr "ভিত্তি DN" + +#: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।" + +#: templates/settings.php:17 +msgid "User DN" +msgstr "ব্যবহারকারি DN" + +#: templates/settings.php:17 +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 "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. পরিচয় গোপন রেখে অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।" + +#: templates/settings.php:18 +msgid "Password" +msgstr "কূটশব্দ" + +#: templates/settings.php:18 +msgid "For anonymous access, leave DN and Password empty." +msgstr "অজ্ঞাতকুলশীল অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।" + +#: templates/settings.php:19 +msgid "User Login Filter" +msgstr "ব্যবহারকারির প্রবেশ ছাঁকনী" + +#: templates/settings.php:19 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "প্রবেশের চেষ্টা করার সময় প্রযোজ্য ছাঁকনীটি নির্ধারণ করবে। প্রবেশের সময় ব্যবহারকারী নামটি %%uid দিয়ে প্রতিস্থাপিত হবে।" + +#: templates/settings.php:19 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "%%uid স্থানধারক ব্যবহার করুন, উদাহরণঃ \"uid=%%uid\"" + +#: templates/settings.php:20 +msgid "User List Filter" +msgstr "ব্যবহারকারী তালিকা ছাঁকনী" + +#: templates/settings.php:20 +msgid "Defines the filter to apply, when retrieving users." +msgstr "ব্যবহারকারী উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।" + +#: templates/settings.php:20 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "কোন স্থানধারক ব্যতীত, যেমনঃ \"objectClass=person\"।" + +#: templates/settings.php:21 +msgid "Group Filter" +msgstr "গোষ্ঠী ছাঁকনী" + +#: templates/settings.php:21 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "গোষ্ঠীসমূহ উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।" + +#: templates/settings.php:21 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "কোন স্থান ধারক ব্যতীত, উদাহরণঃ\"objectClass=posixGroup\"।" + +#: templates/settings.php:24 +msgid "Port" +msgstr "পোর্ট" + +#: templates/settings.php:25 +msgid "Base User Tree" +msgstr "ভিত্তি ব্যবহারকারি বৃক্ষাকারে" + +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:26 +msgid "Base Group Tree" +msgstr "ভিত্তি গোষ্ঠী বৃক্ষাকারে" + +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:27 +msgid "Group-Member association" +msgstr "গোষ্ঠী-সদস্য সংস্থাপন" + +#: templates/settings.php:28 +msgid "Use TLS" +msgstr "TLS ব্যবহার কর" + +#: templates/settings.php:28 +msgid "Do not use it for SSL connections, it will fail." +msgstr "SSL সংযোগের জন্য এটি ব্যবহার করবেন না, তাহলে ব্যর্থ হবেনই।" + +#: templates/settings.php:29 +msgid "Case insensitve LDAP server (Windows)" +msgstr "বর্ণ অসংবেদী LDAP সার্ভার (উইন্ডোজ)" + +#: templates/settings.php:30 +msgid "Turn off SSL certificate validation." +msgstr "SSL সনদপত্র যাচাইকরণ বন্ধ রাক।" + +#: templates/settings.php:30 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "শুধুমাত্র যদি এই বিকল্পটি ব্যবহার করেই সংযোগ কার্যকরী হয় তবে আপনার ownCloud সার্ভারে LDAP সার্ভারের SSL সনদপত্রটি আমদানি করুন।" + +#: templates/settings.php:30 +msgid "Not recommended, use for testing only." +msgstr "অনুমোদিত নয়, শুধুমাত্র পরীক্ষামূলক ব্যবহারের জন্য।" + +#: templates/settings.php:31 +msgid "User Display Name Field" +msgstr "ব্যবহারকারীর প্রদর্শিতব্য নামের ক্ষেত্র" + +#: templates/settings.php:31 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "ব্যবহারকারীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।" + +#: templates/settings.php:32 +msgid "Group Display Name Field" +msgstr "গোষ্ঠীর প্রদর্শিতব্য নামের ক্ষেত্র" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "গোষ্ঠীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।" + +#: templates/settings.php:34 +msgid "in bytes" +msgstr "বাইটে" + +#: templates/settings.php:36 +msgid "in seconds. A change empties the cache." +msgstr "সেকেন্ডে। কোন পরিবর্তন ক্যাসে খালি করবে।" + +#: templates/settings.php:37 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "ব্যবহারকারী নামের জন্য ফাঁকা রাখুন (পূর্বনির্ধারিত)। অন্যথায়, LDAP/AD বৈশিষ্ট্য নির্ধারণ করুন।" + +#: templates/settings.php:39 +msgid "Help" +msgstr "সহায়িকা" diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po new file mode 100644 index 00000000000..6bf9079f19b --- /dev/null +++ b/l10n/bn_BD/user_webdavauth.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Shubhra Paul <paul_shubhra@yahoo.com>, 2013. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "URL:http://" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 9fd20a8ef12..a9940eccf88 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -4,14 +4,14 @@ # # Translators: # <joan@montane.cat>, 2012. -# <rcalvoi@yahoo.com>, 2011-2012. +# <rcalvoi@yahoo.com>, 2011-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" -"PO-Revision-Date: 2012-12-23 14:22+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -85,55 +85,55 @@ msgstr "Error en eliminar %s dels preferits." msgid "Settings" msgstr "Arranjament" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "avui" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ahir" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "el mes passat" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "l'any passat" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "anys enrere" @@ -209,7 +209,6 @@ msgid "Password protect" msgstr "Protegir amb contrasenya" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Contrasenya" @@ -554,10 +553,6 @@ msgstr "recorda'm" msgid "Log in" msgstr "Inici de sessió" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Heu tancat la sessió." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" @@ -566,16 +561,7 @@ msgstr "anterior" msgid "next" msgstr "següent" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Avís de seguretat!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Comproveu la vostra contrasenya. <br/>Per raons de seguretat se us pot demanar escriure de nou la vostra contrasenya." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Comprova" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "S'està actualitzant ownCloud a la versió %s, pot trigar una estona." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 478d4fded6c..159d191a912 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -7,14 +7,15 @@ # <joan@montane.cat>, 2012. # <josep_tomas@hotmail.com>, 2012. # Josep Tomàs <jtomas.binsoft@gmail.com>, 2012. -# <rcalvoi@yahoo.com>, 2011-2012. +# <rcalvoi@yahoo.com>, 2011-2013. +# <sacoo2@hotmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 16:57+0000\n" -"Last-Translator: Josep Tomàs <jtomas.binsoft@gmail.com>\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 07:36+0000\n" +"Last-Translator: rogerc <rcalvoi@yahoo.com>\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" @@ -22,46 +23,72 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr " No s'ha pogut moure %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "No es pot canviar el nom del fitxer" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "No s'ha carregat cap fitxer. Error desconegut" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "El fitxer s'ha pujat correctament" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha pujat parcialment" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "El fitxer no s'ha pujat" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "S'ha perdut un fitxer temporal" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "No hi ha prou espai disponible" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Directori no vàlid." + #: appinfo/app.php:10 msgid "Files" msgstr "Fitxers" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Deixa de compartir" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Suprimeix" @@ -69,122 +96,134 @@ msgstr "Suprimeix" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substitueix" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugereix un nom" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "s'ha substituït {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desfés" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "no compartits {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "eliminats {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' és un nom no vàlid per un fitxer." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "El nom del fitxer no pot ser buit." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "s'estan generant fitxers ZIP, pot trigar una estona." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Error en la pujada" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Tanca" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendents" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fitxers en pujada" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "El nom de la carpeta no és vàlid. L'ús de \"Compartit\" està reservat per a OwnCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "La URL no pot ser buida" + +#: js/files.js:543 +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:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fitxers escannejats" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "error durant l'escaneig" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Mida" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fitxers" @@ -196,27 +235,27 @@ msgstr "Gestió de fitxers" msgid "Maximum upload size" msgstr "Mida màxima de pujada" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "màxim possible:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necessari per fitxers múltiples i baixada de carpetes" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Activa la baixada ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 és sense límit" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Mida màxima d'entrada per fitxers ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Desa" @@ -236,36 +275,36 @@ msgstr "Carpeta" msgid "From link" msgstr "Des d'enllaç" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Puja" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Baixa" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 4bd9bdf45c9..0db50601e4c 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-10 02:04+0200\n" -"PO-Revision-Date: 2012-10-09 07:30+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,10 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Expira totes les versions" - #: js/versions.js:16 msgid "History" msgstr "Historial" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versions" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Fitxers de Versions" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 0bdb8f916ec..965da96ee31 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <rcalvoi@yahoo.com>, 2012. +# <rcalvoi@yahoo.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-17 00:01+0100\n" -"PO-Revision-Date: 2012-11-16 08:22+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 09:24+0000\n" "Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ajuda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Configuració" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Usuaris" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplicacions" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administració" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Els fitxers s'han de baixar d'un en un." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Torna a Fitxers" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "no s'ha pogut determinar" + #: json.php:28 msgid "Application is not enabled" msgstr "L'aplicació no està habilitada" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Error d'autenticació" @@ -82,55 +86,55 @@ msgstr "Text" msgid "Images" msgstr "Imatges" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "segons enrere" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "fa 1 minut" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "fa %d minuts" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "fa 1 hora" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "fa %d hores" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "avui" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ahir" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "fa %d dies" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "el mes passat" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "fa %d mesos" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "l'any passat" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "fa anys" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 03cdc399cfb..4d6dc883603 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "El grup ja existeix" msgid "Unable to add group" msgstr "No es pot afegir el grup" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "No s'ha pogut activar l'apliació" @@ -46,14 +46,6 @@ msgstr "S'ha desat el correu electrònic" msgid "Invalid email" msgstr "El correu electrònic no és vàlid" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID ha canviat" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Sol.licitud no vàlida" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "No es pot eliminar el grup" @@ -70,6 +62,10 @@ msgstr "No es pot eliminar l'usuari" msgid "Language changed" msgstr "S'ha canviat l'idioma" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Sol.licitud no vàlida" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Els administradors no es poden eliminar del grup admin" @@ -249,15 +245,15 @@ msgstr "Crea" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Emmagatzemament per defecte" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Il·limitat" #: templates/users.php:60 templates/users.php:153 msgid "Other" -msgstr "Altre" +msgstr "Un altre" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" @@ -265,11 +261,11 @@ msgstr "Grup Admin" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Emmagatzemament" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Per defecte" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 10b45cc3214..8cf04dcae1b 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <rcalvoi@yahoo.com>, 2012. +# <rcalvoi@yahoo.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-17 00:09+0100\n" -"PO-Revision-Date: 2012-12-16 09:56+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 07:21+0000\n" "Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgstr "<b>Avís:</b> Les aplicacions user_ldap i user_webdavauth són incompati #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Avís:</b> El mòdul PHP LDAP necessari no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "<b>Avís:</b> El mòdul PHP LDAP no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li." #: templates/settings.php:15 msgid "Host" @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "DN Base" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "Una DN Base per línia" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat" @@ -115,10 +119,18 @@ msgstr "Port" msgid "Base User Tree" msgstr "Arbre base d'usuaris" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "Una DN Base d'Usuari per línia" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Arbre base de grups" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "Una DN Base de Grup per línia" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Associació membres-grup" diff --git a/l10n/ca/user_webdavauth.po b/l10n/ca/user_webdavauth.po index c7a053911de..bd7df15438f 100644 --- a/l10n/ca/user_webdavauth.po +++ b/l10n/ca/user_webdavauth.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <rcalvoi@yahoo.com>, 2012. +# <rcalvoi@yahoo.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 09:21+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 07:22+0000\n" "Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,17 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "Autenticació WebDAV" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloud enviarà les credencials d'usuari a aquesta URL. S'interpretarà http 401 i http 403 com a credencials incorrectes i tots els altres codis com a credencials correctes." +"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 "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." diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index e00aa1d03f3..66b36315f8e 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -6,14 +6,14 @@ # Jan Krejci <krejca85@gmail.com>, 2011. # Martin <fireball@atlas.cz>, 2011-2012. # Michal Hrušecký <Michal@hrusecky.net>, 2012. -# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 09:04+0000\n" -"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,55 +87,55 @@ msgstr "Chyba při odebírání %s z oblíbených." msgid "Settings" msgstr "Nastavení" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "dnes" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "včera" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "minulý mesíc" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "před měsíci" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "minulý rok" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "před lety" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "Není určen typ objektu." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Chyba" @@ -178,7 +178,7 @@ msgstr "Není určen název aplikace." msgid "The required file {file} is not installed!" msgstr "Požadovaný soubor {file} není nainstalován." -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -206,12 +206,11 @@ msgstr "Sdílet s" msgid "Share with link" msgstr "Sdílet s odkazem" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Chránit heslem" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Heslo" @@ -275,23 +274,23 @@ msgstr "smazat" msgid "share" msgstr "sdílet" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Odesílám..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "E-mail odeslán" @@ -315,8 +314,8 @@ msgstr "Obnovovací e-mail odeslán." msgid "Request failed!" msgstr "Požadavek selhal." -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Uživatelské jméno" @@ -405,44 +404,44 @@ msgstr "Váš adresář dat a všechny Vaše soubory jsou pravděpodobně přís msgid "Create an <strong>admin account</strong>" msgstr "Vytvořit <strong>účet správce</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Pokročilé" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Složka s daty" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Nastavit databázi" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "bude použito" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Dokončit nastavení" @@ -530,36 +529,32 @@ msgstr "webové služby pod Vaší kontrolou" msgid "Log out" msgstr "Odhlásit se" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatické přihlášení odmítnuto." -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován." -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "zapamatovat si" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Přihlásit" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Jste odhlášeni." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "předchozí" @@ -568,16 +563,7 @@ msgstr "předchozí" msgid "next" msgstr "následující" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Bezpečnostní upozornění." - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Ověřte, prosím, své heslo. <br/>Z bezpečnostních důvodů můžete být občas požádáni o jeho opětovné zadání." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Ověřit" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index ae2e4682356..c5417ef8688 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -5,13 +5,13 @@ # Translators: # Martin <fireball@atlas.cz>, 2011-2012. # Michal Hrušecký <Michal@hrusecky.net>, 2012. -# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 05:15+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 08:32+0000\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,72 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/upload.php:20 +#: 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" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Nelze přesunout %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Nelze přejmenovat soubor" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Soubor nebyl odeslán. Neznámá chyba" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Nedostatek dostupného místa" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Neplatný adresář" + #: appinfo/app.php:10 msgid "Files" msgstr "Soubory" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Smazat" @@ -67,122 +93,134 @@ msgstr "Smazat" msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "nahradit" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "navrhnout název" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "zrušit" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "nahrazeno {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "zpět" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "sdílení zrušeno pro {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "smazáno {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' je neplatným názvem souboru." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Název souboru nemůže být prázdný řetězec." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generuji ZIP soubor, může to nějakou dobu trvat." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Chyba odesílání" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Zavřít" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Čekající" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "odesílám {count} souborů" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Neplatný název složky. Použití názvu \"Shared\" je rezervováno pro interní úžití službou Owncloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL nemůže být prázdná" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "prozkoumáno {count} souborů" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "chyba při prohledávání" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Název" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Velikost" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Změněno" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 složka" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 soubor" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} soubory" @@ -194,27 +232,27 @@ msgstr "Zacházení se soubory" msgid "Maximum upload size" msgstr "Maximální velikost pro odesílání" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "největší možná: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Potřebné pro více-souborové stahování a stahování složek." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Povolit ZIP-stahování" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 znamená bez omezení" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximální velikost vstupu pro ZIP soubory" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Uložit" @@ -234,36 +272,36 @@ msgstr "Složka" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Odeslat" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Odeslaný soubor je příliš velký" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 2f109044074..3e62a18ee40 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 11:58+0000\n" -"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,10 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Vypršet všechny verze" - #: js/versions.js:16 msgid "History" msgstr "Historie" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Verze" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Odstraní všechny existující zálohované verze Vašich souborů" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Verzování souborů" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index dd8693c6c82..55cc3d0f58c 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -4,13 +4,13 @@ # # Translators: # Martin <fireball@atlas.cz>, 2012. -# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-15 10:08+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 11:01+0000\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -19,51 +19,55 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Nápověda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Osobní" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Nastavení" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Uživatelé" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplikace" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administrace" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Stahování ZIPu je vypnuto." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Soubory musí být stahovány jednotlivě." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Zpět k souborům" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Vybrané soubory jsou příliš velké pro vytvoření zip souboru." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "nelze zjistit" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplikace není povolena" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Chyba ověření" @@ -83,55 +87,55 @@ msgstr "Text" msgid "Images" msgstr "Obrázky" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "před vteřinami" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "před 1 minutou" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "před %d minutami" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "před hodinou" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "před %d hodinami" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "dnes" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "včera" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "před %d dny" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "minulý měsíc" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Před %d měsíci" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "loni" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "před lety" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 2fd34e04214..46a8fc5c515 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 20:08+0000\n" -"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,7 +35,7 @@ msgstr "Skupina již existuje" msgid "Unable to add group" msgstr "Nelze přidat skupinu" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Nelze povolit aplikaci." @@ -47,14 +47,6 @@ msgstr "E-mail uložen" msgid "Invalid email" msgstr "Neplatný e-mail" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID změněno" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Neplatný požadavek" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Nelze smazat skupinu" @@ -71,6 +63,10 @@ msgstr "Nelze smazat uživatele" msgid "Language changed" msgstr "Jazyk byl změněn" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Neplatný požadavek" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Správci se nemohou odebrat sami ze skupiny správců" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 89d650bf77d..225c039f836 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -4,13 +4,13 @@ # # Translators: # Martin <fireball@atlas.cz>, 2012. -# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" -"PO-Revision-Date: 2012-12-15 15:30+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 11:09+0000\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -28,8 +28,8 @@ msgstr "<b>Varování:</b> Aplikace user_ldap a user_webdavauth nejsou kompatibi #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "<b>Varování:</b> není nainstalován LDAP modul pro PHP, podpůrná vrstva nebude fungovat. Požádejte, prosím, správce systému aby jej nainstaloval." #: templates/settings.php:15 @@ -46,6 +46,10 @@ msgid "Base DN" msgstr "Základní DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "Jedna základní DN na řádku" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny" @@ -116,10 +120,18 @@ msgstr "Port" msgid "Base User Tree" msgstr "Základní uživatelský strom" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "Jedna uživatelská základní DN na řádku" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Základní skupinový strom" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "Jedna skupinová základní DN na řádku" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Asociace člena skupiny" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index 3545665816d..28b3d2f8f19 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 19:51+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 09:06+0000\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,17 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "Ověření WebDAV" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloud odešle přihlašovací údaje uživatele na URL a z návratové hodnoty určí stav přihlášení. Http 401 a 403 vyhodnotí jako neplatné údaje a všechny ostatní jako úspěšné přihlášení." +"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 "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." diff --git a/l10n/da/core.po b/l10n/da/core.po index 6fa46250122..421994c63c8 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" -"PO-Revision-Date: 2012-12-23 21:57+0000\n" -"Last-Translator: cronner <cronner@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -91,55 +91,55 @@ msgstr "Fejl ved fjernelse af %s fra favoritter." msgid "Settings" msgstr "Indstillinger" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "i dag" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "i går" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "sidste måned" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "måneder siden" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "sidste år" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "år siden" @@ -215,7 +215,6 @@ msgid "Password protect" msgstr "Beskyt med adgangskode" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Kodeord" @@ -560,10 +559,6 @@ msgstr "husk" msgid "Log in" msgstr "Log ind" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Du er nu logget ud." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "forrige" @@ -572,16 +567,7 @@ msgstr "forrige" msgid "next" msgstr "næste" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Sikkerhedsadvarsel!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Verificer din adgangskode.<br/>Af sikkerhedsårsager kan du lejlighedsvist blive bedt om at indtaste din adgangskode igen." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Verificer" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/da/files.po b/l10n/da/files.po index 185ea7031e7..b2d80372d34 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" -"PO-Revision-Date: 2012-12-23 21:45+0000\n" -"Last-Translator: cronner <cronner@gmail.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,46 +25,72 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Ingen fil blev uploadet. Ukendt fejl." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Der er ingen fejl, filen blev uploadet med success" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Den uploadede file blev kun delvist uploadet" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ingen fil blev uploadet" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Fjern deling" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Slet" @@ -72,122 +98,134 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "erstat" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "erstattede {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "fortryd" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "ikke delte {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "slettede {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "genererer ZIP-fil, det kan tage lidt tid." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Fejl ved upload" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Luk" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Afventer" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fil uploades" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} filer uploades" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URLen kan ikke være tom." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:699 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} filer skannet" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "fejl under scanning" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Navn" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Størrelse" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Ændret" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -199,27 +237,27 @@ msgstr "Filhåndtering" msgid "Maximum upload size" msgstr "Maksimal upload-størrelse" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. mulige: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Nødvendigt for at kunne downloade mapper og flere filer ad gangen." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Muliggør ZIP-download" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 er ubegrænset" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimal størrelse på ZIP filer" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Gem" @@ -239,36 +277,36 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Upload" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Download" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Upload for stor" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index 3e6898ddd45..847d3bda8aa 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 02:02+0200\n" -"PO-Revision-Date: 2012-09-25 14:07+0000\n" -"Last-Translator: Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,10 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Lad alle versioner udløbe" - #: js/versions.js:16 msgid "History" msgstr "Historik" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versioner" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Dette vil slette alle eksisterende backupversioner af dine filer" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionering af filer" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 187d797c533..c1bdc6f0b94 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:11+0100\n" -"PO-Revision-Date: 2012-12-23 21:58+0000\n" -"Last-Translator: cronner <cronner@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,27 +20,27 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Hjælp" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Personlig" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Indstillinger" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Brugere" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Apps" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Admin" @@ -60,11 +60,15 @@ msgstr "Tilbage til Filer" msgid "Selected files too large to generate zip file." msgstr "De markerede filer er for store til at generere en ZIP-fil." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Programmet er ikke aktiveret" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Adgangsfejl" @@ -84,55 +88,55 @@ msgstr "SMS" msgid "Images" msgstr "Billeder" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekunder siden" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minut siden" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minutter siden" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 time siden" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d timer siden" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "I dag" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "I går" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d dage siden" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "Sidste måned" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d måneder siden" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "Sidste år" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "år siden" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index a4196d62a07..314d85e2306 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -10,15 +10,15 @@ # Ole Holm Frandsen <froksen@gmail.com>, 2012. # Pascal d'Hermilly <pascal@dhermilly.dk>, 2011. # <simon@rosmi.dk>, 2012. -# <sr@ybnet.dk>, 2012. +# <sr@ybnet.dk>, 2012-2013. # Thomas Tanghus <>, 2012. # Thomas Tanghus <thomas@tanghus.net>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "Gruppen findes allerede" msgid "Unable to add group" msgstr "Gruppen kan ikke oprettes" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Applikationen kunne ikke aktiveres." @@ -51,14 +51,6 @@ msgstr "Email adresse gemt" msgid "Invalid email" msgstr "Ugyldig email adresse" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID ændret" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ugyldig forespørgsel" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Gruppen kan ikke slettes" @@ -75,6 +67,10 @@ msgstr "Bruger kan ikke slettes" msgid "Language changed" msgstr "Sprog ændret" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ugyldig forespørgsel" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administratorer kan ikke fjerne dem selv fra admin gruppen" @@ -254,11 +250,11 @@ msgstr "Ny" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Standard opbevaring" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Ubegrænset" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -270,11 +266,11 @@ msgstr "Gruppe Administrator" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Opbevaring" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Standard" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 0aab1f40519..a0d0e27bed6 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-26 00:10+0100\n" -"PO-Revision-Date: 2012-12-25 19:52+0000\n" -"Last-Translator: Daraiko <blah@blacksunset.dk>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:19+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,8 +31,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -49,6 +49,10 @@ msgid "Base DN" msgstr "Base DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "You can specify Base DN for users and groups in the Advanced tab" @@ -119,10 +123,18 @@ msgstr "Port" msgid "Base User Tree" msgstr "Base Bruger Træ" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Base Group Tree" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Group-Member association" diff --git a/l10n/da/user_webdavauth.po b/l10n/da/user_webdavauth.po index 73cb352861f..16782a7f125 100644 --- a/l10n/da/user_webdavauth.po +++ b/l10n/da/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: 2012-12-24 00:10+0100\n" -"PO-Revision-Date: 2012-12-23 22:14+0000\n" -"Last-Translator: cronner <cronner@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,13 +18,17 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloud vil sende brugeroplysningerne til denne webadresse er fortolker http 401 og http 403 som brugeroplysninger forkerte og alle andre koder som brugeroplysninger korrekte." +"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/de/core.po b/l10n/de/core.po index 861465cce99..2210b4b29e2 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -7,7 +7,7 @@ # <alex.hotz@gmail.com>, 2011. # <blobbyjj@ymail.com>, 2012. # <georg.stefan.germany@googlemail.com>, 2011. -# I Robot <owncloud-bot@tmit.eu>, 2012. +# I Robot <owncloud-bot@tmit.eu>, 2012-2013. # I Robot <thomas.mueller@tmit.eu>, 2012. # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. # <mail@felixmoeller.de>, 2012. @@ -23,9 +23,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 13:50+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -99,55 +99,55 @@ msgstr "Fehler beim Entfernen von %s von den Favoriten." msgid "Settings" msgstr "Einstellungen" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "Heute" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "Gestern" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "Vor Jahren" @@ -223,7 +223,6 @@ msgid "Password protect" msgstr "Passwortschutz" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Passwort" @@ -568,10 +567,6 @@ msgstr "merken" msgid "Log in" msgstr "Einloggen" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Du wurdest abgemeldet." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Zurück" @@ -580,16 +575,7 @@ msgstr "Zurück" msgid "next" msgstr "Weiter" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Sicherheitswarnung!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Bitte bestätige Dein Passwort. <br/> Aus Sicherheitsgründen wirst Du hierbei gebeten, Dein Passwort erneut einzugeben." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Bestätigen" +#: 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/files.po b/l10n/de/files.po index 7dc41332e04..c68bff2ed63 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -5,7 +5,7 @@ # Translators: # <admin@s-goecker.de>, 2012. # <blobbyjj@ymail.com>, 2012. -# I Robot <owncloud-bot@tmit.eu>, 2012. +# I Robot <owncloud-bot@tmit.eu>, 2012-2013. # I Robot <thomas.mueller@tmit.eu>, 2012. # Jan-Christoph Borchardt <hey@jancborchardt.net>, 2012. # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. @@ -13,6 +13,7 @@ # <lukas@statuscode.ch>, 2012. # <mail@felixmoeller.de>, 2012. # Marcel Kühlhorn <susefan93@gmx.de>, 2012. +# <markus.thiel@desico.de>, 2013. # Michael Krell <m4dmike.mni@gmail.com>, 2012. # <nelsonfritsch@gmail.com>, 2012. # <niko@nik-o-mat.de>, 2012. @@ -20,13 +21,15 @@ # <thomas.mueller@tmit.eu>, 2012. # Thomas Müller <>, 2012. # <transifex.3.mensaje@spamgourmet.com>, 2012. +# <transifex.com@mail.simonzoellner.de>, 2013. +# <uu.kabum@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-12 00:12+0100\n" -"PO-Revision-Date: 2012-12-11 09:27+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 13:32+0000\n" +"Last-Translator: thiel <markus.thiel@desico.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,46 +37,72 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "Konnte %s nicht verschieben - Datei mit diesem Namen existiert bereits." + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Konnte %s nicht verschieben" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Konnte Datei nicht umbenennen" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Keine Datei hochgeladen. Unbekannter Fehler" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Datei fehlerfrei hochgeladen." -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Temporärer Ordner fehlt." -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Nicht genug Speicherplatz verfügbar" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Ungültiges Verzeichnis" + #: appinfo/app.php:10 msgid "Files" msgstr "Dateien" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nicht mehr freigeben" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Löschen" @@ -81,122 +110,134 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Name vorschlagen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} wurde ersetzt" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ersetzt durch {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Freigabe von {files} aufgehoben" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} gelöscht" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' ist kein gültiger Dateiname" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Der Dateiname darf nicht leer sein" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." -#: js/files.js:209 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:209 +#: js/files.js:224 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:226 +#: js/files.js:241 msgid "Close" msgstr "Schließen" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:265 +#: js/files.js:280 msgid "1 file uploading" msgstr "Eine Datei wird hoch geladen" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} Dateien werden hochgeladen" -#: js/files.js:340 js/files.js:373 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:442 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/files.js:512 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Die URL darf nicht leer sein" -#: js/files.js:693 +#: js/files.js:543 +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:727 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:701 +#: js/files.js:735 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Name" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Größe" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:803 +#: js/files.js:829 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:805 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:813 +#: js/files.js:839 msgid "1 file" msgstr "1 Datei" -#: js/files.js:815 +#: js/files.js:841 msgid "{count} files" msgstr "{count} Dateien" @@ -208,27 +249,27 @@ msgstr "Dateibehandlung" msgid "Maximum upload size" msgstr "Maximale Upload-Größe" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maximal möglich:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-Download aktivieren" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 bedeutet unbegrenzt" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximale Größe für ZIP-Dateien" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Speichern" @@ -248,36 +289,36 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Hochladen" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Upload zu groß" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index 464f1fe302c..a3e251c142c 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 23:16+0200\n" -"PO-Revision-Date: 2012-10-02 09:08+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,22 +22,10 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Alle Versionen löschen" - #: js/versions.js:16 msgid "History" msgstr "Historie" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versionen" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Dies löscht alle vorhandenen Sicherungsversionen Deiner Dateien." - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Dateiversionierung" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index d572145c29a..3c3ebf698ef 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-12 00:13+0100\n" -"PO-Revision-Date: 2012-12-11 09:31+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,51 +24,55 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Hilfe" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Persönlich" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Einstellungen" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Benutzer" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Apps" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Administrator" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" @@ -88,55 +92,55 @@ msgstr "Text" msgid "Images" msgstr "Bilder" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "Gerade eben" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "Vor einer Minute" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "Vor %d Minuten" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Vor %d Stunden" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "Heute" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "Gestern" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "Vor %d Tag(en)" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "Letzten Monat" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Vor %d Monaten" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "Letztes Jahr" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 129f9393516..1616f6a893d 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 00:15+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "Gruppe existiert bereits" msgid "Unable to add group" msgstr "Gruppe konnte nicht angelegt werden" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "App konnte nicht aktiviert werden." @@ -58,14 +58,6 @@ msgstr "E-Mail Adresse gespeichert" msgid "Invalid email" msgstr "Ungültige E-Mail Adresse" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID geändert" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ungültige Anfrage" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Gruppe konnte nicht gelöscht werden" @@ -82,6 +74,10 @@ msgstr "Benutzer konnte nicht gelöscht werden" msgid "Language changed" msgstr "Sprache geändert" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ungültige Anfrage" + #: 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." diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 7e83a5b2043..b706cd2fe26 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 14:04+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,9 +34,9 @@ msgstr "<b>Warnung:</b> Die Anwendungen user_ldap und user_webdavauth sind inkom #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Warnung:</b> Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen Systemadministrator das Modul zu installieren." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -52,6 +52,10 @@ msgid "Base DN" msgstr "Basis-DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" @@ -122,10 +126,18 @@ msgstr "Port" msgid "Base User Tree" msgstr "Basis-Benutzerbaum" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Basis-Gruppenbaum" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Assoziation zwischen Gruppe und Benutzer" diff --git a/l10n/de/user_webdavauth.po b/l10n/de/user_webdavauth.po index 392938e5f92..3bc6180a309 100644 --- a/l10n/de/user_webdavauth.po +++ b/l10n/de/user_webdavauth.po @@ -4,14 +4,15 @@ # # Translators: # <blobbyjj@ymail.com>, 2012. +# <mibunrui@gmx.de>, 2013. # <seeed@freenet.de>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 14:08+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 00:30+0000\n" +"Last-Translator: AndryXY <mibunrui@gmx.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +20,17 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "WebDAV Authentifikation" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloud wird die Logindaten zu dieser URL senden. http 401 und http 403 werden als falsche Logindaten interpretiert und alle anderen Codes als korrekte Logindaten." +"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 "ownCloud wird die Benutzer-Anmeldedaten an diese URL schicken. Dieses Plugin prüft die Anmeldedaten auf ihre Gültigkeit und interpretiert die HTTP Statusfehler 401 und 403 als ungültige, sowie alle Anderen als gültige Anmeldedaten." diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 116cf3006cd..9f9775ff12e 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -16,15 +16,16 @@ # <m.fresel@sysangels.com>, 2012. # <niko@nik-o-mat.de>, 2012. # Phi Lieb <>, 2012. +# <Steve_Reichert@gmx.de>, 2013. # <thomas.mueller@tmit.eu>, 2012. # <transifex.3.mensaje@spamgourmet.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 13:52+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:11+0000\n" +"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -98,55 +99,55 @@ msgstr "Fehler beim Entfernen von %s von den Favoriten." msgid "Settings" msgstr "Einstellungen" -#: js/js.js:704 +#: js/js.js:706 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:705 +#: js/js.js:707 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:706 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:707 +#: js/js.js:709 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:708 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:709 +#: js/js.js:711 msgid "today" msgstr "Heute" -#: js/js.js:710 +#: js/js.js:712 msgid "yesterday" msgstr "Gestern" -#: js/js.js:711 +#: js/js.js:713 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:712 +#: js/js.js:714 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:713 +#: js/js.js:715 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:714 +#: js/js.js:716 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:715 +#: js/js.js:717 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:716 +#: js/js.js:718 msgid "years ago" msgstr "Vor Jahren" @@ -222,7 +223,6 @@ msgid "Password protect" msgstr "Passwortschutz" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Passwort" @@ -567,10 +567,6 @@ msgstr "merken" msgid "Log in" msgstr "Einloggen" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Sie wurden abgemeldet." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Zurück" @@ -579,16 +575,7 @@ msgstr "Zurück" msgid "next" msgstr "Weiter" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Sicherheitshinweis!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Bitte überprüfen Sie Ihr Passwort. <br/>Aus Sicherheitsgründen werden Sie gelegentlich aufgefordert, Ihr Passwort erneut einzugeben." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Überprüfen" +#: 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_DE/files.po b/l10n/de_DE/files.po index 035e733deb4..f2fce2c57ad 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -4,9 +4,9 @@ # # Translators: # <admin@s-goecker.de>, 2012. -# <a.tangemann@web.de>, 2012. +# <a.tangemann@web.de>, 2012-2013. # <blobbyjj@ymail.com>, 2012. -# I Robot <owncloud-bot@tmit.eu>, 2012. +# I Robot <owncloud-bot@tmit.eu>, 2012-2013. # I Robot <thomas.mueller@tmit.eu>, 2012. # Jan-Christoph Borchardt <hey@jancborchardt.net>, 2012. # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. @@ -14,10 +14,12 @@ # <lukas@statuscode.ch>, 2012. # <mail@felixmoeller.de>, 2012. # Marcel Kühlhorn <susefan93@gmx.de>, 2012. +# <markus.thiel@desico.de>, 2013. # Michael Krell <m4dmike.mni@gmail.com>, 2012. # <nelsonfritsch@gmail.com>, 2012. # <niko@nik-o-mat.de>, 2012. # Phi Lieb <>, 2012. +# <Steve_Reichert@gmx.de>, 2013. # <thomas.mueller@tmit.eu>, 2012. # Thomas Müller <>, 2012. # <transifex.3.mensaje@spamgourmet.com>, 2012. @@ -25,9 +27,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-12 00:12+0100\n" -"PO-Revision-Date: 2012-12-11 09:27+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:12+0000\n" +"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,46 +37,72 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "Konnte %s nicht verschieben - Datei mit diesem Namen existiert bereits" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Konnte %s nicht verschieben" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Konnte Datei nicht umbenennen" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Keine Datei hochgeladen. Unbekannter Fehler" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Der temporäre Ordner fehlt." -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Nicht genügend Speicherplatz verfügbar" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Ungültiges Verzeichnis." + #: appinfo/app.php:10 msgid "Files" msgstr "Dateien" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nicht mehr freigeben" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Löschen" @@ -82,122 +110,134 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Name vorschlagen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} wurde ersetzt" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Freigabe für {files} beendet" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} gelöscht" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' ist kein gültiger Dateiname." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Der Dateiname darf nicht leer sein." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: js/files.js:174 +#: js/files.js:187 msgid "generating ZIP-file, it may take some time." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." -#: js/files.js:209 +#: js/files.js:225 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:209 +#: js/files.js:225 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:226 +#: js/files.js:242 msgid "Close" msgstr "Schließen" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:261 js/files.js:377 js/files.js:410 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:265 +#: js/files.js:281 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:284 js/files.js:339 js/files.js:354 msgid "{count} files uploading" msgstr "{count} Dateien wurden hochgeladen" -#: js/files.js:340 js/files.js:373 +#: js/files.js:358 js/files.js:394 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:442 +#: js/files.js:465 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:512 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." +#: js/files.js:538 +msgid "URL cannot be empty." +msgstr "Die URL darf nicht leer sein." -#: js/files.js:693 +#: js/files.js:544 +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:728 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:701 +#: js/files.js:736 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:809 templates/index.php:64 msgid "Name" msgstr "Name" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:810 templates/index.php:75 msgid "Size" msgstr "Größe" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:811 templates/index.php:77 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:803 +#: js/files.js:830 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:805 +#: js/files.js:832 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:813 +#: js/files.js:840 msgid "1 file" msgstr "1 Datei" -#: js/files.js:815 +#: js/files.js:842 msgid "{count} files" msgstr "{count} Dateien" @@ -209,27 +249,27 @@ msgstr "Dateibehandlung" msgid "Maximum upload size" msgstr "Maximale Upload-Größe" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maximal möglich:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-Download aktivieren" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 bedeutet unbegrenzt" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximale Größe für ZIP-Dateien" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Speichern" @@ -249,36 +289,36 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Hochladen" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Bitte laden Sie etwas hoch!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index c9f8e08c2e5..bef0ee6b762 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-20 02:02+0200\n" -"PO-Revision-Date: 2012-10-19 21:36+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,22 +22,10 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Alle Versionen löschen" - #: js/versions.js:16 msgid "History" msgstr "Historie" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versionen" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien." - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Dateiversionierung" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 3c9177f17ed..851e152e2d5 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Andreas Tangemann <a.tangemann@web.de>, 2013. # <a.tangemann@web.de>, 2012. # <blobbyjj@ymail.com>, 2012. # Jan-Christoph Borchardt <hey@jancborchardt.net>, 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-11 00:04+0100\n" -"PO-Revision-Date: 2012-12-10 13:49+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:16+0000\n" +"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,51 +25,55 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Hilfe" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Persönlich" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Einstellungen" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Benutzer" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Apps" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Administrator" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." +#: helper.php:228 +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:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" @@ -88,55 +93,55 @@ msgstr "Text" msgid "Images" msgstr "Bilder" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "Gerade eben" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "Vor einer Minute" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "Vor %d Minuten" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Vor %d Stunden" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "Heute" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "Gestern" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "Vor %d Tag(en)" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "Letzten Monat" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Vor %d Monaten" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "Letztes Jahr" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index cad62cf5996..98a84230b5c 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 00:21+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "Die Gruppe existiert bereits" msgid "Unable to add group" msgstr "Die Gruppe konnte nicht angelegt werden" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Die Anwendung konnte nicht aktiviert werden." @@ -58,14 +58,6 @@ msgstr "E-Mail-Adresse gespeichert" msgid "Invalid email" msgstr "Ungültige E-Mail-Adresse" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID geändert" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ungültige Anfrage" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Die Gruppe konnte nicht gelöscht werden" @@ -82,6 +74,10 @@ msgstr "Der Benutzer konnte nicht gelöscht werden" msgid "Language changed" msgstr "Sprache geändert" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ungültige Anfrage" + #: 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" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 843b2e80f4d..5bd636b583b 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 14:04+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,9 +33,9 @@ msgstr "<b>Warnung:</b> Die Anwendungen user_ldap und user_webdavauth sind inkom #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Warnung:</b> Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -51,6 +51,10 @@ msgid "Base DN" msgstr "Basis-DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 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" @@ -121,10 +125,18 @@ msgstr "Port" msgid "Base User Tree" msgstr "Basis-Benutzerbaum" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Basis-Gruppenbaum" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Assoziation zwischen Gruppe und Benutzer" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index 9cb13ec43ec..2d01d1e91e1 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <a.tangemann@web.de>, 2012. +# <a.tangemann@web.de>, 2012-2013. # <multimill@gmail.com>, 2012. # <transifex-2.7.mensaje@spamgourmet.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 23:03+0000\n" -"Last-Translator: multimill <multimill@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 22:23+0000\n" +"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,13 +20,17 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "WebDAV Authentifizierung" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloud " +"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 "ownCloud sendet die Benutzerdaten an diese URL. Dieses Plugin prüft die Antwort und wird die 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 7a42857d69c..9f541a6eda9 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -10,13 +10,14 @@ # Marios Bekatoros <>, 2012. # <petros.kyladitis@gmail.com>, 2011. # Petros Kyladitis <petros.kyladitis@gmail.com>, 2011-2012. +# <vagelis@cyberdest.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 13:25+0000\n" -"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 20:33+0000\n" +"Last-Translator: xneo1 <vagelis@cyberdest.com>\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" @@ -90,55 +91,55 @@ msgstr "Σφάλμα αφαίρεσης %s από τα αγαπημένα." msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:704 +#: js/js.js:706 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:705 +#: js/js.js:707 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:706 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:707 +#: js/js.js:709 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:708 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:709 +#: js/js.js:711 msgid "today" msgstr "σήμερα" -#: js/js.js:710 +#: js/js.js:712 msgid "yesterday" msgstr "χτες" -#: js/js.js:711 +#: js/js.js:713 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:712 +#: js/js.js:714 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:713 +#: js/js.js:715 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:714 +#: js/js.js:716 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:715 +#: js/js.js:717 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:716 +#: js/js.js:718 msgid "years ago" msgstr "χρόνια πριν" @@ -214,7 +215,6 @@ msgid "Password protect" msgstr "Προστασία συνθηματικού" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Συνθηματικό" @@ -559,10 +559,6 @@ msgstr "απομνημόνευση" msgid "Log in" msgstr "Είσοδος" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Έχετε αποσυνδεθεί." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "προηγούμενο" @@ -571,16 +567,7 @@ msgstr "προηγούμενο" msgid "next" msgstr "επόμενο" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Προειδοποίηση Ασφαλείας!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Παρακαλώ επιβεβαιώστε το συνθηματικό σας. <br/>Για λόγους ασφαλείας μπορεί να ερωτάστε να εισάγετε ξανά το συνθηματικό σας." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Επαλήθευση" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο." diff --git a/l10n/el/files.po b/l10n/el/files.po index 5129f6e33ff..6dbee32887a 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 13:50+0000\n" -"Last-Translator: Konstantinos Tzanidis <tzanidis@gmail.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,46 +24,72 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Αρχεία" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Διακοπή κοινής χρήσης" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Διαγραφή" @@ -71,122 +97,134 @@ msgstr "Διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "συνιστώμενο όνομα" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} αντικαταστάθηκε" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "αντικαταστάθηκε το {new_name} με {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "μη διαμοιρασμένα {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "διαγραμμένα {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Σφάλμα Αποστολής" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Κλείσιμο" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Εκκρεμεί" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} αρχεία ανεβαίνουν" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Η URL δεν πρέπει να είναι κενή." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:699 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} αρχεία ανιχνεύτηκαν" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "σφάλμα κατά την ανίχνευση" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Όνομα" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} αρχεία" @@ -198,27 +236,27 @@ msgstr "Διαχείριση αρχείων" msgid "Maximum upload size" msgstr "Μέγιστο μέγεθος αποστολής" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "μέγιστο δυνατό:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Απαραίτητο για κατέβασμα πολλαπλών αρχείων και φακέλων" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Ενεργοποίηση κατεβάσματος ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 για απεριόριστο" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Μέγιστο μέγεθος για αρχεία ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Αποθήκευση" @@ -238,36 +276,36 @@ msgstr "Φάκελος" msgid "From link" msgstr "Από σύνδεσμο" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Αποστολή" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Λήψη" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Πολύ μεγάλο αρχείο προς αποστολή" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Τρέχουσα αναζήτηση " diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index a79674e946a..3812c4bda0d 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 01:26+0000\n" -"Last-Translator: Dimitris M. <monopatis@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,22 +20,10 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Λήξη όλων των εκδόσεων" - #: js/versions.js:16 msgid "History" msgstr "Ιστορικό" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Εκδόσεις" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Εκδόσεις Αρχείων" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index c58bb7b0af6..27ef72f2eb2 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -4,13 +4,14 @@ # # Translators: # Efstathios Iosifidis <iosifidis@opensuse.org>, 2012. +# <vagelis@cyberdest.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-17 00:01+0100\n" -"PO-Revision-Date: 2012-11-16 17:32+0000\n" -"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 20:39+0000\n" +"Last-Translator: xneo1 <vagelis@cyberdest.com>\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" @@ -18,51 +19,55 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Βοήθεια" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Προσωπικά" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ρυθμίσεις" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Χρήστες" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Εφαρμογές" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Διαχειριστής" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Πίσω στα Αρχεία" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "δεν μπορούσε να προσδιορισθεί" + #: json.php:28 msgid "Application is not enabled" msgstr "Δεν ενεργοποιήθηκε η εφαρμογή" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Σφάλμα πιστοποίησης" @@ -82,55 +87,55 @@ msgstr "Κείμενο" msgid "Images" msgstr "Εικόνες" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d λεπτά πριν" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d ώρες πριν" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "σήμερα" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "χθές" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d ημέρες πριν" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "τον προηγούμενο μήνα" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d μήνες πριν" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "τον προηγούμενο χρόνο" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 83f4985217b..f06ddb07858 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -13,14 +13,15 @@ # <petros.kyladitis@gmail.com>, 2011. # <petros.kyladitis@gmail.com>, 2011. # Petros Kyladitis <petros.kyladitis@gmail.com>, 2011-2012. +# <vagelis@cyberdest.com>, 2013. # Γιάννης Ανθυμίδης <yannanth@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 20:41+0000\n" +"Last-Translator: xneo1 <vagelis@cyberdest.com>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,7 +41,7 @@ msgstr "Η ομάδα υπάρχει ήδη" msgid "Unable to add group" msgstr "Αδυναμία προσθήκης ομάδας" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Αδυναμία ενεργοποίησης εφαρμογής " @@ -52,14 +53,6 @@ msgstr "Το email αποθηκεύτηκε " msgid "Invalid email" msgstr "Μη έγκυρο email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "Το OpenID άλλαξε" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Μη έγκυρο αίτημα" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Αδυναμία διαγραφής ομάδας" @@ -76,6 +69,10 @@ msgstr "Αδυναμία διαγραφής χρήστη" msgid "Language changed" msgstr "Η γλώσσα άλλαξε" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Μη έγκυρο αίτημα" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Οι διαχειριστές δεν μπορούν να αφαιρέσουν τους εαυτούς τους από την ομάδα των διαχειριστών" @@ -255,11 +252,11 @@ msgstr "Δημιουργία" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Προκαθορισμένη Αποθήκευση " #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Απεριόριστο" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -271,11 +268,11 @@ msgstr "Ομάδα Διαχειριστών" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Αποθήκευση" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Προκαθορισμένο" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 14b7e75c710..9edcb771d61 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 14:12+0000\n" -"Last-Translator: Konstantinos Tzanidis <tzanidis@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,9 +31,9 @@ msgstr "<b>Προσοχή:</b> Οι εφαρμογές user_ldap και user_web #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Προσοχή:</b> Το PHP LDAP module που απαιτείται δεν είναι εγκατεστημένο και ο μηχανισμός δεν θα λειτουργήσει. Παρακαλώ ζητήστε από τον διαχειριστή του συστήματος να το εγκαταστήσει." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -49,6 +49,10 @@ msgid "Base DN" msgstr "Base DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις" @@ -119,10 +123,18 @@ msgstr "Θύρα" msgid "Base User Tree" msgstr "Base User Tree" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Base Group Tree" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Group-Member association" diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index dff8dd88f35..ae9fa402bf8 100644 --- a/l10n/el/user_webdavauth.po +++ b/l10n/el/user_webdavauth.po @@ -6,13 +6,14 @@ # Dimitris M. <monopatis@gmail.com>, 2012. # Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012. # Konstantinos Tzanidis <tzanidis@gmail.com>, 2012. +# Marios Bekatoros <>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 13:55+0000\n" -"Last-Translator: Konstantinos Tzanidis <tzanidis@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 08:10+0000\n" +"Last-Translator: Marios Bekatoros <>\n" "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" @@ -20,13 +21,17 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "Αυθεντικοποίηση μέσω WebDAV " + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "Το ownCloud θα στείλει τα συνθηματικά χρήστη σε αυτό το URL, μεταφράζοντας τα http 401 και http 403 ως λανθασμένα συνθηματικά και όλους τους άλλους κωδικούς ως σωστά συνθηματικά." +"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 "Το ownCloud θα στείλει τα διαπιστευτήρια χρήστη σε αυτό το URL. Αυτό το plugin ελέγχει την απάντηση και την μετατρέπει σε HTTP κωδικό κατάστασης 401 και 403 για μη έγκυρα, όλες οι υπόλοιπες απαντήσεις είναι έγκυρες." diff --git a/l10n/eo/core.po b/l10n/eo/core.po index ae8dd9eeedc..27efa5db63f 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 07:11+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,55 +86,55 @@ msgstr "Eraro dum forigo de %s el favoratoj." msgid "Settings" msgstr "Agordo" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hodiaŭ" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "lastamonate" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "lastajare" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "jaroj antaŭe" @@ -209,8 +209,7 @@ msgstr "Kunhavigi per ligilo" msgid "Password protect" msgstr "Protekti per pasvorto" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Pasvorto" @@ -315,7 +314,7 @@ msgid "Request failed!" msgstr "Peto malsukcesis!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Uzantonomo" @@ -529,36 +528,32 @@ msgstr "TTT-servoj sub via kontrolo" msgid "Log out" msgstr "Elsaluti" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se vi ne ŝanĝis vian pasvorton lastatempe, via konto eble kompromitas!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Ĉu vi perdis vian pasvorton?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "memori" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Ensaluti" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Vi estas elsalutita." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "maljena" @@ -567,16 +562,7 @@ msgstr "maljena" msgid "next" msgstr "jena" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Sekureca averto!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Bonvolu kontroli vian pasvorton. <br/>Pro sekureco, oni okaze povas peti al vi enigi vian pasvorton ree." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Kontroli" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 98d1dba639f..9989b6eb9b5 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 22:06+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,46 +19,72 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: " -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "La alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Neniu dosiero estas alŝutita" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Mankas tempa dosierujo" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Dosieroj" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Malkunhavigi" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Forigi" @@ -66,122 +92,134 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "anstataŭiĝis {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "malfari" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "malkunhaviĝis {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "foriĝis {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Alŝuta eraro" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Fermi" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Traktotaj" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} dosieroj alŝutatas" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL ne povas esti malplena." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} dosieroj skaniĝis" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "eraro dum skano" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nomo" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Grando" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modifita" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} dosierujoj" @@ -193,27 +231,27 @@ msgstr "Dosieradministro" msgid "Maximum upload size" msgstr "Maksimuma alŝutogrando" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maks. ebla: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necesa por elŝuto de pluraj dosieroj kaj dosierujoj." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Kapabligi ZIP-elŝuton" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 signifas senlime" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimuma enirgrando por ZIP-dosieroj" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Konservi" @@ -233,36 +271,36 @@ msgstr "Dosierujo" msgid "From link" msgstr "El ligilo" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Alŝuti" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Elŝuto tro larĝa" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index 64415603319..53a59b49120 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-14 02:05+0200\n" -"PO-Revision-Date: 2012-10-13 02:50+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Eksvalidigi ĉiujn eldonojn" - #: js/versions.js:16 msgid "History" msgstr "Historio" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Eldonoj" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Dosiereldonigo" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index b4a219e21a2..05fd08aa22b 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 21:42+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Helpo" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Persona" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Agordo" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Uzantoj" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplikaĵoj" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administranto" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP-elŝuto estas malkapabligita." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Reen al la dosieroj" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "La aplikaĵo ne estas kapabligita" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Aŭtentiga eraro" @@ -82,55 +86,55 @@ msgstr "Teksto" msgid "Images" msgstr "Bildoj" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekundojn antaŭe" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "antaŭ %d minutoj" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "antaŭ %d horoj" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hodiaŭ" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "hieraŭ" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "antaŭ %d tagoj" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "lasta monato" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "antaŭ %d monatoj" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "lasta jaro" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "jarojn antaŭe" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index d57fded0283..4c160cd36f5 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "La grupo jam ekzistas" msgid "Unable to add group" msgstr "Ne eblis aldoni la grupon" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Ne eblis kapabligi la aplikaĵon." @@ -43,14 +43,6 @@ msgstr "La retpoŝtadreso konserviĝis" msgid "Invalid email" msgstr "Nevalida retpoŝtadreso" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "La agordo de OpenID estas ŝanĝita" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Nevalida peto" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Ne eblis forigi la grupon" @@ -67,6 +59,10 @@ msgstr "Ne eblis forigi la uzanton" msgid "Language changed" msgstr "La lingvo estas ŝanĝita" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Nevalida peto" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administrantoj ne povas forigi sin mem el la administra grupo." diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 419be520bc0..a98b1439507 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:19+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "Baz-DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -115,10 +119,18 @@ msgstr "Pordo" msgid "Base User Tree" msgstr "Baza uzantarbo" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Baza gruparbo" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Asocio de grupo kaj membro" diff --git a/l10n/eo/user_webdavauth.po b/l10n/eo/user_webdavauth.po index 60a766ad4c7..6219bb920ab 100644 --- a/l10n/eo/user_webdavauth.po +++ b/l10n/eo/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: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 03:35+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,13 +18,17 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/es/core.po b/l10n/es/core.po index 3aebf45effa..099b2839a0f 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -5,7 +5,7 @@ # Translators: # <javierkaiser@gmail.com>, 2012. # Javier Llorente <javier@opensuse.org>, 2012. -# <juanma@kde.org.ar>, 2011-2012. +# <juanma@kde.org.ar>, 2011-2013. # <malmirk@gmail.com>, 2012. # oSiNaReF <>, 2012. # Raul Fernandez Garcia <raulfg3@gmail.com>, 2012. @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 11:51+0000\n" -"Last-Translator: malmirk <malmirk@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -94,55 +94,55 @@ msgstr "Error eliminando %s de los favoritos." msgid "Settings" msgstr "Ajustes" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hoy" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ayer" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "mes pasado" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "hace meses" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "año pasado" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "hace años" @@ -172,8 +172,8 @@ msgid "The object type is not specified." msgstr "El tipo de objeto no se ha especificado." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Fallo" @@ -185,7 +185,7 @@ msgstr "El nombre de la app no se ha especificado." msgid "The required file {file} is not installed!" msgstr "El fichero {file} requerido, no está instalado." -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Error compartiendo" @@ -213,12 +213,11 @@ msgstr "Compartir con" msgid "Share with link" msgstr "Compartir con enlace" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Protegido por contraseña" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Contraseña" @@ -282,23 +281,23 @@ msgstr "eliminar" msgid "share" msgstr "compartir" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Error al eliminar la fecha de caducidad" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Correo electrónico enviado" @@ -323,7 +322,7 @@ msgid "Request failed!" msgstr "Pedido fallado!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Nombre de usuario" @@ -537,36 +536,32 @@ msgstr "servicios web bajo tu control" msgid "Log out" msgstr "Salir" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "¡Inicio de sesión automático rechazado!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "¿Has perdido tu contraseña?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "recuérdame" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Has cerrado la sesión." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" @@ -575,16 +570,7 @@ msgstr "anterior" msgid "next" msgstr "siguiente" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "¡Advertencia de seguridad!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Por favor verifique su contraseña. <br/>Por razones de seguridad se le puede volver a preguntar ocasionalmente la contraseña." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Verificar" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." diff --git a/l10n/es/files.po b/l10n/es/files.po index 8925d2d93df..1275e717a26 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -4,9 +4,11 @@ # # Translators: # Agustin Ferrario <>, 2012. +# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013. # <devianpctek@gmail.com>, 2012. # Javier Llorente <javier@opensuse.org>, 2012. -# <juanma@kde.org.ar>, 2012. +# <juanma@kde.org.ar>, 2012-2013. +# <karvayoEdgar@gmail.com>, 2013. # Rubén Trujillo <rubentrf@gmail.com>, 2012. # <sergioballesterossolanas@gmail.com>, 2011-2012. # <sergio@entrecables.com>, 2012. @@ -14,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 20:49+0000\n" -"Last-Translator: xsergiolpx <sergioballesterossolanas@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 07:26+0000\n" +"Last-Translator: karv <karvayoEdgar@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,46 +26,72 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "No se puede mover %s - Ya existe un archivo con ese nombre" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "No se puede mover %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "No se puede renombrar el archivo" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Fallo no se subió el fichero" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "No se ha producido ningún error, el archivo se ha subido con éxito" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "El archivo que intentas subir solo se subió parcialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "No se ha subido ningún archivo" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "La escritura en disco ha fallado" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "No hay suficiente espacio disponible" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Directorio invalido." + #: appinfo/app.php:10 msgid "Files" msgstr "Archivos" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Eliminar" @@ -71,122 +99,134 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "reemplazado {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "deshacer" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} descompartidos" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} eliminados" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' es un nombre de archivo inválido." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "El nombre de archivo no puede estar vacío." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generando un fichero ZIP, puede llevar un tiempo." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "cerrrar" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendiente" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nombre de la carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "La URL no puede estar vacía." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "error escaneando" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nombre" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} carpetas" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 archivo" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} archivos" @@ -198,27 +238,27 @@ msgstr "Tratamiento de archivos" msgid "Maximum upload size" msgstr "Tamaño máximo de subida" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "máx. posible:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Se necesita para descargas multi-archivo y de carpetas" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Habilitar descarga en ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 es ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo para archivos ZIP de entrada" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Guardar" @@ -238,36 +278,36 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde el enlace" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Subir" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Aquí no hay nada. ¡Sube algo!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Descargar" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: templates/index.php:105 +#: templates/index.php:104 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 por este servidor." -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor espere." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Ahora escaneando" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index b928098bf8c..41ca2e67dad 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 05:59+0000\n" -"Last-Translator: scambra <sergio@entrecables.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,22 +21,10 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Expirar todas las versiones" - #: js/versions.js:16 msgid "History" msgstr "Historial" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versiones" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionado de archivos" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 179b6bff7d6..6b482aac9ff 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-18 00:01+0100\n" -"PO-Revision-Date: 2012-11-17 08:43+0000\n" -"Last-Translator: Raul Fernandez Garcia <raulfg3@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,51 +21,55 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ayuda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ajustes" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Usuarios" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplicaciones" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administración" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Volver a Archivos" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Error de autenticación" @@ -85,55 +89,55 @@ msgstr "Texto" msgid "Images" msgstr "Imágenes" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "hace segundos" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "hace 1 minuto" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "hace %d minutos" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Hace 1 hora" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Hace %d horas" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hoy" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ayer" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "hace %d días" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "este mes" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Hace %d meses" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "este año" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "hace años" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index be3f8676b46..d39042253ff 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 00:45+0000\n" -"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,7 +41,7 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No se pudo añadir el grupo" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "No puedo habilitar la app." @@ -53,14 +53,6 @@ msgstr "Correo guardado" msgid "Invalid email" msgstr "Correo no válido" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID cambiado" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Solicitud no válida" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "No se pudo eliminar el grupo" @@ -77,6 +69,10 @@ msgstr "No se pudo eliminar el usuario" msgid "Language changed" msgstr "Idioma cambiado" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Solicitud no válida" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 32c72e60755..8a1cee622dd 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 00:58+0000\n" -"Last-Translator: valarauco <manudeloz86@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,9 +32,9 @@ msgstr "<b>Advertencia:</b> Los Apps user_ldap y user_webdavauth son incompatibl #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Advertencia:</b> El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -50,6 +50,10 @@ msgid "Base DN" msgstr "DN base" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" @@ -120,10 +124,18 @@ msgstr "Puerto" msgid "Base User Tree" msgstr "Árbol base de usuario" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Árbol base de grupo" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Asociación Grupo-Miembro" diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index 8eec33bde17..2e2ea40c3ff 100644 --- a/l10n/es/user_webdavauth.po +++ b/l10n/es/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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 19:17+0000\n" -"Last-Translator: pggx999 <pggx999@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +19,17 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloud enviará al usuario las interpretaciones 401 y 403 a esta URL como incorrectas y todas las otras credenciales como correctas" +"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/es_AR/core.po b/l10n/es_AR/core.po index f00739d659a..c38985419c0 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <claudio.tessone@gmail.com>, 2012. +# <claudio.tessone@gmail.com>, 2012-2013. # <javierkaiser@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -22,26 +22,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "El usurario %s compartió un archivo con vos." #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "El usurario %s compartió una carpeta con vos." #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -85,55 +85,55 @@ msgstr "Error al remover %s de favoritos. " msgid "Settings" msgstr "Ajustes" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hoy" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ayer" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "el mes pasado" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "meses atrás" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "el año pasado" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "años atrás" @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "El tipo de objeto no esta especificado. " #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Error" @@ -176,7 +176,7 @@ msgstr "El nombre de la aplicación no esta especificado." msgid "The required file {file} is not installed!" msgstr "¡El archivo requerido {file} no está instalado!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Error al compartir" @@ -204,22 +204,21 @@ msgstr "Compartir con" msgid "Share with link" msgstr "Compartir con link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Proteger con contraseña " -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Contraseña" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Enviar el link por e-mail." #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Enviar" #: js/share.js:177 msgid "Set expiration date" @@ -273,25 +272,25 @@ msgstr "borrar" msgid "share" msgstr "compartir" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de caducidad" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Enviando..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Email enviado" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -313,8 +312,8 @@ msgstr "Reiniciar envío de email." msgid "Request failed!" msgstr "Error en el pedido!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nombre de usuario" @@ -403,44 +402,44 @@ msgstr "Tu directorio de datos y tus archivos son probablemente accesibles desde msgid "Create an <strong>admin account</strong>" msgstr "Crear una <strong>cuenta de administrador</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Completar la instalación" @@ -528,36 +527,32 @@ msgstr "servicios web sobre los que tenés control" msgid "Log out" msgstr "Cerrar la sesión" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "¡El inicio de sesión automático fue rechazado!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta esté comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Por favor, cambiá tu contraseña para fortalecer nuevamente la seguridad de tu cuenta." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "¿Perdiste tu contraseña?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "recordame" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Terminaste la sesión." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" @@ -566,16 +561,7 @@ msgstr "anterior" msgid "next" msgstr "siguiente" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "¡Advertencia de seguridad!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Por favor, verificá tu contraseña. <br/>Por razones de seguridad, puede ser que que te pregunte ocasionalmente la contraseña." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Verificar" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Actualizando ownCloud a la versión %s, puede domorar un rato." diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 551f3b477be..3aaf7073134 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2012. -# <claudio.tessone@gmail.com>, 2012. +# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2012-2013. +# <claudio.tessone@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-11 00:04+0100\n" -"PO-Revision-Date: 2012-12-10 00:37+0000\n" -"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 16:04+0000\n" +"Last-Translator: cjtess <claudio.tessone@gmail.com>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,46 +19,72 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "No se pudo mover %s - Un archivo con este nombre ya existe" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "No se pudo mover %s " + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "No fue posible cambiar el nombre al archivo" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "El archivo no fue subido. Error desconocido" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "No se han producido errores, el archivo se ha subido con éxito" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "El archivo que intentás subir solo se subió parcialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "El archivo no fue subido" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "No hay suficiente espacio disponible" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Directorio invalido." + #: appinfo/app.php:10 msgid "Files" msgstr "Archivos" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Borrar" @@ -66,122 +92,134 @@ msgstr "Borrar" msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "reemplazado {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "deshacer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} se dejaron de compartir" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} borrados" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' es un nombre de archivo inválido." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "El nombre del archivo no puede quedar vacío." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." -#: js/files.js:174 +#: js/files.js:187 msgid "generating ZIP-file, it may take some time." msgstr "generando un archivo ZIP, puede llevar un tiempo." -#: js/files.js:209 +#: js/files.js:225 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes" -#: js/files.js:209 +#: js/files.js:225 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:226 +#: js/files.js:242 msgid "Close" msgstr "Cerrar" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:261 js/files.js:377 js/files.js:410 msgid "Pending" msgstr "Pendiente" -#: js/files.js:265 +#: js/files.js:281 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:284 js/files.js:339 js/files.js:354 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:340 js/files.js:373 +#: js/files.js:358 js/files.js:394 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/files.js:442 +#: js/files.js:465 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." -#: js/files.js:512 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nombre del directorio inválido. Usar \"Shared\" está reservado por ownCloud." +#: js/files.js:538 +msgid "URL cannot be empty." +msgstr "La URL no puede estar vacía" -#: js/files.js:693 +#: js/files.js:544 +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:728 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:701 +#: js/files.js:736 msgid "error while scanning" msgstr "error mientras se escaneaba" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:809 templates/index.php:64 msgid "Name" msgstr "Nombre" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:810 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:811 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:803 +#: js/files.js:830 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:805 +#: js/files.js:832 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:813 +#: js/files.js:840 msgid "1 file" msgstr "1 archivo" -#: js/files.js:815 +#: js/files.js:842 msgid "{count} files" msgstr "{count} archivos" @@ -193,27 +231,27 @@ msgstr "Tratamiento de archivos" msgid "Maximum upload size" msgstr "Tamaño máximo de subida" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "máx. posible:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Es necesario para descargas multi-archivo y de carpetas" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Habilitar descarga en formato ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 significa ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo para archivos ZIP de entrada" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Guardar" @@ -233,36 +271,36 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Subir" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "No hay nada. ¡Subí contenido!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descargar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor esperá." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es_AR/files_versions.po b/l10n/es_AR/files_versions.po index 51e4552b000..6ab1eed54d3 100644 --- a/l10n/es_AR/files_versions.po +++ b/l10n/es_AR/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-25 02:02+0200\n" -"PO-Revision-Date: 2012-09-24 04:28+0000\n" -"Last-Translator: cjtess <claudio.tessone@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Expirar todas las versiones" - #: js/versions.js:16 msgid "History" msgstr "Historia" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versiones" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Hacer estom borrará todas las versiones guardadas como copia de seguridad de tus archivos" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionado de archivos" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index d7c4a911766..f4870578c3a 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-22 00:01+0100\n" -"PO-Revision-Date: 2012-11-21 09:56+0000\n" -"Last-Translator: cjtess <claudio.tessone@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ayuda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ajustes" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Usuarios" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplicaciones" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administración" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados de a uno." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Volver a archivos" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Error de autenticación" @@ -82,55 +86,55 @@ msgstr "Texto" msgid "Images" msgstr "Imágenes" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "hace unos segundos" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "hace 1 minuto" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "hace %d minutos" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 hora atrás" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d horas atrás" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hoy" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ayer" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "hace %d días" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "este mes" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d meses atrás" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "este año" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "hace años" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 5e4d44648a9..0ebdce38b58 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 00:45+0000\n" -"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +31,7 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No fue posible añadir el grupo" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "No se puede habilitar la aplicación." @@ -43,14 +43,6 @@ msgstr "e-mail guardado" msgid "Invalid email" msgstr "el e-mail no es válido " -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID cambiado" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Solicitud no válida" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "No fue posible eliminar el grupo" @@ -67,6 +59,10 @@ msgstr "No fue posible eliminar el usuario" msgid "Language changed" msgstr "Idioma cambiado" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Solicitud no válida" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Los administradores no se pueden quitar a ellos mismos del grupo administrador. " diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 80ab2e1f1f5..a3b11101f5b 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013. # <claudio.tessone@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -23,12 +24,12 @@ msgid "" "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "<b>Advertencia:</b> 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." #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +46,10 @@ msgid "Base DN" msgstr "DN base" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"" @@ -115,10 +120,18 @@ msgstr "Puerto" msgid "Base User Tree" msgstr "Árbol base de usuario" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Árbol base de grupo" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Asociación Grupo-Miembro" diff --git a/l10n/es_AR/user_webdavauth.po b/l10n/es_AR/user_webdavauth.po index 5eb7c5b084b..429680ee8c6 100644 --- a/l10n/es_AR/user_webdavauth.po +++ b/l10n/es_AR/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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 21:34+0000\n" -"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +19,17 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloud enviará las credenciales a esta dirección, si son interpretadas como http 401 o http 403 las credenciales son erroneas; todos los otros códigos indican que las credenciales son correctas." +"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/et_EE/core.po b/l10n/et_EE/core.po index 3d6dcf500f6..ba615076133 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "Seaded" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "täna" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "eile" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "aastat tagasi" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Viga" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -203,12 +203,11 @@ msgstr "Jaga" msgid "Share with link" msgstr "Jaga lingiga" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Parooliga kaitstud" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Parool" @@ -272,23 +271,23 @@ msgstr "kustuta" msgid "share" msgstr "jaga" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +311,8 @@ msgstr "Taastamise e-kiri on saadetud." msgid "Request failed!" msgstr "Päring ebaõnnestus!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Kasutajanimi" @@ -402,44 +401,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Loo <strong>admini konto</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Lisavalikud" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Andmete kaust" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Seadista andmebaasi" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "kasutatakse" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Andmebaasi tabeliruum" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Lõpeta seadistamine" @@ -527,36 +526,32 @@ msgstr "veebiteenused sinu kontrolli all" msgid "Log out" msgstr "Logi välja" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automaatne sisselogimine lükati tagasi!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Kui sa ei muutnud oma parooli hiljut, siis võib su kasutajakonto olla ohustatud!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Palun muuda parooli, et oma kasutajakonto uuesti turvata." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Kaotasid oma parooli?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "pea meeles" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Logi sisse" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Sa oled välja loginud" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "eelm" @@ -565,16 +560,7 @@ msgstr "eelm" msgid "next" msgstr "järgm" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "turvahoiatus!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Kinnita" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 9c1c0fadb7b..444a31d0214 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,72 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi viga pole, fail on üles laetud" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Failid" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Kustuta" @@ -66,122 +92,134 @@ msgstr "Kustuta" msgid "Rename" msgstr "ümber" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "asenda" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "soovita nime" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "loobu" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "asendatud nimega {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "tagasi" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "jagamata {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "kustutatud {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-faili loomine, see võib veidi aega võtta." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Üleslaadimise viga" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Sulge" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ootel" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 faili üleslaadimisel" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} faili üleslaadimist" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud " +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL ei saa olla tühi." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} faili skännitud" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "viga skännimisel" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nimi" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Suurus" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Muudetud" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 fail" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} faili" @@ -193,27 +231,27 @@ msgstr "Failide käsitlemine" msgid "Maximum upload size" msgstr "Maksimaalne üleslaadimise suurus" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maks. võimalik: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Vajalik mitme faili ja kausta allalaadimiste jaoks." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Luba ZIP-ina allalaadimine" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 tähendab piiramatut" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimaalne ZIP-faili sisestatava faili suurus" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salvesta" @@ -233,36 +271,36 @@ msgstr "Kaust" msgid "From link" msgstr "Allikast" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Lae üles" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Lae alla" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index a0d4710bcd4..a0309a22fc6 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-21 02:03+0200\n" -"PO-Revision-Date: 2012-10-20 20:09+0000\n" -"Last-Translator: Rivo Zängov <eraser@eraser.ee>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Kõikide versioonide aegumine" - #: js/versions.js:16 msgid "History" msgstr "Ajalugu" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versioonid" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "See kustutab kõik sinu failidest tehtud varuversiooni" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Failide versioonihaldus" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index f617ebc7835..a137f08e4a3 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Abiinfo" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Isiklik" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Seaded" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Kasutajad" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Rakendused" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP-ina allalaadimine on välja lülitatud." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Failid tuleb alla laadida ükshaaval." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Tagasi failide juurde" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Rakendus pole sisse lülitatud" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Autentimise viga" @@ -82,55 +86,55 @@ msgstr "Tekst" msgid "Images" msgstr "Pildid" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekundit tagasi" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minut tagasi" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minutit tagasi" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "täna" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "eile" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d päeva tagasi" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "eelmisel kuul" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "eelmisel aastal" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 42f157b4e7c..751dc61daf4 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "Grupp on juba olemas" msgid "Unable to add group" msgstr "Keela grupi lisamine" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Rakenduse sisselülitamine ebaõnnestus." @@ -43,14 +43,6 @@ msgstr "Kiri on salvestatud" msgid "Invalid email" msgstr "Vigane e-post" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID on muudetud" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Vigane päring" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Keela grupi kustutamine" @@ -67,6 +59,10 @@ msgstr "Keela kasutaja kustutamine" msgid "Language changed" msgstr "Keel on muudetud" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Vigane päring" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index c8207cb0467..f0bcf31f96a 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:19+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "Baas DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaardilt" @@ -115,10 +119,18 @@ msgstr "Port" msgid "Base User Tree" msgstr "Baaskasutaja puu" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Baasgrupi puu" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Grupiliikme seotus" diff --git a/l10n/et_EE/user_webdavauth.po b/l10n/et_EE/user_webdavauth.po index 2e1b479cbe8..a2ccf77cee8 100644 --- a/l10n/et_EE/user_webdavauth.po +++ b/l10n/et_EE/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,17 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/eu/core.po b/l10n/eu/core.po index 20402a04985..b461e4928b6 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 11:46+0000\n" -"Last-Translator: Piarres Beobide <pi@beobide.net>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,55 +86,55 @@ msgstr "Errorea gertatu da %s gogokoetatik ezabatzean." msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "segundu" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "gaur" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "atzo" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "hilabete" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "joan den urtean" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "urte" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "Objetu mota ez dago zehaztuta." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Errorea" @@ -177,7 +177,7 @@ msgstr "App izena ez dago zehaztuta." msgid "The required file {file} is not installed!" msgstr "Beharrezkoa den {file} fitxategia ez dago instalatuta!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -205,12 +205,11 @@ msgstr "Elkarbanatu honekin" msgid "Share with link" msgstr "Elkarbanatu lotura batekin" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Babestu pasahitzarekin" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Pasahitza" @@ -274,23 +273,23 @@ msgstr "ezabatu" msgid "share" msgstr "elkarbanatu" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Eposta bidalia" @@ -314,8 +313,8 @@ msgstr "Berrezartzeko eposta bidali da." msgid "Request failed!" msgstr "Eskariak huts egin du!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Erabiltzaile izena" @@ -404,44 +403,44 @@ msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri msgid "Create an <strong>admin account</strong>" msgstr "Sortu <strong>kudeatzaile kontu<strong> bat" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Aurreratua" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datuen karpeta" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfiguratu datu basea" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "erabiliko da" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Bukatu konfigurazioa" @@ -529,36 +528,32 @@ msgstr "web zerbitzuak zure kontrolpean" msgid "Log out" msgstr "Saioa bukatu" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Saio hasiera automatikoa ez onartuta!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Zure pasahitza orain dela gutxi ez baduzu aldatu, zure kontua arriskuan egon daiteke!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Mesedez aldatu zure pasahitza zure kontua berriz segurtatzeko." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Galdu duzu pasahitza?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "gogoratu" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Hasi saioa" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Zure saioa bukatu da." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "aurrekoa" @@ -567,16 +562,7 @@ msgstr "aurrekoa" msgid "next" msgstr "hurrengoa" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Segurtasun abisua" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Mesedez egiaztatu zure pasahitza. <br/>Segurtasun arrazoiengatik noizbehinka zure pasahitza berriz sartzea eska diezazukegu." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Egiaztatu" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index fc884c532ed..0cc98cedbd1 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 11:48+0000\n" -"Last-Translator: Piarres Beobide <pi@beobide.net>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,46 +20,72 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Ez da fitxategirik igo. Errore ezezaguna" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ez da arazorik izan, fitxategia ongi igo da" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Aldi baterako karpeta falta da" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fitxategiak" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Ezabatu" @@ -67,122 +93,134 @@ msgstr "Ezabatu" msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "aholkatu izena" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "ordezkatua {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desegin" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr " {new_name}-k {old_name} ordezkatu du" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "elkarbanaketa utzita {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "ezabatuta {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-fitxategia sortzen ari da, denbora har dezake" -#: js/files.js:209 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" -#: js/files.js:209 +#: js/files.js:224 msgid "Upload Error" msgstr "Igotzean errore bat suertatu da" -#: js/files.js:226 +#: js/files.js:241 msgid "Close" msgstr "Itxi" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Zain" -#: js/files.js:265 +#: js/files.js:280 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fitxategi igotzen" -#: js/files.js:340 js/files.js:373 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:442 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/files.js:512 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URLa ezin da hutsik egon." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:693 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fitxategi eskaneatuta" -#: js/files.js:701 +#: js/files.js:735 msgid "error while scanning" msgstr "errore bat egon da eskaneatzen zen bitartean" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Izena" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaina" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:803 +#: js/files.js:829 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:805 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:813 +#: js/files.js:839 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:815 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fitxategi" @@ -194,27 +232,27 @@ msgstr "Fitxategien kudeaketa" msgid "Maximum upload size" msgstr "Igo daitekeen gehienezko tamaina" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max, posiblea:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Beharrezkoa fitxategi-anitz eta karpeten deskargarako." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Gaitu ZIP-deskarga" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 mugarik gabe esan nahi du" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP fitxategien gehienezko tamaina" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Gorde" @@ -234,36 +272,36 @@ msgstr "Karpeta" msgid "From link" msgstr "Estekatik" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Igo" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Igotakoa handiegia da" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 471bd1ee586..64844cd7adf 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-25 02:02+0200\n" -"PO-Revision-Date: 2012-09-24 13:25+0000\n" -"Last-Translator: asieriko <asieriko@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Iraungi bertsio guztiak" - #: js/versions.js:16 msgid "History" msgstr "Historia" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Bertsioak" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Honek zure fitxategien bertsio guztiak ezabatuko ditu" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Fitxategien Bertsioak" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 9442caf83a9..39af469535a 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/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: 2012-11-27 00:10+0100\n" -"PO-Revision-Date: 2012-11-25 23:10+0000\n" -"Last-Translator: asieriko <asieriko@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Laguntza" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Pertsonala" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ezarpenak" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Erabiltzaileak" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplikazioak" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP deskarga ez dago gaituta." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Fitxategiak banan-banan deskargatu behar dira." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Itzuli fitxategietara" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplikazioa ez dago gaituta" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Autentikazio errorea" @@ -82,55 +86,55 @@ msgstr "Testua" msgid "Images" msgstr "Irudiak" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "orain dela segundu batzuk" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "orain dela %d minutu" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "orain dela %d ordu" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "gaur" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "atzo" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "orain dela %d egun" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "joan den hilabetea" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "orain dela %d hilabete" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "joan den urtea" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "orain dela urte batzuk" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index cf8c43c710b..b696af989de 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "Taldea dagoeneko existitzenda" msgid "Unable to add group" msgstr "Ezin izan da taldea gehitu" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Ezin izan da aplikazioa gaitu." @@ -44,14 +44,6 @@ msgstr "Eposta gorde da" msgid "Invalid email" msgstr "Baliogabeko eposta" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID aldatuta" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Baliogabeko eskaria" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Ezin izan da taldea ezabatu" @@ -68,6 +60,10 @@ msgstr "Ezin izan da erabiltzailea ezabatu" msgid "Language changed" msgstr "Hizkuntza aldatuta" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Baliogabeko eskaria" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Kudeatzaileak ezin du bere burua kendu kudeatzaile taldetik" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 6184b2abf9d..aa08719835f 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 20:38+0000\n" -"Last-Translator: asieriko <asieriko@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,9 +27,9 @@ msgstr "<b>Abisua:</b> user_ldap eta user_webdavauth aplikazioak bateraezinak di #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Abisua:</b> PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "Oinarrizko DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Erabiltzaile eta taldeentzako Oinarrizko DN zehaztu dezakezu Aurreratu fitxan" @@ -115,10 +119,18 @@ msgstr "Portua" msgid "Base User Tree" msgstr "Oinarrizko Erabiltzaile Zuhaitza" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Oinarrizko Talde Zuhaitza" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Talde-Kide elkarketak" diff --git a/l10n/eu/user_webdavauth.po b/l10n/eu/user_webdavauth.po index 0f039352404..8065829bc43 100644 --- a/l10n/eu/user_webdavauth.po +++ b/l10n/eu/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: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 20:58+0000\n" -"Last-Translator: asieriko <asieriko@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,13 +18,17 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloud erabiltzailearen kredentzialak helbide honetara bidaliko ditu. http 401 eta http 403 kredentzial ez zuzenak bezala hartuko dira eta beste kode guztiak kredentzial zuzentzat hartuko dira." +"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/fa/core.po b/l10n/fa/core.po index 8b2531f874f..2e9ba760477 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "تنظیمات" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "ثانیهها پیش" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "امروز" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "دیروز" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "ماه قبل" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "ماههای قبل" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "سال قبل" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "سالهای قبل" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "خطا" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,12 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "گذرواژه" @@ -272,23 +271,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +311,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "شناسه" @@ -402,44 +401,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "لطفا یک <strong> شناسه برای مدیر</strong> بسازید" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "حرفه ای" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "پوشه اطلاعاتی" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "پایگاه داده برنامه ریزی شدند" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "استفاده خواهد شد" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "شناسه پایگاه داده" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "پسورد پایگاه داده" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "نام پایگاه داده" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "هاست پایگاه داده" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "اتمام نصب" @@ -527,36 +526,32 @@ msgstr "سرویس وب تحت کنترل شما" msgid "Log out" msgstr "خروج" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "آیا گذرواژه تان را به یاد نمی آورید؟" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "بیاد آوری" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "ورود" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "شما خارج شدید" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "بازگشت" @@ -565,16 +560,7 @@ msgstr "بازگشت" msgid "next" msgstr "بعدی" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 7e13f99c90f..ea5bfc082a3 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,72 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "مقدار کمی از فایل بارگذاری شده" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "هیچ فایلی بارگذاری نشده" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده است" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "فایل ها" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "پاک کردن" @@ -67,122 +93,134 @@ msgstr "پاک کردن" msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "لغو" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "خطا در بار گذاری" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "بستن" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "در انتظار" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "نام" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "اندازه" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -194,27 +232,27 @@ msgstr "اداره پرونده ها" msgid "Maximum upload size" msgstr "حداکثر اندازه بارگزاری" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "حداکثرمقدارممکن:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "احتیاج پیدا خواهد شد برای چند پوشه و پرونده" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "فعال سازی بارگیری پرونده های فشرده" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 نامحدود است" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "حداکثرمقدار برای بار گزاری پرونده های فشرده" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "ذخیره" @@ -234,36 +272,36 @@ msgstr "پوشه" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "بارگذاری" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "اینجا هیچ چیز نیست." -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "بارگیری" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "حجم بارگذاری بسیار زیاد است" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "بازرسی کنونی" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index b7da17a8178..7e657a47ca6 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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "انقضای تمامی نسخهها" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 44408cc66f7..52e8d62eef4 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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "راهنما" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "شخصی" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "تنظیمات" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "کاربران" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "مدیر" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "خطا در اعتبار سنجی" @@ -82,55 +86,55 @@ msgstr "متن" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "ثانیهها پیش" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d دقیقه پیش" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "امروز" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "دیروز" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "ماه قبل" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "سال قبل" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "سالهای قبل" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 55f1ea97204..20aa22599b1 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -45,14 +45,6 @@ msgstr "ایمیل ذخیره شد" msgid "Invalid email" msgstr "ایمیل غیر قابل قبول" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID تغییر کرد" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "درخواست غیر قابل قبول" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -69,6 +61,10 @@ msgstr "" msgid "Language changed" msgstr "زبان تغییر کرد" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "درخواست غیر قابل قبول" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index f7e8c607e27..b9a2a147546 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -115,10 +119,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" diff --git a/l10n/fa/user_webdavauth.po b/l10n/fa/user_webdavauth.po index 2987a7b6bdb..e4088da32dd 100644 --- a/l10n/fa/user_webdavauth.po +++ b/l10n/fa/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/fi_FI/core.po b/l10n/fi_FI/core.po index c7c2c1c4a14..7aa46f13517 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -5,7 +5,7 @@ # Translators: # <ari.takalo@iki.fi>, 2012. # Jesse Jaara <jesse.jaara@gmail.com>, 2012. -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. +# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012-2013. # Johannes Korpela <>, 2012. # Pekka Sutela <pekka.sutela@gmail.com>, 2012. # <tehoratopato@gmail.com>, 2012. @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 13:22+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 09:13+0000\n" "Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -27,26 +27,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Käyttäjä %s jakoi tiedoston kanssasi" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Käyttäjä %s jakoi kansion kanssasi" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Käyttäjä %s jakoi tiedoston \"%s\" kanssasi. Se on ladattavissa täältä: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Käyttäjä %s jakoi kansion \"%s\" kanssasi. Se on ladattavissa täältä: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -75,7 +75,7 @@ msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Virhe lisätessä kohdetta %s suosikkeihin." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -84,61 +84,61 @@ msgstr "Luokkia ei valittu poistettavaksi." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Virhe poistaessa kohdetta %s suosikeista." #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Asetukset" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "tänään" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "eilen" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "viime kuussa" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "viime vuonna" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "vuotta sitten" @@ -168,8 +168,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Virhe" @@ -181,7 +181,7 @@ msgstr "Sovelluksen nimeä ei ole määritelty." msgid "The required file {file} is not installed!" msgstr "Vaadittua tiedostoa {file} ei ole asennettu!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -195,26 +195,25 @@ msgstr "Virhe oikeuksia muuttaessa" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Jaettu sinun ja ryhmän {group} kanssa käyttäjän {owner} toimesta" #: js/share.js:153 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Jaettu kanssasi käyttäjän {owner} toimesta" #: js/share.js:158 msgid "Share with" -msgstr "" +msgstr "Jaa" #: js/share.js:163 msgid "Share with link" msgstr "Jaa linkillä" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Suojaa salasanalla" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Salasana" @@ -278,23 +277,23 @@ msgstr "poista" msgid "share" msgstr "jaa" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Sähköposti lähetetty" @@ -312,14 +311,14 @@ msgstr "Saat sähköpostitse linkin nollataksesi salasanan." #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "Salasanan nollausviesti lähetetty." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" msgstr "Pyyntö epäonnistui!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Käyttäjätunnus" @@ -533,36 +532,32 @@ msgstr "verkkopalvelut hallinnassasi" msgid "Log out" msgstr "Kirjaudu ulos" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automaattinen sisäänkirjautuminen hylättiin!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu." -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Unohditko salasanasi?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "muista" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Kirjaudu sisään" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Olet kirjautunut ulos." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "edellinen" @@ -571,16 +566,7 @@ msgstr "edellinen" msgid "next" msgstr "seuraava" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Turvallisuusvaroitus!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Vahvista salasanasi. <br/>Turvallisuussyistä sinulta saatetaan ajoittain kysyä salasanasi uudelleen." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Vahvista" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken." diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index e96dbeabb50..cf08585d92b 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -4,7 +4,7 @@ # # Translators: # Jesse Jaara <jesse.jaara@gmail.com>, 2012. -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. +# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012-2013. # Johannes Korpela <>, 2012. # <tehoratopato@gmail.com>, 2012. # <tscooter@hotmail.com>, 2012. @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 19:12+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,46 +22,72 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Kohteen %s siirto ei onnistunut" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Tiedoston nimeäminen uudelleen ei onnistunut" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Väliaikaiskansiota ei ole olemassa" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Tilaa ei ole riittävästi" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Virheellinen kansio." + #: appinfo/app.php:10 msgid "Files" msgstr "Tiedostot" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Peru jakaminen" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Poista" @@ -69,122 +95,134 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "korvaa" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "ehdota nimeä" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "peru" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "kumoa" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' on virheellinen nimi tiedostolle." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Tiedoston nimi ei voi olla tyhjä." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Lähetysvirhe." -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Sulje" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Odottaa" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Verkko-osoite ei voi olla tyhjä" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nimi" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Koko" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Muutettu" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} tiedostoa" @@ -196,27 +234,27 @@ msgstr "Tiedostonhallinta" msgid "Maximum upload size" msgstr "Lähetettävän tiedoston suurin sallittu koko" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "suurin mahdollinen:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Tarvitaan useampien tiedostojen ja kansioiden latausta varten." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Ota ZIP-paketin lataaminen käytöön" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 on rajoittamaton" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP-tiedostojen enimmäiskoko" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Tallenna" @@ -234,38 +272,38 @@ msgstr "Kansio" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Linkistä" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Lähetä" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Lataa" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index ab692d6056c..4a04a540a90 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 12:22+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Vanhenna kaikki versiot" - #: js/versions.js:16 msgid "History" msgstr "Historia" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versiot" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Tiedostojen versiointi" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 0669c281cf6..7b90f23c2cd 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. +# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-15 20:58+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 08:40+0000\n" "Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ohje" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Henkilökohtainen" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Asetukset" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Käyttäjät" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Sovellukset" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Ylläpitäjä" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP-lataus on poistettu käytöstä." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Takaisin tiedostoihin" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "ei voitu määrittää" + #: json.php:28 msgid "Application is not enabled" msgstr "Sovellusta ei ole otettu käyttöön" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Todennusvirhe" @@ -82,55 +86,55 @@ msgstr "Teksti" msgid "Images" msgstr "Kuvat" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekuntia sitten" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minuuttia sitten" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 tunti sitten" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d tuntia sitten" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "tänään" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "eilen" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d päivää sitten" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "viime kuussa" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d kuukautta sitten" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "viime vuonna" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "vuotta sitten" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 0b52b4e2f60..087d613c685 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -4,14 +4,14 @@ # # Translators: # Jesse Jaara <jesse.jaara@gmail.com>, 2012. -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. +# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012-2013. # <tehoratopato@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "Ryhmä on jo olemassa" msgid "Unable to add group" msgstr "Ryhmän lisäys epäonnistui" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Sovelluksen käyttöönotto epäonnistui." @@ -44,14 +44,6 @@ msgstr "Sähköposti tallennettu" msgid "Invalid email" msgstr "Virheellinen sähköposti" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID on vaihdettu" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Virheellinen pyyntö" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Ryhmän poisto epäonnistui" @@ -68,6 +60,10 @@ msgstr "Käyttäjän poisto epäonnistui" msgid "Language changed" msgstr "Kieli on vaihdettu" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Virheellinen pyyntö" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Ylläpitäjät eivät poistaa omia tunnuksiaan ylläpitäjien ryhmästä" @@ -251,7 +247,7 @@ msgstr "" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Rajoittamaton" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -267,7 +263,7 @@ msgstr "" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Oletus" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 6f821f095c1..94f7ad7b4bb 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -29,8 +29,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -47,6 +47,10 @@ msgid "Base DN" msgstr "Oletus DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset'-välilehdeltä " @@ -117,10 +121,18 @@ msgstr "Portti" msgid "Base User Tree" msgstr "Oletuskäyttäjäpuu" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Ryhmien juuri" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Ryhmän ja jäsenen assosiaatio (yhteys)" diff --git a/l10n/fi_FI/user_webdavauth.po b/l10n/fi_FI/user_webdavauth.po index 1bf07546c14..c42c6d288e6 100644 --- a/l10n/fi_FI/user_webdavauth.po +++ b/l10n/fi_FI/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,17 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/fr/core.po b/l10n/fr/core.po index 6dafbd6ca14..512141ccb68 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -3,7 +3,8 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau <skimpax@gmail.com>, 2012. +# Christophe Lherieau <skimpax@gmail.com>, 2012-2013. +# <dba@alternalease.fr>, 2013. # <fkhannouf@me.com>, 2012. # <florentin.lemoal@gmail.com>, 2012. # Guillaume Paumier <guillom.pom@gmail.com>, 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" -"PO-Revision-Date: 2012-12-28 23:01+0000\n" -"Last-Translator: ouafnico <nicolas@shivaserv.fr>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,55 +94,55 @@ msgstr "Erreur lors de la suppression de %s des favoris." msgid "Settings" msgstr "Paramètres" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "aujourd'hui" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "hier" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "le mois dernier" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "l'année dernière" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "il y a plusieurs années" @@ -217,7 +218,6 @@ msgid "Password protect" msgstr "Protéger par un mot de passe" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Mot de passe" @@ -287,7 +287,7 @@ msgstr "Protégé par un mot de passe" #: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "Un erreur est survenue pendant la suppression de la date d'expiration" +msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" #: js/share.js:566 msgid "Error setting expiration date" @@ -384,7 +384,7 @@ msgstr "Ajouter" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "Avertissement de sécutité" +msgstr "Avertissement de sécurité" #: templates/installation.php:24 msgid "" @@ -562,10 +562,6 @@ msgstr "se souvenir de moi" msgid "Log in" msgstr "Connexion" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Vous êtes désormais déconnecté." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "précédent" @@ -574,16 +570,7 @@ msgstr "précédent" msgid "next" msgstr "suivant" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Alerte de sécurité !" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Veuillez vérifier votre mot de passe. <br/>Par sécurité il vous sera occasionnellement demandé d'entrer votre mot de passe de nouveau." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Vérification" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index b0fb5e1a70e..cd05b6ab167 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -3,8 +3,9 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau <skimpax@gmail.com>, 2012. +# Christophe Lherieau <skimpax@gmail.com>, 2012-2013. # Cyril Glapa <kyriog@gmail.com>, 2012. +# <dba@alternalease.fr>, 2013. # Geoffrey Guerrier <geoffrey.guerrier@gmail.com>, 2012. # <gp4004@arghh.org>, 2012. # <guiguidu31300@gmail.com>, 2012. @@ -13,14 +14,14 @@ # Nahir Mohamed <nahirmoha@gmail.com>, 2012. # Robert Di Rosa <>, 2012. # <rom1dep@gmail.com>, 2011. -# Romain DEP. <rom1dep@gmail.com>, 2012. +# Romain DEP. <rom1dep@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-05 00:04+0100\n" -"PO-Revision-Date: 2012-12-04 10:24+0000\n" -"Last-Translator: Robert Di Rosa <>\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-09 23:40+0000\n" +"Last-Translator: Romain DEP. <rom1dep@gmail.com>\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,46 +29,72 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Impossible de déplacer %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Impossible de renommer le fichier" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Aucun fichier n'a été chargé. Erreur inconnue" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été téléversé avec succès" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement téléversé" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Aucun fichier n'a été téléversé" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Il manque un répertoire temporaire" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Espace disponible insuffisant" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Dossier invalide." + #: appinfo/app.php:10 msgid "Files" msgstr "Fichiers" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Ne plus partager" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Supprimer" @@ -75,122 +102,134 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "remplacer" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "Suggérer un nom" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "annuler" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" -msgstr "{new_name} a été replacé" +msgstr "{new_name} a été remplacé" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "annuler" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Fichiers non partagés : {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "Fichiers supprimés : {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' n'est pas un nom de fichier valide." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Le nom de fichier ne peut être vide." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet." -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Erreur de chargement" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Fermer" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "En cours" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fichier en cours de téléchargement" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fichiers téléversés" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nom de répertoire invalide. \"Shared\" est réservé par ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "L'URL ne peut-être vide" + +#: js/files.js:543 +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:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fichiers indexés" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "erreur lors de l'indexation" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Taille" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modifié" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 fichier" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fichiers" @@ -202,27 +241,27 @@ msgstr "Gestion des fichiers" msgid "Maximum upload size" msgstr "Taille max. d'envoi" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "Max. possible :" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Nécessaire pour le téléchargement de plusieurs fichiers et de dossiers." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Activer le téléchargement ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 est illimité" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Taille maximale pour les fichiers ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Sauvegarder" @@ -242,36 +281,36 @@ msgstr "Dossier" msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Envoyer" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" -msgstr "Téléchargement" +msgstr "Télécharger" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Fichier trop volumineux" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index a88cc9a369b..1fb4fdb1de2 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-25 02:02+0200\n" -"PO-Revision-Date: 2012-09-24 14:20+0000\n" -"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Supprimer les versions intermédiaires" - #: js/versions.js:16 msgid "History" msgstr "Historique" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versions" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date)." - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionnage des fichiers" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 7617ac30e7d..07fd3669c49 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-26 00:01+0100\n" -"PO-Revision-Date: 2012-11-25 00:56+0000\n" -"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Aide" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personnel" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Paramètres" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Utilisateurs" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Applications" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administration" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Retour aux Fichiers" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "L'application n'est pas activée" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Erreur d'authentification" @@ -83,55 +87,55 @@ msgstr "Texte" msgid "Images" msgstr "Images" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "à l'instant" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "il y a 1 minute" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "il y a %d minutes" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Il y a une heure" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Il y a %d heures" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "aujourd'hui" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "hier" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "il y a %d jours" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "le mois dernier" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Il y a %d mois" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "l'année dernière" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "il y a plusieurs années" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 2b0461bacab..9f3a6ceea3b 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -5,6 +5,7 @@ # Translators: # Brice <bmaron@gmail.com>, 2012. # Cyril Glapa <kyriog@gmail.com>, 2012. +# <dba@alternalease.fr>, 2013. # <fboulogne@april.org>, 2011. # <florentin.lemoal@gmail.com>, 2012. # <gp4004@arghh.org>, 2012. @@ -16,14 +17,14 @@ # <pierreamiel.giraud@gmail.com>, 2012. # Robert Di Rosa <>, 2012. # <rom1dep@gmail.com>, 2011, 2012. -# Romain DEP. <rom1dep@gmail.com>, 2012. +# Romain DEP. <rom1dep@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 11:04+0000\n" -"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,7 +44,7 @@ msgstr "Ce groupe existe déjà" msgid "Unable to add group" msgstr "Impossible d'ajouter le groupe" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Impossible d'activer l'Application" @@ -55,14 +56,6 @@ msgstr "E-mail sauvegardé" msgid "Invalid email" msgstr "E-mail invalide" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "Identifiant OpenID changé" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Requête invalide" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Impossible de supprimer le groupe" @@ -79,6 +72,10 @@ msgstr "Impossible de supprimer l'utilisateur" msgid "Language changed" msgstr "Langue changée" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Requête invalide" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Les administrateurs ne peuvent pas se retirer eux-mêmes du groupe admin" @@ -164,7 +161,7 @@ msgstr "Clients" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "Télécharger des clients de bureau" +msgstr "Télécharger le client de synchronisation pour votre ordinateur" #: templates/personal.php:14 msgid "Download Android Client" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index d435d3b77ce..c437634e5ed 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-25 00:10+0100\n" -"PO-Revision-Date: 2012-12-24 14:18+0000\n" -"Last-Translator: mishka <mishka.lazzlo@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,9 +32,9 @@ msgstr "<b>Avertissement:</b> Les applications user_ldap et user_webdavauth sont #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Avertissement:</b> Le module PHP LDAP requis n'est pas installé, l'application ne marchera pas. Contactez votre administrateur système pour qu'il l'installe." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -50,6 +50,10 @@ msgid "Base DN" msgstr "DN Racine" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Vous pouvez détailler les DN Racines de vos utilisateurs et groupes dans l'onglet Avancé" @@ -120,10 +124,18 @@ msgstr "Port" msgid "Base User Tree" msgstr "DN racine de l'arbre utilisateurs" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "DN racine de l'arbre groupes" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Association groupe-membre" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index 4917efe0505..ec81f76c54d 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -3,16 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Christophe Lherieau <skimpax@gmail.com>, 2013. +# <mishka.lazzlo@gmail.com>, 2013. # <nicolas@shivaserv.fr>, 2012. # Robert Di Rosa <>, 2012. -# Romain DEP. <rom1dep@gmail.com>, 2012. +# Romain DEP. <rom1dep@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-28 23:13+0000\n" -"Last-Translator: ouafnico <nicolas@shivaserv.fr>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,13 +22,17 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL : http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/gl/core.po b/l10n/gl/core.po index 22c66343396..de2454855f0 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -4,13 +4,14 @@ # # Translators: # antiparvos <marcoslansgarza@gmail.com>, 2012. -# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012. +# <mbouzada@gmail.com>, 2012. +# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -22,26 +23,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "O usuario %s compartíu un ficheiro con vostede" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "O usuario %s compartíu un cartafol con vostede" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "O usuario %s compartiu o ficheiro «%s» con vostede. Teno dispoñíbel en: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "O usuario %s compartiu o cartafol «%s» con vostede. Teno dispoñíbel en: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -65,12 +66,12 @@ msgstr "Non se forneceu o tipo de obxecto." #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "Non se deu o ID %s." +msgstr "Non se forneceu o ID %s." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Erro ao engadir %s aos favoritos." +msgstr "Produciuse un erro ao engadir %s aos favoritos." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -79,61 +80,61 @@ msgstr "Non hai categorías seleccionadas para eliminar." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Erro ao eliminar %s dos favoritos." +msgstr "Produciuse un erro ao eliminar %s dos favoritos." #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Configuracións" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" -msgstr "{minutes} minutos atrás" +msgstr "hai {minutes} minutos" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "hai 1 hora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" -msgstr "{hours} horas atrás" +msgstr "hai {hours} horas" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hoxe" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "onte" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" -msgstr "{days} días atrás" +msgstr "hai {days} días" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "último mes" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" -msgstr "{months} meses atrás" +msgstr "hai {months} meses" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "meses atrás" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "último ano" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "anos atrás" @@ -163,8 +164,8 @@ msgid "The object type is not specified." msgstr "Non se especificou o tipo de obxecto." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Erro" @@ -176,25 +177,25 @@ msgstr "Non se especificou o nome do aplicativo." msgid "The required file {file} is not installed!" msgstr "Non está instalado o ficheiro {file} que se precisa" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" -msgstr "Erro compartindo" +msgstr "Produciuse un erro ao compartir" #: js/share.js:135 msgid "Error while unsharing" -msgstr "Erro ao deixar de compartir" +msgstr "Produciuse un erro ao deixar de compartir" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "Erro ao cambiar os permisos" +msgstr "Produciuse un erro ao cambiar os permisos" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "Compartido contigo e co grupo {group} de {owner}" +msgstr "Compartido con vostede e co grupo {group} por {owner}" #: js/share.js:153 msgid "Shared with you by {owner}" -msgstr "Compartido contigo por {owner}" +msgstr "Compartido con vostede por {owner}" #: js/share.js:158 msgid "Share with" @@ -202,24 +203,23 @@ msgstr "Compartir con" #: js/share.js:163 msgid "Share with link" -msgstr "Compartir ca ligazón" +msgstr "Compartir coa ligazón" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Protexido con contrasinais" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Contrasinal" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Enviar ligazón por correo" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Enviar" #: js/share.js:177 msgid "Set expiration date" @@ -231,7 +231,7 @@ msgstr "Data de caducidade" #: js/share.js:210 msgid "Share via email:" -msgstr "Compartir por correo electrónico:" +msgstr "Compartir por correo:" #: js/share.js:212 msgid "No people found" @@ -239,7 +239,7 @@ msgstr "Non se atopou xente" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "Non se acepta volver a compartir" +msgstr "Non se permite volver a compartir" #: js/share.js:275 msgid "Shared in {item} with {user}" @@ -267,64 +267,64 @@ msgstr "actualizar" #: js/share.js:319 msgid "delete" -msgstr "borrar" +msgstr "eliminar" #: js/share.js:322 msgid "share" msgstr "compartir" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "Erro ao quitar a data de caducidade" +msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" -msgstr "Erro ao definir a data de caducidade" +msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Enviando..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Correo enviado" #: lostpassword/controller.php:47 msgid "ownCloud password reset" -msgstr "Restablecer contrasinal de ownCloud" +msgstr "Restabelecer o contrasinal de ownCloud" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Usa a seguinte ligazón para restablecer o contrasinal: {link}" +msgstr "Usa a seguinte ligazón para restabelecer o contrasinal: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Recibirá unha ligazón por correo electrónico para restablecer o contrasinal" +msgstr "Recibirá unha ligazón por correo para restabelecer o contrasinal" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Restablecer o envío por correo." +msgstr "Restabelecer o envío por correo." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Fallo na petición" +msgstr "Non foi posíbel facer a petición" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nome de usuario" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Petición de restablecemento" +msgstr "Petición de restabelecemento" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "O contrasinal foi restablecido" +msgstr "O contrasinal foi restabelecido" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -336,7 +336,7 @@ msgstr "Novo contrasinal" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Restablecer contrasinal" +msgstr "Restabelecer o contrasinal" #: strings.php:5 msgid "Personal" @@ -376,19 +376,19 @@ msgstr "Engadir" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "Aviso de seguridade" +msgstr "Aviso de seguranza" #: templates/installation.php:24 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Non hai un xerador de números aleatorios dispoñíbel. Activa o engadido de OpenSSL para PHP." +msgstr "Non hai un xerador de números ao chou dispoñíbel. Active o engadido de OpenSSL para PHP." #: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Sen un xerador de números aleatorios seguro podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa túa conta." +msgstr "Sen un xerador seguro de números ao chou podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa súa conta." #: templates/installation.php:32 msgid "" @@ -397,50 +397,50 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "O teu cartafol de datos e os teus ficheiros son seguramente accesibles a través de internet. O ficheiro .htaccess que ownCloud fornece non está empregándose. Suxírese que configures o teu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou movas o cartafol de datos fóra do root do directorio de datos do servidor web." +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. Suxerimoslle 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." #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Crear unha <strong>contra de administrador</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Cartafol de datos" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurar a base de datos" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" -msgstr "será utilizado" +msgstr "vai ser utilizado" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Táboa de espazos da base de datos" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Rematar a configuración" @@ -474,51 +474,51 @@ msgstr "Sábado" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "January" -msgstr "Xaneiro" +msgstr "xaneiro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "February" -msgstr "Febreiro" +msgstr "febreiro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "March" -msgstr "Marzo" +msgstr "marzo" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "April" -msgstr "Abril" +msgstr "abril" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "May" -msgstr "Maio" +msgstr "maio" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "June" -msgstr "Xuño" +msgstr "xuño" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "July" -msgstr "Xullo" +msgstr "xullo" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "August" -msgstr "Agosto" +msgstr "agosto" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "September" -msgstr "Setembro" +msgstr "setembro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "October" -msgstr "Outubro" +msgstr "outubro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "November" -msgstr "Novembro" +msgstr "novembro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "December" -msgstr "Decembro" +msgstr "decembro" #: templates/layout.guest.php:42 msgid "web services under your control" @@ -528,36 +528,32 @@ msgstr "servizos web baixo o seu control" msgid "Log out" msgstr "Desconectar" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Rexeitouse a entrada automática" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Se non fixeches cambios de contrasinal recentemente é posíbel que a túa conta estea comprometida!" +msgstr "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "Cambia de novo o teu contrasinal para asegurar a túa conta." +msgstr "Cambie de novo o seu contrasinal para asegurar a súa conta." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Perdeu o contrasinal?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "lembrar" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Conectar" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Está desconectado" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" @@ -566,16 +562,7 @@ msgstr "anterior" msgid "next" msgstr "seguinte" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Advertencia de seguranza" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Verifica o teu contrasinal.<br/>Por motivos de seguridade pode que ocasionalmente se che pregunte de novo polo teu contrasinal." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Verificar" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Actualizando ownCloud a versión %s, esto pode levar un anaco." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index d44302b22d1..2387a6610f3 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# antiparvos <marcoslansgarza@gmail.com>, 2012. -# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012. +# antiparvos <marcoslansgarza@gmail.com>, 2012-2013. +# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 21:51+0000\n" -"Last-Translator: Miguel Branco <mgl.branco@gmail.com>\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" +"PO-Revision-Date: 2013-01-13 10:49+0000\n" +"Last-Translator: Xosé M. Lamas <correo.xmgz@gmail.com>\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" @@ -19,46 +19,72 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "Non se moveu %s - Xa existe un ficheiro con ese nome." + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Non se puido mover %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Non se pode renomear o ficheiro" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Non se subiu ningún ficheiro. Erro descoñecido." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Non hai erros. O ficheiro enviouse correctamente" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro subido excede a directiva indicada polo tamaño_máximo_de_subida de php.ini" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado foi só parcialmente enviado" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Falta un cartafol temporal" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Erro ao escribir no disco" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "O espazo dispoñíbel é insuficiente" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "O directorio é incorrecto." + #: appinfo/app.php:10 msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Deixar de compartir" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Eliminar" @@ -66,122 +92,134 @@ msgstr "Eliminar" msgid "Rename" msgstr "Mudar o nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "xa existe un {new_name}" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substituír" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "suxerir nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "substituír {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desfacer" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} polo {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} sen compartir" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} eliminados" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' é un nonme de ficheiro non válido" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "O nome de ficheiro non pode estar baldeiro" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome non válido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non se permiten." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "xerando un ficheiro ZIP, o que pode levar un anaco." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Erro na subida" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Pechar" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendentes" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 ficheiro subíndose" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} ficheiros subíndose" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome de cartafol non válido. O uso de \"compartido\" está reservado exclusivamente para ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL non pode quedar baleiro." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Nome de cartafol non válido. O uso de 'Shared' está reservado por Owncloud" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ficheiros escaneados" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "erro mentres analizaba" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ficheiros" @@ -193,27 +231,27 @@ msgstr "Manexo de ficheiro" msgid "Maximum upload size" msgstr "Tamaño máximo de envío" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "máx. posible: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Precísase para a descarga de varios ficheiros e cartafoles." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Habilitar a descarga-ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 significa ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo de descarga para os ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Gardar" @@ -233,36 +271,36 @@ msgstr "Cartafol" msgid "From link" msgstr "Dende a ligazón" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Enviar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar a subida" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nada por aquí. Envía algo." -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Descargar" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Envío demasiado grande" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que trata de subir superan o tamaño máximo permitido neste servidor" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarda." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 775152bbea7..9bc476ece0b 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 08:40+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\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" @@ -37,7 +37,7 @@ msgstr "Cubrir todos os campos obrigatorios" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Dá o segredo e a chave correcta do aplicativo de Dropbox." +msgstr "Forneza unha chave correcta e segreda do Dropbox." #: js/google.js:26 js/google.js:73 js/google.js:78 msgid "Error configuring Google Drive storage" @@ -47,14 +47,14 @@ msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive" msgid "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Aviso:</b> «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo." #: lib/config.php:435 msgid "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr "<b>Aviso:</b> A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo." #: templates/settings.php:3 msgid "External Storage" @@ -101,7 +101,7 @@ msgid "Users" msgstr "Usuarios" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Eliminar" @@ -113,10 +113,10 @@ msgstr "Activar o almacenamento externo do usuario" msgid "Allow users to mount their own external storage" msgstr "Permitir aos usuarios montar os seus propios almacenamentos externos" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "Certificados SSL root" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Importar o certificado root" diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po index aeb062c08df..c0ac98462b7 100644 --- a/l10n/gl/files_versions.po +++ b/l10n/gl/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-30 00:03+0100\n" -"PO-Revision-Date: 2012-11-29 16:08+0000\n" -"Last-Translator: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,22 +20,10 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Caducan todas as versións" - #: js/versions.js:16 msgid "History" msgstr "Historial" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versións" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Isto eliminará todas as copias de seguranza que haxa dos seus ficheiros" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Sistema de versión de ficheiros" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 739b0ba67ff..21150b035b8 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-08 00:10+0100\n" -"PO-Revision-Date: 2012-12-06 11:56+0000\n" -"Last-Translator: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,55 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Axuda" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Persoal" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Configuracións" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Usuarios" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Aplicativos" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Administración" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "As descargas ZIP están desactivadas" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros necesitan seren descargados de un en un." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Volver aos ficheiros" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "O aplicativo non está activado" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Produciuse un erro na autenticación" @@ -84,55 +88,55 @@ msgstr "Texto" msgid "Images" msgstr "Imaxes" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "hai segundos" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "hai 1 minuto" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "hai %d minutos" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Vai 1 hora" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Vai %d horas" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hoxe" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "onte" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "hai %d días" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "último mes" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Vai %d meses" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "último ano" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index e2ef6571062..428b5f06cd5 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -4,13 +4,14 @@ # # Translators: # antiparvos <marcoslansgarza@gmail.com>, 2012. +# <mbouzada@gmail.com>, 2012. # Xosé M. Lamas <correo.xmgz@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -21,7 +22,7 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Non se puido cargar a lista desde a App Store" +msgstr "Non foi posíbel cargar a lista desde a App Store" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -29,43 +30,39 @@ msgstr "O grupo xa existe" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Non se pode engadir o grupo" +msgstr "Non é posíbel engadir o grupo" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Con se puido activar o aplicativo." +msgstr "Non é posíbel activar o aplicativo." #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Correo electrónico gardado" +msgstr "Correo gardado" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "correo electrónico non válido" - -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "Mudou o OpenID" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Petición incorrecta" +msgstr "correo incorrecto" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Non se pode eliminar o grupo." +msgstr "Non é posíbel eliminar o grupo." #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "Erro na autenticación" +msgstr "Produciuse un erro de autenticación" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Non se pode eliminar o usuario" +msgstr "Non é posíbel eliminar o usuario" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "O idioma mudou" +msgstr "O idioma cambiou" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Petición incorrecta" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -74,12 +71,12 @@ msgstr "Os administradores non se pode eliminar a si mesmos do grupo admin" #: ajax/togglegroups.php:28 #, php-format msgid "Unable to add user to group %s" -msgstr "Non se puido engadir o usuario ao grupo %s" +msgstr "Non é posíbel engadir o usuario ao grupo %s" #: ajax/togglegroups.php:34 #, php-format msgid "Unable to remove user from group %s" -msgstr "Non se puido eliminar o usuario do grupo %s" +msgstr "Non é posíbel eliminar o usuario do grupo %s" #: js/apps.js:28 js/apps.js:67 msgid "Disable" @@ -99,7 +96,7 @@ msgstr "Galego" #: templates/apps.php:10 msgid "Add your App" -msgstr "Engade o teu aplicativo" +msgstr "Engada o seu aplicativo" #: templates/apps.php:11 msgid "More Apps" @@ -107,11 +104,11 @@ msgstr "Máis aplicativos" #: templates/apps.php:27 msgid "Select an App" -msgstr "Escolla un Aplicativo" +msgstr "Escolla un aplicativo" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" -msgstr "Vexa a páxina do aplicativo en apps.owncloud.com" +msgstr "Consulte a páxina do aplicativo en apps.owncloud.com" #: templates/apps.php:32 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" @@ -119,32 +116,32 @@ msgstr "<span class=\"licence\"></span>-licenciado por<span class=\"author\"></s #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "Documentación do usuario" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "Documentación do administrador" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "Documentación na Rede" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "Foro" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Seguemento de fallos" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Asistencia comercial" #: templates/personal.php:8 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" -msgstr "Tes usados <strong>%s</strong> do total dispoñíbel de <strong>%s</strong>" +msgstr "Te en uso <strong>%s</strong> do total dispoñíbel de <strong>%s</strong>" #: templates/personal.php:12 msgid "Clients" @@ -152,15 +149,15 @@ msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Descargar clientes para escritorio" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Descargar clientes para Android" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Descargar clientes ra iOS" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -172,7 +169,7 @@ msgstr "O seu contrasinal foi cambiado" #: templates/personal.php:23 msgid "Unable to change your password" -msgstr "Incapaz de trocar o seu contrasinal" +msgstr "Non é posíbel cambiar o seu contrasinal" #: templates/personal.php:24 msgid "Current password" @@ -188,19 +185,19 @@ msgstr "amosar" #: templates/personal.php:27 msgid "Change password" -msgstr "Mudar contrasinal" +msgstr "Cambiar o contrasinal" #: templates/personal.php:33 msgid "Email" -msgstr "Correo electrónico" +msgstr "Correo" #: templates/personal.php:34 msgid "Your email address" -msgstr "O seu enderezo de correo electrónico" +msgstr "O seu enderezo de correo" #: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" -msgstr "Escriba un enderezo de correo electrónico para habilitar a recuperación do contrasinal" +msgstr "Escriba un enderezo de correo para activar a recuperación do contrasinal" #: templates/personal.php:41 templates/personal.php:42 msgid "Language" @@ -212,15 +209,15 @@ msgstr "Axude na tradución" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Versión" #: templates/personal.php:65 msgid "" @@ -246,11 +243,11 @@ msgstr "Crear" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Almacenamento predeterminado" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Sen límites" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -262,12 +259,12 @@ msgstr "Grupo Admin" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Almacenamento" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Predeterminado" #: templates/users.php:161 msgid "Delete" -msgstr "Borrar" +msgstr "Eliminar" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index e61cf22989a..66d3c446382 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,12 @@ msgid "" "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "<b>Aviso:</b> 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." #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -46,6 +46,10 @@ msgid "Base DN" msgstr "DN base" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Pode especificar a DN base para usuarios e grupos na lapela de «Avanzado»" @@ -58,7 +62,7 @@ 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 "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso en anónimo de o DN e o contrasinal baleiros." +msgstr "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso anónimo deixe o DN e o contrasinal baleiros." #: templates/settings.php:18 msgid "Password" @@ -116,10 +120,18 @@ msgstr "Porto" msgid "Base User Tree" msgstr "Base da árbore de usuarios" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Base da árbore de grupo" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Asociación de grupos e membros" @@ -130,7 +142,7 @@ msgstr "Usar TLS" #: templates/settings.php:28 msgid "Do not use it for SSL connections, it will fail." -msgstr "Non empregualo para conexións SSL: fallará." +msgstr "Non empregalo para conexións SSL: fallará." #: templates/settings.php:29 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po index 8fdb2745637..48aed85ad94 100644 --- a/l10n/gl/user_webdavauth.po +++ b/l10n/gl/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <mbouzada@gmail.com>, 2012. # Miguel Branco, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -18,13 +19,17 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/he/core.po b/l10n/he/core.po index 131ac2897e3..78ebe7d5f2d 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -4,6 +4,7 @@ # # Translators: # Dovix Dovix <dovix2003@gmail.com>, 2012. +# Gilad Naaman <gilad.doom@gmail.com>, 2013. # <ido.parag@gmail.com>, 2012. # <tomerc+transifex.net@gmail.com>, 2011. # Yaron Shahrabani <sh.yaron@gmail.com>, 2011-2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 07:42+0000\n" -"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,55 +88,55 @@ msgstr "שגיאה בהסרת %s מהמועדפים." msgid "Settings" msgstr "הגדרות" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "שניות" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "היום" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "אתמול" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "חודשים" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "שנים" @@ -165,8 +166,8 @@ msgid "The object type is not specified." msgstr "סוג הפריט לא צוין." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "שגיאה" @@ -178,7 +179,7 @@ msgstr "שם היישום לא צוין." msgid "The required file {file} is not installed!" msgstr "הקובץ הנדרש {file} אינו מותקן!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -206,12 +207,11 @@ msgstr "שיתוף עם" msgid "Share with link" msgstr "שיתוף עם קישור" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "הגנה בססמה" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "ססמה" @@ -275,23 +275,23 @@ msgstr "מחיקה" msgid "share" msgstr "שיתוף" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" @@ -316,7 +316,7 @@ msgid "Request failed!" msgstr "הבקשה נכשלה!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "שם משתמש" @@ -530,36 +530,32 @@ msgstr "שירותי רשת בשליטתך" msgid "Log out" msgstr "התנתקות" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "בקשת הכניסה האוטומטית נדחתה!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "אם לא שינית את ססמתך לאחרונה, יתכן שחשבונך נפגע!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "נא לשנות את הססמה שלך כדי לאבטח את חשבונך מחדש." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "שכחת את ססמתך?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "שמירת הססמה" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "כניסה" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "לא התחברת." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "הקודם" @@ -568,16 +564,7 @@ msgstr "הקודם" msgid "next" msgstr "הבא" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "אזהרת אבטחה!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "נא לאמת את הססמה שלך. <br/>מטעמי אבטחה יתכן שתופיע בקשה להזין את הססמה שוב." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "אימות" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "מעדכן את ownCloud אל גרסא %s, זה עלול לקחת זמן מה." diff --git a/l10n/he/files.po b/l10n/he/files.po index 2d18545dbb6..cbf762beda7 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 06:37+0000\n" -"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,46 +21,72 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "לא הועלה קובץ. טעות בלתי מזוהה." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "לא אירעה תקלה, הקבצים הועלו בהצלחה" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ שהועלה הועלה בצורה חלקית" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "לא הועלו קבצים" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "תיקייה זמנית חסרה" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "קבצים" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "הסר שיתוף" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "מחיקה" @@ -68,122 +94,134 @@ msgstr "מחיקה" msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "החלפה" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "הצעת שם" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ביטול" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} הוחלף" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "ביטול" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} הוחלף ב־{old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "בוטל שיתופם של {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} נמחקו" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "יוצר קובץ ZIP, אנא המתן." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "שגיאת העלאה" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "סגירה" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "ממתין" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} קבצים נשלחים" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "קישור אינו יכול להיות ריק." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} קבצים נסרקו" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "אירעה שגיאה במהלך הסריקה" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "שם" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "גודל" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "תיקייה אחת" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "קובץ אחד" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} קבצים" @@ -195,27 +233,27 @@ msgstr "טיפול בקבצים" msgid "Maximum upload size" msgstr "גודל העלאה מקסימלי" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "המרבי האפשרי: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "נחוץ להורדה של ריבוי קבצים או תיקיות." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "הפעלת הורדת ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 - ללא הגבלה" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "גודל הקלט המרבי לקובצי ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "שמירה" @@ -235,36 +273,36 @@ msgstr "תיקייה" msgid "From link" msgstr "מקישור" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "העלאה" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "הורדה" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "העלאה גדולה מידי" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "הקבצים נסרקים, נא להמתין." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "הסריקה הנוכחית" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index 6c4367359de..15bb3e971b3 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 07:21+0000\n" -"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,10 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "הפגת תוקף כל הגרסאות" - #: js/versions.js:16 msgid "History" msgstr "היסטוריה" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "גרסאות" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "שמירת הבדלי גרסאות של קבצים" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index de97f2df884..8383f3ccc95 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 06:32+0000\n" -"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "עזרה" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "אישי" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "הגדרות" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "משתמשים" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "יישומים" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "מנהל" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "הורדת ZIP כבויה" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "יש להוריד את הקבצים אחד אחרי השני." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "חזרה לקבצים" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "יישומים אינם מופעלים" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "שגיאת הזדהות" @@ -83,55 +87,55 @@ msgstr "טקסט" msgid "Images" msgstr "תמונות" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "שניות" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "לפני %d דקות" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "לפני שעה" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "לפני %d שעות" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "היום" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "אתמול" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "לפני %d ימים" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "חודש שעבר" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "לפני %d חודשים" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "שנה שעברה" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "שנים" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 4dd6b3fe8d4..312975f7b15 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "הקבוצה כבר קיימת" msgid "Unable to add group" msgstr "לא ניתן להוסיף קבוצה" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "לא ניתן להפעיל את היישום" @@ -45,14 +45,6 @@ msgstr "הדוא״ל נשמר" msgid "Invalid email" msgstr "דוא״ל לא חוקי" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID השתנה" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "בקשה לא חוקית" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "לא ניתן למחוק את הקבוצה" @@ -69,6 +61,10 @@ msgstr "לא ניתן למחוק את המשתמש" msgid "Language changed" msgstr "שפה השתנתה" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "בקשה לא חוקית" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "מנהלים לא יכולים להסיר את עצמם מקבוצת המנהלים" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index fb4f06d8441..ec42e5a0854 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Gilad Naaman <gilad.doom@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -26,13 +27,13 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 msgid "Host" -msgstr "" +msgstr "מארח" #: templates/settings.php:15 msgid "" @@ -44,12 +45,16 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" #: templates/settings.php:17 msgid "User DN" -msgstr "" +msgstr "DN משתמש" #: templates/settings.php:17 msgid "" @@ -60,15 +65,15 @@ msgstr "" #: templates/settings.php:18 msgid "Password" -msgstr "" +msgstr "סיסמא" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "לגישה אנונימית, השאר את הDM והסיסמא ריקים." #: templates/settings.php:19 msgid "User Login Filter" -msgstr "" +msgstr "סנן כניסת משתמש" #: templates/settings.php:19 #, php-format @@ -84,7 +89,7 @@ msgstr "" #: templates/settings.php:20 msgid "User List Filter" -msgstr "" +msgstr "סנן רשימת משתמשים" #: templates/settings.php:20 msgid "Defines the filter to apply, when retrieving users." @@ -96,7 +101,7 @@ msgstr "" #: templates/settings.php:21 msgid "Group Filter" -msgstr "" +msgstr "סנן קבוצה" #: templates/settings.php:21 msgid "Defines the filter to apply, when retrieving groups." @@ -114,10 +119,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -166,11 +179,11 @@ msgstr "" #: templates/settings.php:34 msgid "in bytes" -msgstr "" +msgstr "בבתים" #: templates/settings.php:36 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "בשניות. שינוי מרוקן את המטמון." #: templates/settings.php:37 msgid "" @@ -180,4 +193,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "עזרה" diff --git a/l10n/he/user_webdavauth.po b/l10n/he/user_webdavauth.po index e9a1a74eb85..65a279ed44f 100644 --- a/l10n/he/user_webdavauth.po +++ b/l10n/he/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/hi/core.po b/l10n/hi/core.po index ad1e3407007..637cb66cc8d 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -85,55 +85,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -176,7 +176,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -204,12 +204,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "पासवर्ड" @@ -273,23 +272,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -313,8 +312,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "प्रयोक्ता का नाम" @@ -403,44 +402,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "व्यवस्थापक खाता बनाएँ" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "उन्नत" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "डेटाबेस कॉन्फ़िगर करें " -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "डेटाबेस उपयोगकर्ता" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "डेटाबेस पासवर्ड" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "सेटअप समाप्त करे" @@ -528,36 +527,32 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "आप लोग आउट कर दिए गए हैं." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "पिछला" @@ -566,16 +561,7 @@ msgstr "पिछला" msgid "next" msgstr "अगला" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 1c494c435f9..c555c20841b 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,72 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -64,122 +90,134 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -191,27 +229,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" @@ -231,36 +269,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po index 1f21f8aca78..293e4b558a7 100644 --- a/l10n/hi/files_versions.po +++ b/l10n/hi/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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 310d410a6e9..9cb97532356 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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 5bf27381000..b6697b94820 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index ae9f03b0212..012f8d3f3aa 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" diff --git a/l10n/hi/user_webdavauth.po b/l10n/hi/user_webdavauth.po index aa784d7aad0..cc71e94d7f6 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/hr/core.po b/l10n/hr/core.po index 3b78e7b8fdd..5d5b9d249ff 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -87,55 +87,55 @@ msgstr "" msgid "Settings" msgstr "Postavke" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "danas" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "jučer" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "mjeseci" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "godina" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Pogreška" @@ -178,7 +178,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -206,12 +206,11 @@ msgstr "Djeli sa" msgid "Share with link" msgstr "Djeli preko link-a" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Zaštiti lozinkom" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Lozinka" @@ -275,23 +274,23 @@ msgstr "izbriši" msgid "share" msgstr "djeli" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -315,8 +314,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Korisničko ime" @@ -405,44 +404,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Stvori <strong>administratorski račun</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Dodatno" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Mapa baze podataka" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfiguriraj bazu podataka" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "će se koristiti" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Završi postavljanje" @@ -530,36 +529,32 @@ msgstr "web usluge pod vašom kontrolom" msgid "Log out" msgstr "Odjava" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "zapamtiti" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Prijava" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Odjavljeni ste." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prethodan" @@ -568,16 +563,7 @@ msgstr "prethodan" msgid "next" msgstr "sljedeći" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 7a1464ff148..e69aea6cf78 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,72 @@ 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/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je poslana uspješno i bez pogrešaka" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka izlazi iz okvira MAX_FILE_SIZE direktive postavljene u HTML obrascu" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je poslana samo djelomično" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ni jedna datoteka nije poslana" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Nedostaje privremena mapa" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Prekini djeljenje" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Briši" @@ -67,122 +93,134 @@ msgstr "Briši" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "predloži ime" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "odustani" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "vrati" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generiranje ZIP datoteke, ovo može potrajati." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Pogreška pri slanju" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Zatvori" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "U tijeku" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "grečka prilikom skeniranja" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Naziv" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veličina" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -194,27 +232,27 @@ msgstr "datoteka za rukovanje" msgid "Maximum upload size" msgstr "Maksimalna veličina prijenosa" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maksimalna moguća: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Potrebno za preuzimanje više datoteke i mape" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Omogući ZIP-preuzimanje" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 je \"bez limita\"" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimalna veličina za ZIP datoteke" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Snimi" @@ -234,36 +272,36 @@ msgstr "mapa" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Pošalji" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po index 557b2117806..0425c2dc568 100644 --- a/l10n/hr/files_versions.po +++ b/l10n/hr/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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ 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" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 80301078e43..28ed5873c33 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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ 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" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Pomoć" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Osobno" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Postavke" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Korisnici" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Greška kod autorizacije" @@ -81,55 +85,55 @@ msgstr "Tekst" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekundi prije" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "danas" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "jučer" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "prošli mjesec" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "prošlu godinu" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "godina" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 530e4e42e1e..58d40e80893 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -44,14 +44,6 @@ msgstr "Email spremljen" msgid "Invalid email" msgstr "Neispravan email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID promijenjen" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Neispravan zahtjev" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -68,6 +60,10 @@ msgstr "" msgid "Language changed" msgstr "Jezik promijenjen" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Neispravan zahtjev" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 5861922d336..25cb374e51f 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -180,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Pomoć" diff --git a/l10n/hr/user_webdavauth.po b/l10n/hr/user_webdavauth.po index ec8c6a5f26a..d33ff57a3a1 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ 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" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/hu/core.po b/l10n/hu/core.po new file mode 100644 index 00000000000..d2bfb48813a --- /dev/null +++ b/l10n/hu/core.po @@ -0,0 +1,565 @@ +# 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-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:84 +#, php-format +msgid "User %s shared a file with you" +msgstr "" + +#: ajax/share.php:86 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:88 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:90 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +msgid "This category already exists: " +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 +msgid "Settings" +msgstr "" + +#: js/js.js:711 +msgid "seconds ago" +msgstr "" + +#: js/js.js:712 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:713 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:714 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:715 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:716 +msgid "today" +msgstr "" + +#: js/js.js:717 +msgid "yesterday" +msgstr "" + +#: js/js.js:718 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:719 +msgid "last month" +msgstr "" + +#: js/js.js:720 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:721 +msgid "months ago" +msgstr "" + +#: js/js.js:722 +msgid "last year" +msgstr "" + +#: js/js.js:723 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:126 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:162 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:163 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:180 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:124 js/share.js:594 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:135 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:142 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:151 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:153 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:158 +msgid "Share with" +msgstr "" + +#: js/share.js:163 +msgid "Share with link" +msgstr "" + +#: js/share.js:166 +msgid "Password protect" +msgstr "" + +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 +msgid "Password" +msgstr "" + +#: js/share.js:172 +msgid "Email link to person" +msgstr "" + +#: js/share.js:173 +msgid "Send" +msgstr "" + +#: js/share.js:177 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:178 +msgid "Expiration date" +msgstr "" + +#: js/share.js:210 +msgid "Share via email:" +msgstr "" + +#: js/share.js:212 +msgid "No people found" +msgstr "" + +#: js/share.js:239 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:275 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:296 +msgid "Unshare" +msgstr "" + +#: js/share.js:308 +msgid "can edit" +msgstr "" + +#: js/share.js:310 +msgid "access control" +msgstr "" + +#: js/share.js:313 +msgid "create" +msgstr "" + +#: js/share.js:316 +msgid "update" +msgstr "" + +#: js/share.js:319 +msgid "delete" +msgstr "" + +#: js/share.js:322 +msgid "share" +msgstr "" + +#: js/share.js:356 js/share.js:541 +msgid "Password protected" +msgstr "" + +#: js/share.js:554 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:566 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:581 +msgid "Sending ..." +msgstr "" + +#: js/share.js:592 +msgid "Email sent" +msgstr "" + +#: lostpassword/controller.php:47 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 +msgid "Create an <strong>admin account</strong>" +msgstr "" + +#: templates/installation.php:50 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:52 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:59 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 +msgid "will be used" +msgstr "" + +#: templates/installation.php:107 +msgid "Database user" +msgstr "" + +#: templates/installation.php:111 +msgid "Database password" +msgstr "" + +#: templates/installation.php:115 +msgid "Database name" +msgstr "" + +#: templates/installation.php:123 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:129 +msgid "Database host" +msgstr "" + +#: templates/installation.php:134 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Sunday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Monday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Tuesday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Wednesday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Thursday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Friday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Saturday" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "January" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "February" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "March" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "April" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "May" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "June" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "July" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "August" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "September" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "October" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "November" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "December" +msgstr "" + +#: templates/layout.guest.php:42 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:45 +msgid "Log out" +msgstr "" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" + +#: templates/login.php:41 +msgid "Log in" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/hu/files.po b/l10n/hu/files.po new file mode 100644 index 00000000000..4956069f94d --- /dev/null +++ b/l10n/hu/files.po @@ -0,0 +1,304 @@ +# 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-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\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 "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:24 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:26 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:27 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:28 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:29 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:10 +msgid "Files" +msgstr "" + +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:181 +msgid "Rename" +msgstr "" + +#: js/filelist.js:205 js/filelist.js:207 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:205 js/filelist.js:207 +msgid "replace" +msgstr "" + +#: js/filelist.js:205 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:205 js/filelist.js:207 +msgid "cancel" +msgstr "" + +#: js/filelist.js:254 +msgid "replaced {new_name}" +msgstr "" + +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 +msgid "undo" +msgstr "" + +#: js/filelist.js:256 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:288 +msgid "unshared {files}" +msgstr "" + +#: js/filelist.js:290 +msgid "deleted {files}" +msgstr "" + +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:186 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:224 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:224 +msgid "Upload Error" +msgstr "" + +#: js/files.js:241 +msgid "Close" +msgstr "" + +#: js/files.js:260 js/files.js:376 js/files.js:409 +msgid "Pending" +msgstr "" + +#: js/files.js:280 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:283 js/files.js:338 js/files.js:353 +msgid "{count} files uploading" +msgstr "" + +#: js/files.js:357 js/files.js:393 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:464 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 +msgid "{count} files scanned" +msgstr "" + +#: js/files.js:735 +msgid "error while scanning" +msgstr "" + +#: js/files.js:808 templates/index.php:64 +msgid "Name" +msgstr "" + +#: js/files.js:809 templates/index.php:75 +msgid "Size" +msgstr "" + +#: js/files.js:810 templates/index.php:77 +msgid "Modified" +msgstr "" + +#: js/files.js:829 +msgid "1 folder" +msgstr "" + +#: js/files.js:831 +msgid "{count} folders" +msgstr "" + +#: js/files.js:839 +msgid "1 file" +msgstr "" + +#: js/files.js:841 +msgid "{count} files" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/index.php:41 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:56 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:70 +msgid "Download" +msgstr "" + +#: templates/index.php:102 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:104 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:109 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:112 +msgid "Current scanning" +msgstr "" diff --git a/l10n/hu/files_encryption.po b/l10n/hu/files_encryption.po new file mode 100644 index 00000000000..26913fea990 --- /dev/null +++ b/l10n/hu/files_encryption.po @@ -0,0 +1,34 @@ +# 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-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:33+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings.php:6 +msgid "Enable Encryption" +msgstr "" + +#: templates/settings.php:7 +msgid "None" +msgstr "" + +#: templates/settings.php:12 +msgid "Exclude the following file types from encryption" +msgstr "" diff --git a/l10n/hu/files_external.po b/l10n/hu/files_external.po new file mode 100644 index 00000000000..5ee957401ae --- /dev/null +++ b/l10n/hu/files_external.po @@ -0,0 +1,120 @@ +# 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-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:73 js/google.js:72 +msgid "Fill out all required fields" +msgstr "" + +#: js/dropbox.js:85 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:26 js/google.js:73 js/google.js:78 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:434 +msgid "" +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:435 +msgid "" +"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:22 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:9 +msgid "Backend" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:27 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:85 +msgid "None set" +msgstr "" + +#: templates/settings.php:86 +msgid "All Users" +msgstr "" + +#: templates/settings.php:87 +msgid "Groups" +msgstr "" + +#: templates/settings.php:95 +msgid "Users" +msgstr "" + +#: templates/settings.php:108 templates/settings.php:109 +#: templates/settings.php:144 templates/settings.php:145 +msgid "Delete" +msgstr "" + +#: templates/settings.php:124 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:125 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:136 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:153 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/hu/files_sharing.po b/l10n/hu/files_sharing.po new file mode 100644 index 00000000000..07688f2047c --- /dev/null +++ b/l10n/hu/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:35+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:19 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:22 templates/public.php:38 +msgid "Download" +msgstr "" + +#: templates/public.php:37 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:43 +msgid "web services under your control" +msgstr "" diff --git a/l10n/hu/files_versions.po b/l10n/hu/files_versions.po new file mode 100644 index 00000000000..6f8e34c98c3 --- /dev/null +++ b/l10n/hu/files_versions.po @@ -0,0 +1,30 @@ +# 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-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/versions.js:16 +msgid "History" +msgstr "" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/hu/lib.po b/l10n/hu/lib.po new file mode 100644 index 00000000000..dc349f094e9 --- /dev/null +++ b/l10n/hu/lib.po @@ -0,0 +1,156 @@ +# 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-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:301 +msgid "Help" +msgstr "" + +#: app.php:308 +msgid "Personal" +msgstr "" + +#: app.php:313 +msgid "Settings" +msgstr "" + +#: app.php:318 +msgid "Users" +msgstr "" + +#: app.php:325 +msgid "Apps" +msgstr "" + +#: app.php:327 +msgid "Admin" +msgstr "" + +#: files.php:365 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:366 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:366 files.php:391 +msgid "Back to Files" +msgstr "" + +#: files.php:390 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: template.php:113 +msgid "seconds ago" +msgstr "" + +#: template.php:114 +msgid "1 minute ago" +msgstr "" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:116 +msgid "1 hour ago" +msgstr "" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 +msgid "today" +msgstr "" + +#: template.php:119 +msgid "yesterday" +msgstr "" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:121 +msgid "last month" +msgstr "" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:123 +msgid "last year" +msgstr "" + +#: template.php:124 +msgid "years ago" +msgstr "" + +#: updater.php:75 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:77 +msgid "up to date" +msgstr "" + +#: updater.php:80 +msgid "updates check is disabled" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/hu/settings.po b/l10n/hu/settings.po new file mode 100644 index 00000000000..7234cca6386 --- /dev/null +++ b/l10n/hu/settings.po @@ -0,0 +1,267 @@ +# 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-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:28 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:34 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: js/apps.js:28 js/apps.js:67 +msgid "Disable" +msgstr "" + +#: js/apps.js:28 js/apps.js:55 +msgid "Enable" +msgstr "" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "" + +#: personal.php:42 personal.php:43 +msgid "__language_name__" +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:31 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:32 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" + +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:7 +msgid "Forum" +msgstr "" + +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" +msgstr "" + +#: templates/personal.php:12 +msgid "Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 +msgid "Password" +msgstr "" + +#: templates/personal.php:22 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:23 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:24 +msgid "Current password" +msgstr "" + +#: templates/personal.php:25 +msgid "New password" +msgstr "" + +#: templates/personal.php:26 +msgid "show" +msgstr "" + +#: templates/personal.php:27 +msgid "Change password" +msgstr "" + +#: templates/personal.php:33 +msgid "Email" +msgstr "" + +#: templates/personal.php:34 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:35 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:41 templates/personal.php:42 +msgid "Language" +msgstr "" + +#: templates/personal.php:47 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" + +#: templates/personal.php:65 +msgid "" +"Developed by the <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +msgstr "" + +#: templates/users.php:21 templates/users.php:81 +msgid "Name" +msgstr "" + +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 +msgid "Groups" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 +msgid "Other" +msgstr "" + +#: templates/users.php:85 templates/users.php:117 +msgid "Group Admin" +msgstr "" + +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" + +#: templates/users.php:161 +msgid "Delete" +msgstr "" diff --git a/l10n/hu/user_ldap.po b/l10n/hu/user_ldap.po new file mode 100644 index 00000000000..2c265cccc0e --- /dev/null +++ b/l10n/hu/user_ldap.po @@ -0,0 +1,195 @@ +# 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-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:8 +msgid "" +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +msgid "" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:15 +msgid "Host" +msgstr "" + +#: templates/settings.php:15 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:16 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:17 +msgid "User DN" +msgstr "" + +#: templates/settings.php:17 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:18 +msgid "Password" +msgstr "" + +#: templates/settings.php:18 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:19 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:19 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:19 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:20 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:20 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:20 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:21 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:21 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:21 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:24 +msgid "Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:26 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:27 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:28 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:28 +msgid "Do not use it for SSL connections, it will fail." +msgstr "" + +#: templates/settings.php:29 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:30 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:30 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:30 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:31 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:31 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:32 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:34 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:36 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:37 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:39 +msgid "Help" +msgstr "" diff --git a/l10n/hu/user_webdavauth.po b/l10n/hu/user_webdavauth.po new file mode 100644 index 00000000000..87b7d322df8 --- /dev/null +++ b/l10n/hu/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 827fa8bff4f..129de98dc1c 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 09:40+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -23,30 +23,30 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "%s felhasználó megosztott Önnel egy fájlt" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "%s felhasználó megosztott Önnel egy mappát" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "%s felhasználó megosztotta ezt az állományt Önnel: %s. A fájl innen tölthető le: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "%s felhasználó megosztotta ezt a mappát Önnel: %s. A mappa innen tölthető le: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Nincs megadva a kategória típusa." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -54,24 +54,24 @@ msgstr "Nincs hozzáadandó kategória?" #: ajax/vcategories/add.php:37 msgid "This category already exists: " -msgstr "Ez a kategória már létezik" +msgstr "Ez a kategória már létezik: " #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "Az objektum típusa nincs megadva." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID nincs megadva." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Nem sikerült a kedvencekhez adni ezt: %s" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -80,67 +80,67 @@ msgstr "Nincs törlésre jelölt kategória" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Nem sikerült a kedvencekből törölni ezt: %s" #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Beállítások" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" -msgstr "másodperccel ezelőtt" +msgstr "pár másodperce" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" -msgstr "1 perccel ezelőtt" +msgstr "1 perce" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" -msgstr "" +msgstr "{minutes} perce" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} órája" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "ma" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "tegnap" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" -msgstr "" +msgstr "{days} napja" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" -msgstr "" +msgstr "{months} hónapja" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" -msgstr "hónappal ezelőtt" +msgstr "több hónapja" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "tavaly" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" -msgstr "évvel ezelőtt" +msgstr "több éve" #: js/oc-dialogs.js:126 msgid "Choose" -msgstr "" +msgstr "Válasszon" #: js/oc-dialogs.js:146 js/oc-dialogs.js:166 msgid "Cancel" @@ -161,7 +161,7 @@ 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 "" +msgstr "Az objektum típusa nincs megadva." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 @@ -171,128 +171,127 @@ msgstr "Hiba" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Az alkalmazás neve nincs megadva." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "A szükséges fájl: {file} nincs telepítve!" #: js/share.js:124 js/share.js:594 msgid "Error while sharing" -msgstr "" +msgstr "Nem sikerült létrehozni a megosztást" #: js/share.js:135 msgid "Error while unsharing" -msgstr "" +msgstr "Nem sikerült visszavonni a megosztást" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "" +msgstr "Nem sikerült módosítani a jogosultságokat" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Megosztotta Önnel és a(z) {group} csoporttal: {owner}" #: js/share.js:153 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Megosztotta Önnel: {owner}" #: js/share.js:158 msgid "Share with" -msgstr "" +msgstr "Kivel osztom meg" #: js/share.js:163 msgid "Share with link" -msgstr "" +msgstr "Link megadásával osztom meg" #: js/share.js:166 msgid "Password protect" -msgstr "" +msgstr "Jelszóval is védem" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" -msgstr "Jelszó" +msgstr "Jelszó (tetszőleges)" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Email címre küldjük el" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Küldjük el" #: js/share.js:177 msgid "Set expiration date" -msgstr "" +msgstr "Legyen lejárati idő" #: js/share.js:178 msgid "Expiration date" -msgstr "" +msgstr "A lejárati idő" #: js/share.js:210 msgid "Share via email:" -msgstr "" +msgstr "Megosztás emaillel:" #: js/share.js:212 msgid "No people found" -msgstr "" +msgstr "Nincs találat" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "" +msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" #: js/share.js:275 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Megosztva {item}-ben {user}-rel" #: js/share.js:296 msgid "Unshare" -msgstr "Nem oszt meg" +msgstr "A megosztás visszavonása" #: js/share.js:308 msgid "can edit" -msgstr "" +msgstr "módosíthat" #: js/share.js:310 msgid "access control" -msgstr "" +msgstr "jogosultság" #: js/share.js:313 msgid "create" -msgstr "létrehozás" +msgstr "létrehoz" #: js/share.js:316 msgid "update" -msgstr "" +msgstr "szerkeszt" #: js/share.js:319 msgid "delete" -msgstr "" +msgstr "töröl" #: js/share.js:322 msgid "share" -msgstr "" +msgstr "megoszt" #: js/share.js:356 js/share.js:541 msgid "Password protected" -msgstr "" +msgstr "Jelszóval van védve" #: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Nem sikerült a lejárati időt törölni" #: js/share.js:566 msgid "Error setting expiration date" -msgstr "" +msgstr "Nem sikerült a lejárati időt beállítani" #: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Küldés ..." #: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Az emailt elküldtük" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -300,19 +299,19 @@ msgstr "ownCloud jelszó-visszaállítás" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Használja az alábbi linket a jelszó-visszaállításhoz: {link}" +msgstr "Használja ezt a linket a jelszó ismételt beállításához: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Egy e-mailben kap értesítést a jelszóváltoztatás módjáról." +msgstr "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról." #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "Elküldtük az emailt a jelszó ismételt beállításához." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "Nem sikerült a kérést teljesíteni!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 #: templates/login.php:28 @@ -353,7 +352,7 @@ msgstr "Alkalmazások" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "Adminisztráció" #: strings.php:9 msgid "Help" @@ -361,7 +360,7 @@ msgstr "Súgó" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Hozzáférés tiltva" +msgstr "A hozzáférés nem engedélyezett" #: templates/404.php:12 msgid "Cloud not found" @@ -383,13 +382,13 @@ msgstr "Biztonsági figyelmeztetés" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "Nem érhető el megfelelő véletlenszám-generátor, telepíteni kellene a PHP OpenSSL kiegészítését." #: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Megfelelő véletlenszám-generátor hiányában egy támadó szándékú idegen képes lehet megjósolni a jelszóvisszaállító tokent, és Ön helyett belépni." #: templates/installation.php:32 msgid "" @@ -398,11 +397,11 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "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 nem 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/installation.php:36 msgid "Create an <strong>admin account</strong>" -msgstr "<strong>Rendszergazdafiók</strong> létrehozása" +msgstr "<strong>Rendszergazdai belépés</strong> létrehozása" #: templates/installation.php:50 msgid "Advanced" @@ -419,7 +418,7 @@ msgstr "Adatbázis konfigurálása" #: templates/installation.php:64 templates/installation.php:75 #: templates/installation.php:85 templates/installation.php:95 msgid "will be used" -msgstr "használva lesz" +msgstr "adatbázist fogunk használni" #: templates/installation.php:107 msgid "Database user" @@ -431,11 +430,11 @@ msgstr "Adatbázis jelszó" #: templates/installation.php:115 msgid "Database name" -msgstr "Adatbázis név" +msgstr "Az adatbázis neve" #: templates/installation.php:123 msgid "Database tablespace" -msgstr "" +msgstr "Az adatbázis táblázattér (tablespace)" #: templates/installation.php:129 msgid "Database host" @@ -443,87 +442,87 @@ msgstr "Adatbázis szerver" #: templates/installation.php:134 msgid "Finish setup" -msgstr "Beállítás befejezése" +msgstr "A beállítások befejezése" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Sunday" -msgstr "Vasárnap" +msgstr "vasárnap" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Monday" -msgstr "Hétfő" +msgstr "hétfő" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Tuesday" -msgstr "Kedd" +msgstr "kedd" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Wednesday" -msgstr "Szerda" +msgstr "szerda" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Thursday" -msgstr "Csütörtök" +msgstr "csütörtök" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Friday" -msgstr "Péntek" +msgstr "péntek" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Saturday" -msgstr "Szombat" +msgstr "szombat" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "January" -msgstr "Január" +msgstr "január" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "February" -msgstr "Február" +msgstr "február" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "March" -msgstr "Március" +msgstr "március" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "April" -msgstr "Április" +msgstr "április" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "May" -msgstr "Május" +msgstr "május" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "June" -msgstr "Június" +msgstr "június" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "July" -msgstr "Július" +msgstr "július" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "August" -msgstr "Augusztus" +msgstr "augusztus" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "September" -msgstr "Szeptember" +msgstr "szeptember" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "October" -msgstr "Október" +msgstr "október" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "November" -msgstr "November" +msgstr "november" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "December" -msgstr "December" +msgstr "december" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "webszolgáltatások az irányításod alatt" +msgstr "webszolgáltatások saját kézben" #: templates/layout.user.php:45 msgid "Log out" @@ -531,21 +530,21 @@ msgstr "Kilépés" #: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Az automatikus bejelentkezés sikertelen!" #: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "Ha mostanában nem módosította a jelszavát, akkor lehetséges, hogy idegenek jutottak be a rendszerbe az Ön nevében!" #: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "A biztonsága érdekében változtassa meg a jelszavát!" #: templates/login.php:19 msgid "Lost your password?" -msgstr "Elfelejtett jelszó?" +msgstr "Elfelejtette a jelszavát?" #: templates/login.php:39 msgid "remember" @@ -555,28 +554,15 @@ msgstr "emlékezzen" msgid "Log in" msgstr "Bejelentkezés" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Kilépett." - #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "Előző" +msgstr "előző" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "Következő" - -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" +msgstr "következő" -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index d430e38083e..bf6a28272e1 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -4,15 +4,16 @@ # # Translators: # Adam Toth <adazlord@gmail.com>, 2012. +# <gyonkibendeguz@gmail.com>, 2013. # <mail@tamas-nagy.net>, 2011. # Peter Borsa <peter.borsa@gmail.com>, 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 20:37+0000\n" -"Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,46 +21,72 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Nem történt feltöltés. Ismeretlen hiba" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét." -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra." -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nem töltődött fel semmi" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Nincs elég szabad hely" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Érvénytelen mappa." + #: appinfo/app.php:10 msgid "Files" msgstr "Fájlok" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Megosztás visszavonása" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Törlés" @@ -67,122 +94,134 @@ msgstr "Törlés" msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "írjuk fölül" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "legyen más neve" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "mégse" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "a(z) {new_name} állományt kicseréltük" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "visszavonás" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} fájl megosztása visszavonva" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} fájl törölve" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' fájlnév érvénytelen." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "A fájlnév nem lehet semmi." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-fájl generálása, ez eltarthat egy ideig." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Feltöltési hiba" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Bezárás" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Folyamatban" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fájl töltődik föl" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Érvénytelen mappanév. A \"Shared\" elnevezést az Owncloud rendszer használja." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Az URL nem lehet semmi." -#: js/files.js:699 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fájlt találtunk" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "Hiba a fájllista-ellenőrzés során" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Név" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Méret" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Módosítva" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 fájl" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fájl" @@ -194,27 +233,27 @@ msgstr "Fájlkezelés" msgid "Maximum upload size" msgstr "Maximális feltölthető fájlméret" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. lehetséges: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Kötegelt fájl- vagy mappaletöltéshez szükséges" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "A ZIP-letöltés engedélyezése" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 = korlátlan" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP-fájlok maximális kiindulási mérete" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Mentés" @@ -234,36 +273,36 @@ msgstr "Mappa" msgid "From link" msgstr "Feltöltés linkről" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Feltöltés" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Letöltés" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "A feltöltés túl nagy" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Ellenőrzés alatt" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index 0a39722ad7f..d5db4ac6033 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/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: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 17:24+0000\n" -"Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:7 -msgid "Expire all versions" -msgstr "Az összes korábbi változat törlése" - #: js/versions.js:16 msgid "History" msgstr "Korábbi változatok" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Az állományok korábbi változatai" - -#: templates/settings-personal.php:10 -msgid "This will delete all existing backup versions of your files" -msgstr "Itt törölni tudja állományainak összes korábbi verzióját" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Az állományok verzionálása" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 1a78f30958a..0dcb226a80c 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/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: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 09:34+0000\n" -"Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,27 +18,27 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Súgó" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Személyes" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Beállítások" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Felhasználók" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Alkalmazások" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Admin" @@ -58,11 +58,15 @@ msgstr "Vissza a Fájlokhoz" msgid "Selected files too large to generate zip file." msgstr "A kiválasztott fájlok túl nagy a zip tömörítéshez." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Az alkalmazás nincs engedélyezve" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Hitelesítési hiba" @@ -82,55 +86,55 @@ msgstr "Szöveg" msgid "Images" msgstr "Képek" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "másodperce" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 perce" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d perce" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 órája" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d órája" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "ma" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "tegnap" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d napja" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "múlt hónapban" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d hónapja" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "tavaly" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "éve" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index b00e728cc43..95751d84966 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -4,14 +4,15 @@ # # Translators: # Adam Toth <adazlord@gmail.com>, 2012. +# <gyonkibendeguz@gmail.com>, 2013. # Peter Borsa <peter.borsa@gmail.com>, 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 14:17+0000\n" -"Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +32,7 @@ msgstr "A csoport már létezik" msgid "Unable to add group" msgstr "A csoport nem hozható létre" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "A program nem aktiválható." @@ -43,14 +44,6 @@ msgstr "Email mentve" msgid "Invalid email" msgstr "Hibás email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID megváltozott" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Érvénytelen kérés" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "A csoport nem törölhető" @@ -67,6 +60,10 @@ msgstr "A felhasználó nem törölhető" msgid "Language changed" msgstr "A nyelv megváltozott" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Érvénytelen kérés" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Adminisztrátorok nem távolíthatják el magukat az admin csoportból." @@ -246,11 +243,11 @@ msgstr "Létrehozás" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Alapértelmezett tárhely" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Korlátlan" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -262,11 +259,11 @@ msgstr "Csoportadminisztrátor" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Tárhely" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Alapértelmezett" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 655c88dd46a..7f79a7f3275 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <gyonkibendeguz@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 17:19+0000\n" -"Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,9 +27,9 @@ msgstr "<b>Figyelem:</b> a user_ldap és user_webdavauth alkalmazások nem kompa #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Figyelem:</b> a szükséges PHP LDAP modul nincs telepítve. Enélkül az LDAP azonosítás nem fog működni. Kérje meg a rendszergazdát, hogy telepítse a szükséges modult!" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -44,6 +45,10 @@ msgid "Base DN" msgstr "DN-gyökér" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "A Haladó fülre kattintva külön DN-gyökér állítható be a felhasználók és a csoportok számára" @@ -108,16 +113,24 @@ msgstr "itt ne használjunk változót, pl. \"objectClass=posixGroup\"." #: templates/settings.php:24 msgid "Port" -msgstr "" +msgstr "Port" #: templates/settings.php:25 msgid "Base User Tree" msgstr "A felhasználói fa gyökere" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "A csoportfa gyökere" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "A csoporttagság attribútuma" diff --git a/l10n/hu_HU/user_webdavauth.po b/l10n/hu_HU/user_webdavauth.po index 5d89219034f..e7f281281b7 100644 --- a/l10n/hu_HU/user_webdavauth.po +++ b/l10n/hu_HU/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 20:47+0000\n" -"Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,13 +17,17 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "Az ownCloud rendszer erre a címre fogja elküldeni a felhasználók bejelentkezési adatait. Ha 401-es vagy 403-as http kódot kap vissza, azt sikertelen azonosításként fogja értelmezni, minden más kódot sikeresnek fog tekinteni." +"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/ia/core.po b/l10n/ia/core.po index cf1e1c81050..984f28fcdf4 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "Configurationes" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,12 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Contrasigno" @@ -272,23 +271,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +311,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nomine de usator" @@ -402,44 +401,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Crear un <strong>conto de administration</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avantiate" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Dossier de datos" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurar le base de datos" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "essera usate" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -527,36 +526,32 @@ msgstr "servicios web sub tu controlo" msgid "Log out" msgstr "Clauder le session" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Tu perdeva le contrasigno?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "memora" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Aperir session" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Tu session ha essite claudite." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prev" @@ -565,16 +560,7 @@ msgstr "prev" msgid "next" msgstr "prox" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 3f93aeb3961..48fee82947c 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,72 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nulle file esseva incargate" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Files" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Deler" @@ -66,122 +92,134 @@ msgstr "Deler" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Clauder" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nomine" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimension" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificate" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -193,27 +231,27 @@ msgstr "" msgid "Maximum upload size" msgstr "Dimension maxime de incargamento" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salveguardar" @@ -233,36 +271,36 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Incargar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Discargar" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po index d0287f45fff..7b2dbb7efe9 100644 --- a/l10n/ia/files_versions.po +++ b/l10n/ia/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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index ac4ffabd499..2e638284821 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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Adjuta" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Configurationes" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Usatores" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "Texto" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 5030c5a00a3..f0ff993fa27 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -43,14 +43,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID cambiate" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Requesta invalide" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -67,6 +59,10 @@ msgstr "" msgid "Language changed" msgstr "Linguage cambiate" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Requesta invalide" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index cae53dce374..6a131310437 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -180,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Adjuta" diff --git a/l10n/ia/user_webdavauth.po b/l10n/ia/user_webdavauth.po index d14ab08ef72..cee575b4381 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/id/core.po b/l10n/id/core.po index 20b68e9ecfe..0bf675c92b8 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -87,55 +87,55 @@ msgstr "" msgid "Settings" msgstr "Setelan" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 menit lalu" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hari ini" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "kemarin" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "beberapa tahun lalu" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "gagal" @@ -178,7 +178,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "gagal ketika membagikan" @@ -206,12 +206,11 @@ msgstr "bagikan dengan" msgid "Share with link" msgstr "bagikan dengan tautan" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "lindungi dengan kata kunci" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Password" @@ -275,23 +274,23 @@ msgstr "hapus" msgid "share" msgstr "bagikan" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "dilindungi kata kunci" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "gagal melepas tanggal kadaluarsa" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "gagal memasang tanggal kadaluarsa" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -315,8 +314,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Username" @@ -405,44 +404,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Buat sebuah <strong>akun admin</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Tingkat Lanjut" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Folder data" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfigurasi database" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Pengguna database" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Password database" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nama database" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "tablespace basis data" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Host database" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Selesaikan instalasi" @@ -530,36 +529,32 @@ msgstr "web service dibawah kontrol anda" msgid "Log out" msgstr "Keluar" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "login otomatis ditolak!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "apabila anda tidak merubah kata kunci belakangan ini, akun anda dapat di gunakan orang lain!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "mohon ubah kata kunci untuk mengamankan akun anda" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Lupa password anda?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "selalu login" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Masuk" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Anda telah keluar." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelum" @@ -568,16 +563,7 @@ msgstr "sebelum" msgid "next" msgstr "selanjutnya" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "peringatan keamanan!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "mohon periksa kembali kata kunci anda. <br/>untuk alasan keamanan,anda akan sesekali diminta untuk memasukan kata kunci lagi." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "periksa kembali" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 4c752ed6c0b..cd2442d53bd 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,72 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "File yang diunggah melampaui directive MAX_FILE_SIZE yang disebutan dalam form HTML." -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Kehilangan folder temporer" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Berkas" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "batalkan berbagi" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Hapus" @@ -67,122 +93,134 @@ msgstr "Hapus" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "mengganti" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "batal dikerjakan" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "membuat berkas ZIP, ini mungkin memakan waktu." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Terjadi Galat Pengunggahan" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "tutup" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Menunggu" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "tautan tidak boleh kosong" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nama" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Ukuran" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -194,27 +232,27 @@ msgstr "Penanganan berkas" msgid "Maximum upload size" msgstr "Ukuran unggah maksimum" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "Kemungkinan maks:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Dibutuhkan untuk multi-berkas dan unduhan folder" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Aktifkan unduhan ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 adalah tidak terbatas" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Ukuran masukan maksimal untuk berkas ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "simpan" @@ -234,36 +272,36 @@ msgstr "Folder" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Unggah" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Batal mengunggah" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Unduh" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Unggahan terlalu besar" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Berkas yang anda coba unggah melebihi ukuran maksimum untuk pengunggahan berkas di server ini." -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silahkan tunggu." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Sedang memindai" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index 5b9201c347e..7b9d5d18745 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-21 02:03+0200\n" -"PO-Revision-Date: 2012-10-20 23:40+0000\n" -"Last-Translator: elmakong <mr.pige_ina@yahoo.co.id>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "kadaluarsakan semua versi" - #: js/versions.js:16 msgid "History" msgstr "riwayat" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "versi" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "ini akan menghapus semua versi backup yang ada dari file anda" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "pembuatan versi file" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 4987faad0d4..013ed9d846c 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mohamad Hasan Al Banna <se7entime@gmail.com>, 2013. # <mr.pige_ina@yahoo.co.id>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -18,51 +19,55 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "bantu" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "perseorangan" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "pengaturan" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "pengguna" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "aplikasi" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "download ZIP sedang dimatikan" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "file harus di unduh satu persatu" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "kembali ke daftar file" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "file yang dipilih terlalu besar untuk membuat file zip" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "aplikasi tidak diaktifkan" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "autentikasi bermasalah" @@ -72,7 +77,7 @@ msgstr "token kadaluarsa.mohon perbaharui laman." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Berkas" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" @@ -80,57 +85,57 @@ msgstr "teks" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Gambar" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 menit lalu" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d menit lalu" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" -msgstr "" +msgstr "1 jam yang lalu" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d jam yang lalu" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hari ini" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "kemarin" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d hari lalu" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "bulan kemarin" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d bulan yang lalu" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "tahun kemarin" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "beberapa tahun lalu" @@ -150,4 +155,4 @@ msgstr "pengecekan pembaharuan sedang non-aktifkan" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Tidak dapat menemukan kategori \"%s\"" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 1abd347dc88..72ad4e872a7 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -45,14 +45,6 @@ msgstr "Email tersimpan" msgid "Invalid email" msgstr "Email tidak sah" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID telah dirubah" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Permintaan tidak valid" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -69,6 +61,10 @@ msgstr "" msgid "Language changed" msgstr "Bahasa telah diganti" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Permintaan tidak valid" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 193df390395..d1b6b34abf1 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:19+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -115,10 +119,18 @@ msgstr "port" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" diff --git a/l10n/id/user_webdavauth.po b/l10n/id/user_webdavauth.po index fc5b698ce72..409d046d03e 100644 --- a/l10n/id/user_webdavauth.po +++ b/l10n/id/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/is/core.po b/l10n/is/core.po index f21c418fab2..a575a9992a8 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -4,14 +4,14 @@ # # Translators: # <kaztraz@gmail.com>, 2012. -# <sveinng@gmail.com>, 2012. +# <sveinng@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 14:48+0000\n" -"Last-Translator: sveinn <sveinng@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,7 +49,7 @@ msgstr "Flokkur ekki gefin" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Enginn flokkur til að <strong>bæta við</strong>?" +msgstr "Enginn flokkur til að bæta við?" #: ajax/vcategories/add.php:37 msgid "This category already exists: " @@ -85,55 +85,55 @@ msgstr "Villa við að fjarlægja %s úr eftirlæti." msgid "Settings" msgstr "Stillingar" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sek síðan" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 min síðan" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "í dag" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "í gær" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "síðasta ári" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "árum síðan" @@ -166,7 +166,7 @@ msgstr "Tegund ekki tilgreind" #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 #: js/share.js:566 msgid "Error" -msgstr "<strong>Villa</strong>" +msgstr "Villa" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -209,7 +209,6 @@ msgid "Password protect" msgstr "Verja með lykilorði" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Lykilorð" @@ -295,7 +294,7 @@ msgstr "Tölvupóstur sendur" #: lostpassword/controller.php:47 msgid "ownCloud password reset" -msgstr "endursetja ownCloud <strong>lykilorð</strong>" +msgstr "endursetja ownCloud lykilorð" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -356,7 +355,7 @@ msgstr "Vefstjórn" #: strings.php:9 msgid "Help" -msgstr "Help" +msgstr "Hjálp" #: templates/403.php:12 msgid "Access forbidden" @@ -364,7 +363,7 @@ msgstr "Aðgangur bannaður" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Skýið finnst eigi" +msgstr "Ský finnst ekki" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -422,11 +421,11 @@ msgstr "verður notað" #: templates/installation.php:107 msgid "Database user" -msgstr "Notandi gagnagrunns" +msgstr "Gagnagrunns notandi" #: templates/installation.php:111 msgid "Database password" -msgstr "Lykilorð gagnagrunns" +msgstr "Gagnagrunns lykilorð" #: templates/installation.php:115 msgid "Database name" @@ -442,7 +441,7 @@ msgstr "Netþjónn gagnagrunns" #: templates/installation.php:134 msgid "Finish setup" -msgstr "Ljúka uppsetningu" +msgstr "Virkja uppsetningu" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Sunday" @@ -554,10 +553,6 @@ msgstr "muna eftir mér" msgid "Log in" msgstr "<strong>Skrá inn</strong>" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Þú ert útskráð(ur)." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "fyrra" @@ -566,16 +561,7 @@ msgstr "fyrra" msgid "next" msgstr "næsta" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Öryggis aðvörun!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Vinsamlegast staðfestu lykilorðið þitt.<br/>Í öryggisskyni munum við biðja þig um að skipta um lykilorð af og til." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Staðfesta" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Uppfæri ownCloud í útgáfu %s, það gæti tekið smá stund." diff --git a/l10n/is/files.po b/l10n/is/files.po index 1036913c086..f1c7c6d6dd1 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <sveinng@gmail.com>, 2012. +# <sveinng@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 15:06+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 22:46+0000\n" "Last-Translator: sveinn <sveinng@gmail.com>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,72 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "Gat ekki fært %s - Skrá með þessu nafni er þegar til" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Gat ekki fært %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Gat ekki endurskýrt skrá" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Engin skrá var send inn. Óþekkt villa." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Innsend skrá er stærri en upload_max stillingin í php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu." -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrá skilaði sér" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Ekki nægt pláss tiltækt" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Ógild mappa." + #: appinfo/app.php:10 msgid "Files" msgstr "Skrár" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Hætta deilingu" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Eyða" @@ -65,122 +91,134 @@ msgstr "Eyða" msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "yfirskrifa" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "stinga upp á nafni" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "hætta við" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "endurskýrði {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "afturkalla" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Hætti við deilingu á {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "eyddi {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' er ekki leyfilegt nafn." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Nafn skráar má ekki vera tómt" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "bý til ZIP skrá, það gæti tekið smá stund." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Villa við innsendingu" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Loka" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Bíður" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} skrár innsendar" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ógilt nafn á möppu. Nafnið \"Shared\" er frátekið fyrir ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Vefslóð má ekki vera tóm." -#: js/files.js:699 +#: js/files.js:543 +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:727 msgid "{count} files scanned" msgstr "{count} skrár skimaðar" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "villa við skimun" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nafn" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Stærð" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Breytt" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} möppur" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 skrá" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} skrár" @@ -192,27 +230,27 @@ msgstr "Meðhöndlun skrár" msgid "Maximum upload size" msgstr "Hámarks stærð innsendingar" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "hámark mögulegt: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Nauðsynlegt til að sækja margar skrár og möppur í einu." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Virkja ZIP niðurhal." -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 er ótakmarkað" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Hámarks inntaksstærð fyrir ZIP skrár" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Vista" @@ -232,36 +270,36 @@ msgstr "Mappa" msgid "From link" msgstr "Af tengli" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Senda inn" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" -msgstr "Ekkert hér. Sendu eitthvað inn!" +msgstr "Ekkert hér. Settu eitthvað inn!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Niðurhal" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" -msgstr "Innsend skrá of stór" +msgstr "Innsend skrá er of stór" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Er að skima" diff --git a/l10n/is/files_versions.po b/l10n/is/files_versions.po index bc2e72de575..1a0acfa5b88 100644 --- a/l10n/is/files_versions.po +++ b/l10n/is/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 17:42+0000\n" -"Last-Translator: sveinn <sveinng@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:7 -msgid "Expire all versions" -msgstr "Úrelda allar útgáfur" - #: js/versions.js:16 msgid "History" msgstr "Saga" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Útgáfur" - -#: templates/settings-personal.php:10 -msgid "This will delete all existing backup versions of your files" -msgstr "Þetta mun eyða öllum afritum af skránum þínum" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Útgáfur af skrám" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 0e7cb461873..e6b54f855f2 100644 --- a/l10n/is/lib.po +++ b/l10n/is/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: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 15:15+0000\n" -"Last-Translator: sveinn <sveinng@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,27 +18,27 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Hjálp" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Um mig" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Stillingar" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Notendur" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Forrit" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Stjórnun" @@ -58,11 +58,15 @@ msgstr "Aftur í skrár" msgid "Selected files too large to generate zip file." msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Forrit ekki virkt" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Villa við auðkenningu" @@ -82,55 +86,55 @@ msgstr "Texti" msgid "Images" msgstr "Myndir" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sek." -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "Fyrir 1 mínútu" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "fyrir %d mínútum" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "fyrir %d klst." -#: template.php:108 +#: template.php:118 msgid "today" msgstr "í dag" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "í gær" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "fyrir %d dögum" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "síðasta mánuði" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "fyrir %d mánuðum" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "síðasta ári" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 5b2d7ad671a..0c0579cec5d 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <sveinng@gmail.com>, 2012. +# <sveinng@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 17:53+0000\n" -"Last-Translator: sveinn <sveinng@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +30,7 @@ msgstr "Hópur er þegar til" msgid "Unable to add group" msgstr "Ekki tókst að bæta við hóp" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Gat ekki virkjað forrit" @@ -42,14 +42,6 @@ msgstr "Netfang vistað" msgid "Invalid email" msgstr "Ógilt netfang" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID breytt" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ógild fyrirspurn" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Ekki tókst að eyða hóp" @@ -66,6 +58,10 @@ msgstr "Ekki tókst að eyða notenda" msgid "Language changed" msgstr "Tungumáli breytt" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ógild fyrirspurn" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Stjórnendur geta ekki fjarlægt sjálfa sig úr stjórnendahóp" @@ -110,11 +106,11 @@ msgstr "Veldu forrit" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" -msgstr "Skoða forrita síðuna hjá apps.owncloud.com" +msgstr "Skoða síðu forrits hjá apps.owncloud.com" #: templates/apps.php:32 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-leyfi skráð af <span class=\"author\"></span>" #: templates/help.php:3 msgid "User Documentation" @@ -257,7 +253,7 @@ msgstr "Annað" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" -msgstr "Hópa stjóri" +msgstr "Hópstjóri" #: templates/users.php:87 msgid "Storage" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 828b0b2693a..98dfe70c84e 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 19:00+0000\n" -"Last-Translator: sveinn <sveinng@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -115,10 +119,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" diff --git a/l10n/is/user_webdavauth.po b/l10n/is/user_webdavauth.po index 859ebae1986..8bf05572184 100644 --- a/l10n/is/user_webdavauth.po +++ b/l10n/is/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: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 21:13+0000\n" -"Last-Translator: sveinn <sveinng@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,13 +18,17 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "Vefslóð: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloud mun senda auðkenni notenda á þessa vefslóð og túkla svörin http 401 og http 403 sem rangar auðkenniupplýsingar og öll önnur svör sem rétt." +"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/it/core.po b/l10n/it/core.po index d1d6f74af3f..5db447c37b6 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -7,14 +7,14 @@ # Francesco Apruzzese <cescoap@gmail.com>, 2011, 2012. # <marco@carnazzo.it>, 2011, 2012. # <rb.colombo@gmail.com>, 2011. -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. +# Vincenzo Reale <vinx.reale@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 08:54+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,55 +88,55 @@ msgstr "Errore durante la rimozione di %s dai preferiti." msgid "Settings" msgstr "Impostazioni" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "oggi" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ieri" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "mese scorso" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "mesi fa" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "anno scorso" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "anni fa" @@ -166,8 +166,8 @@ msgid "The object type is not specified." msgstr "Il tipo di oggetto non è specificato." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Errore" @@ -179,7 +179,7 @@ msgstr "Il nome dell'applicazione non è specificato." msgid "The required file {file} is not installed!" msgstr "Il file richiesto {file} non è installato!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -207,12 +207,11 @@ msgstr "Condividi con" msgid "Share with link" msgstr "Condividi con collegamento" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Proteggi con password" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Password" @@ -276,23 +275,23 @@ msgstr "eliminare" msgid "share" msgstr "condividere" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Messaggio inviato" @@ -317,7 +316,7 @@ msgid "Request failed!" msgstr "Richiesta non riuscita!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Nome utente" @@ -531,36 +530,32 @@ msgstr "servizi web nelle tue mani" msgid "Log out" msgstr "Esci" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Accesso automatico rifiutato." -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se non hai cambiato la password recentemente, il tuo account potrebbe essere stato compromesso." -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Cambia la password per rendere nuovamente sicuro il tuo account." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "ricorda" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Accedi" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Sei uscito." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedente" @@ -569,16 +564,7 @@ msgstr "precedente" msgid "next" msgstr "successivo" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Avviso di sicurezza" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Verifica la tua password.<br/>Per motivi di sicurezza, potresti ricevere una richiesta di digitare nuovamente la password." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Verifica" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Aggiornamento di ownCloud alla versione %s in corso, potrebbe richiedere del tempo." diff --git a/l10n/it/files.po b/l10n/it/files.po index 062fa2906fd..89db9dc1bd9 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -6,13 +6,13 @@ # <cosenal@gmail.com>, 2011. # Francesco Apruzzese <cescoap@gmail.com>, 2011. # <marco@carnazzo.it>, 2012. -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. +# Vincenzo Reale <vinx.reale@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 01:41+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 06:53+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,72 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "Impossibile spostare %s - un file con questo nome esiste già" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Impossibile spostare %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Impossibile rinominare il file" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Nessun file è stato inviato. Errore sconosciuto" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, file caricato con successo" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato parzialmente caricato" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Cartella temporanea mancante" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Spazio disponibile insufficiente" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Cartella non valida." + #: appinfo/app.php:10 msgid "Files" msgstr "File" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Elimina" @@ -68,122 +94,134 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "suggerisci nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "annulla" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "sostituito {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "annulla" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "non condivisi {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "eliminati {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' non è un nome file valido." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Il nome del file non può essere vuoto." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "creazione file ZIP, potrebbe richiedere del tempo." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Errore di invio" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Chiudi" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "In corso" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} file in fase di caricamentoe" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome della cartella non valido. L'uso di \"Shared\" è riservato a ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "L'URL non può essere vuoto." + +#: js/files.js:543 +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:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} file analizzati" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "errore durante la scansione" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimensione" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificato" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 file" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} file" @@ -195,27 +233,27 @@ msgstr "Gestione file" msgid "Maximum upload size" msgstr "Dimensione massima upload" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "numero mass.: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necessario per lo scaricamento di file multipli e cartelle." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Abilita scaricamento ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 è illimitato" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Dimensione massima per i file ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salva" @@ -235,36 +273,36 @@ msgstr "Cartella" msgid "From link" msgstr "Da collegamento" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Carica" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Scarica" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Il file caricato è troppo grande" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 273bdef29b0..5bb90cec909 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 06:40+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Scadenza di tutte le versioni" - #: js/versions.js:16 msgid "History" msgstr "Cronologia" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versioni" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Ciò eliminerà tutte le versioni esistenti dei tuoi file" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Controllo di versione dei file" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 093eca463d1..e162e94ad32 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. +# Vincenzo Reale <vinx.reale@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-17 00:01+0100\n" -"PO-Revision-Date: 2012-11-15 23:21+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 06:44+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Aiuto" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personale" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Impostazioni" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Utenti" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Applicazioni" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Torna ai file" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "I file selezionati sono troppo grandi per generare un file zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "non può essere determinato" + #: json.php:28 msgid "Application is not enabled" msgstr "L'applicazione non è abilitata" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Errore di autenticazione" @@ -82,55 +86,55 @@ msgstr "Testo" msgid "Images" msgstr "Immagini" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "secondi fa" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minuto fa" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minuti fa" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 ora fa" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d ore fa" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "oggi" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ieri" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d giorni fa" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "il mese scorso" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d mesi fa" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "l'anno scorso" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "anni fa" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 046096abda4..b8c1b46912e 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -7,16 +7,16 @@ # Francesco Apruzzese <cescoap@gmail.com>, 2011. # <icewind1991@gmail.com>, 2012. # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. -# <marco@carnazzo.it>, 2011, 2012. +# <marco@carnazzo.it>, 2011-2013. # <rb.colombo@gmail.com>, 2011. # Vincenzo Reale <vinx.reale@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 07:47+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 08:30+0000\n" +"Last-Translator: ufic <marco@carnazzo.it>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,7 +36,7 @@ msgstr "Il gruppo esiste già" msgid "Unable to add group" msgstr "Impossibile aggiungere il gruppo" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Impossibile abilitare l'applicazione." @@ -48,14 +48,6 @@ msgstr "Email salvata" msgid "Invalid email" msgstr "Email non valida" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID modificato" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Richiesta non valida" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Impossibile eliminare il gruppo" @@ -72,6 +64,10 @@ msgstr "Impossibile eliminare l'utente" msgid "Language changed" msgstr "Lingua modificata" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Richiesta non valida" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Gli amministratori non possono rimuovere se stessi dal gruppo di amministrazione" @@ -263,7 +259,7 @@ msgstr "Altro" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" -msgstr "Gruppo di amministrazione" +msgstr "Gruppi amministrati" #: templates/users.php:87 msgid "Storage" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 9dc0007050a..5c009d82967 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -4,13 +4,13 @@ # # Translators: # Innocenzo Ventre <el.diabl09@gmail.com>, 2012. -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. +# Vincenzo Reale <vinx.reale@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" -"PO-Revision-Date: 2012-12-15 10:28+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 08:29+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -28,9 +28,9 @@ msgstr "<b>Avviso:</b> le applicazioni user_ldap e user_webdavauth sono incompat #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Avviso:</b> il modulo PHP LDAP richiesto non è installato, il motore non funzionerà. Chiedi al tuo amministratore di sistema di installarlo." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "<b>Avviso:</b> il modulo PHP LDAP non è installato, il motore non funzionerà. Chiedi al tuo amministratore di sistema di installarlo." #: templates/settings.php:15 msgid "Host" @@ -46,6 +46,10 @@ msgid "Base DN" msgstr "DN base" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "Un DN base per riga" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Puoi specificare una DN base per gli utenti ed i gruppi nella scheda Avanzate" @@ -116,10 +120,18 @@ msgstr "Porta" msgid "Base User Tree" msgstr "Struttura base dell'utente" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "Un DN base utente per riga" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Struttura base del gruppo" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "Un DN base gruppo per riga" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Associazione gruppo-utente " diff --git a/l10n/it/user_webdavauth.po b/l10n/it/user_webdavauth.po index 074902ec724..ba6bfbe7d44 100644 --- a/l10n/it/user_webdavauth.po +++ b/l10n/it/user_webdavauth.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. +# Vincenzo Reale <vinx.reale@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 08:45+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 06:51+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,17 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "Autenticazione WebDAV" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloud invierà le credenziali dell'utente a questo URL. Interpreta i codici http 401 e http 403 come credenziali errate e tutti gli altri codici come credenziali corrette." +"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 "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." diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index ae1bd30ee44..e9ba6cfa4a5 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -4,15 +4,15 @@ # # Translators: # Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012. +# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012-2013. # <tetuyano+transi@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 11:56+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,55 +86,55 @@ msgstr "お気に入りから %s の削除エラー" msgid "Settings" msgstr "設定" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "秒前" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 時間前" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} 時間前" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "今日" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "昨日" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} 日前" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "一月前" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "月前" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "一年前" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "年前" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "オブジェクタイプが指定されていません。" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "エラー" @@ -177,7 +177,7 @@ msgstr "アプリ名がしていされていません。" msgid "The required file {file} is not installed!" msgstr "必要なファイル {file} がインストールされていません!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -205,12 +205,11 @@ msgstr "共有者" msgid "Share with link" msgstr "URLリンクで共有" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "パスワード保護" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "パスワード" @@ -274,23 +273,23 @@ msgstr "削除" msgid "share" msgstr "共有" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "メールを送信しました" @@ -315,7 +314,7 @@ msgid "Request failed!" msgstr "リクエスト失敗!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "ユーザ名" @@ -529,36 +528,32 @@ msgstr "管理下にあるウェブサービス" msgid "Log out" msgstr "ログアウト" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "自動ログインは拒否されました!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "最近パスワードを変更していない場合、あなたのアカウントは危険にさらされているかもしれません。" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "アカウント保護の為、パスワードを再度の変更をお願いいたします。" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "パスワードを忘れましたか?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "パスワードを記憶する" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "ログイン" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "ログアウトしました。" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "前" @@ -567,16 +562,7 @@ msgstr "前" msgid "next" msgstr "次" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "セキュリティ警告!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "パスワードの確認<br/>セキュリティ上の理由によりパスワードの再入力をお願いします。" - -#: templates/verify.php:16 -msgid "Verify" -msgstr "確認" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 3f253361a8a..74cabcaca6b 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -4,15 +4,15 @@ # # Translators: # Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012. +# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012-2013. # <tetuyano+transi@gmail.com>, 2012. # <tetuyano+transi@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 01:53+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 04:09+0000\n" "Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,72 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "%s を移動できませんでした ― この名前のファイルはすでに存在します" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "%s を移動できませんでした" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "ファイル名の変更ができません" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "ファイルは何もアップロードされていません。不明なエラー" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "エラーはありません。ファイルのアップロードは成功しました" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "アップロードされたファイルはHTMLのフォームに設定されたMAX_FILE_SIZEに設定されたサイズを超えています" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ファイルは一部分しかアップロードされませんでした" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ファイルはアップロードされませんでした" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "テンポラリフォルダが見つかりません" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ディスクへの書き込みに失敗しました" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "利用可能なスペースが十分にありません" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "無効なディレクトリです。" + #: appinfo/app.php:10 msgid "Files" msgstr "ファイル" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "共有しない" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "削除" @@ -68,122 +94,134 @@ msgstr "削除" msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在しています" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "置き換え" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "推奨名称" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} を置換" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} を {new_name} に置換" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "未共有 {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "削除 {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' は無効なファイル名です。" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "ファイル名を空にすることはできません。" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIPファイルを生成中です、しばらくお待ちください。" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ディレクトリもしくは0バイトのファイルはアップロードできません" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "アップロードエラー" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "閉じる" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "保留" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} ファイルをアップロード中" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "無効なフォルダ名です。\"Shared\" の利用は ownCloud が予約済みです。" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URLは空にできません。" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ファイルをスキャン" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "スキャン中のエラー" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名前" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "サイズ" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "更新日時" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 フォルダ" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ファイル" @@ -195,27 +233,27 @@ msgstr "ファイル操作" msgid "Maximum upload size" msgstr "最大アップロードサイズ" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "最大容量: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "複数ファイルおよびフォルダのダウンロードに必要" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP形式のダウンロードを有効にする" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0を指定した場合は無制限" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIPファイルへの最大入力サイズ" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "保存" @@ -235,36 +273,36 @@ msgstr "フォルダ" msgid "From link" msgstr "リンク" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "アップロード" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "ここには何もありません。何かアップロードしてください。" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "ダウンロード" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "ファイルサイズが大きすぎます" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "ファイルをスキャンしています、しばらくお待ちください。" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "スキャン中" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index 9c717bd2fa4..5ebe43b4854 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 00:30+0000\n" -"Last-Translator: ttyn <tetuyano+transi@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,10 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "すべてのバージョンを削除する" - #: js/versions.js:16 msgid "History" msgstr "履歴" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "バージョン" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "これは、あなたのファイルのすべてのバックアップバージョンを削除します" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "ファイルのバージョン管理" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 2f16f657540..0d538676fff 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-15 00:37+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "ヘルプ" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "個人設定" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "設定" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "ユーザ" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "アプリ" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "管理者" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIPダウンロードは無効です。" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "ファイルは1つずつダウンロードする必要があります。" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "ファイルに戻る" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "選択したファイルはZIPファイルの生成には大きすぎます。" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "アプリケーションは無効です" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "認証エラー" @@ -82,55 +86,55 @@ msgstr "TTY TDD" msgid "Images" msgstr "画像" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "秒前" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1分前" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d 分前" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 時間前" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d 時間前" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "今日" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "昨日" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d 日前" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "先月" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d 分前" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "昨年" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "年前" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index c1f06322310..69bbdf54d2d 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -4,15 +4,15 @@ # # Translators: # Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012. +# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012-2013. # <tetuyano+transi@gmail.com>, 2012. # <tetuyano+transi@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "グループは既に存在しています" msgid "Unable to add group" msgstr "グループを追加できません" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "アプリを有効にできませんでした。" @@ -45,14 +45,6 @@ msgstr "メールアドレスを保存しました" msgid "Invalid email" msgstr "無効なメールアドレス" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenIDが変更されました" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "無効なリクエストです" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "グループを削除できません" @@ -69,6 +61,10 @@ msgstr "ユーザを削除できません" msgid "Language changed" msgstr "言語が変更されました" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "無効なリクエストです" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "管理者は自身を管理者グループから削除できません。" @@ -248,11 +244,11 @@ msgstr "作成" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "デフォルトストレージ" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "無制限" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -264,11 +260,11 @@ msgstr "グループ管理者" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "ストレージ" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "デフォルト" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 39aa1002f7e..16a20c7207b 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -4,14 +4,14 @@ # # Translators: # Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012. +# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012-2013. # <tetuyano+transi@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" -"PO-Revision-Date: 2012-12-15 06:21+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 05:47+0000\n" "Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -29,9 +29,9 @@ msgstr "<b>警告:</b> user_ldap と user_webdavauth のアプリには互換性 #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>警告:</b> PHP LDAP モジュールがインストールされていません。バックエンドが正しくどうさしません。システム管理者にインストールするよう問い合わせてください。" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "<b>警告:</b> PHP LDAP モジュールがインストールされていません。バックエンドが正しく動作しません。システム管理者にインストールするよう問い合わせてください。" #: templates/settings.php:15 msgid "Host" @@ -47,6 +47,10 @@ msgid "Base DN" msgstr "ベースDN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "1行に1つのベースDN" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "拡張タブでユーザとグループのベースDNを指定することができます。" @@ -117,10 +121,18 @@ msgstr "ポート" msgid "Base User Tree" msgstr "ベースユーザツリー" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "1行に1つのユーザベースDN" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "ベースグループツリー" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "1行に1つのグループベースDN" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "グループとメンバーの関連付け" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index b6499e4ce5f..966cae84162 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -4,13 +4,13 @@ # # Translators: # Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012. +# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 03:51+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 05:50+0000\n" "Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -19,13 +19,17 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "WebDAV 認証" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloudのこのURLへのユーザ資格情報の送信は、資格情報が間違っている場合はHTTP401もしくは403を返し、正しい場合は全てのコードを返します。" +"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 "ownCloudはこのURLにユーザ資格情報を送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 49ad2e0194a..19c7defb404 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "დღეს" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "წლის წინ" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "შეცდომა" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -203,12 +203,11 @@ msgstr "გაუზიარე" msgid "Share with link" msgstr "გაუზიარე ლინკით" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "პაროლით დაცვა" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "პაროლი" @@ -272,23 +271,23 @@ msgstr "წაშლა" msgid "share" msgstr "გაზიარება" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +311,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "მომხმარებელი" @@ -402,44 +401,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "შექმენი ადმინ ექაუნტი" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Advanced" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "მონაცემთა საქაღალდე" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "ბაზის კონფიგურირება" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "გამოყენებული იქნება" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "ბაზის მომხმარებელი" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "ბაზის პაროლი" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "ბაზის სახელი" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "ბაზის ცხრილის ზომა" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "ბაზის ჰოსტი" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "კონფიგურაციის დასრულება" @@ -527,36 +526,32 @@ msgstr "თქვენი კონტროლის ქვეშ მყოფ msgid "Log out" msgstr "გამოსვლა" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "ავტომატური შესვლა უარყოფილია!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "დაგავიწყდათ პაროლი?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "დამახსოვრება" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "შესვლა" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "თქვენ გამოხვედით სისტემიდან" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "წინა" @@ -565,16 +560,7 @@ msgstr "წინა" msgid "next" msgstr "შემდეგი" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "უსაფრთხოების გაფრთხილება!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: templates/verify.php:16 -msgid "Verify" -msgstr "შემოწმება" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 5e3078f5048..27c92e92ba5 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,72 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ფაილები" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "გაზიარების მოხსნა" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "წაშლა" @@ -65,122 +91,134 @@ msgstr "წაშლა" msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "შეცვლა" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "სახელის შემოთავაზება" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "უარყოფა" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} შეცვლილია" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} შეცვლილია {old_name}–ით" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "გაზიარება მოხსნილი {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "წაშლილი {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-ფაილის გენერირება, ამას ჭირდება გარკვეული დრო." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "შეცდომა ატვირთვისას" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "დახურვა" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} ფაილი იტვირთება" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ფაილი სკანირებულია" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "შეცდომა სკანირებისას" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "სახელი" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "ზომა" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ფაილი" @@ -192,27 +230,27 @@ msgstr "ფაილის დამუშავება" msgid "Maximum upload size" msgstr "მაქსიმუმ ატვირთის ზომა" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "მაქს. შესაძლებელი:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "საჭიროა მულტი ფაილ ან საქაღალდის ჩამოტვირთვა." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-Download–ის ჩართვა" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 is unlimited" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP ფაილების მაქსიმუმ დასაშვები ზომა" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "შენახვა" @@ -232,36 +270,36 @@ msgstr "საქაღალდე" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "ატვირთვა" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "აქ არაფერი არ არის. ატვირთე რამე!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "ასატვირთი ფაილი ძალიან დიდია" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს." -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "მიმდინარე სკანირება" diff --git a/l10n/ka_GE/files_versions.po b/l10n/ka_GE/files_versions.po index 8d38b072b0f..aafddd05a3c 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: 2012-10-22 02:02+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 3011c8854f7..f43fa26c139 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "დახმარება" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "პირადი" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "პარამეტრები" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "მომხმარებელი" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "აპლიკაციები" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "ადმინისტრატორი" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "ავთენტიფიკაციის შეცდომა" @@ -82,55 +86,55 @@ msgstr "ტექსტი" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "წამის წინ" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "დღეს" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "გუშინ" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "გასულ თვეში" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "ბოლო წელს" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 8d92cc3af03..4fe1200ec3c 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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "ჯგუფი უკვე არსებობს" msgid "Unable to add group" msgstr "ჯგუფის დამატება ვერ მოხერხდა" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "ვერ მოხერხდა აპლიკაციის ჩართვა." @@ -42,14 +42,6 @@ msgstr "იმეილი შენახულია" msgid "Invalid email" msgstr "არასწორი იმეილი" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID შეცვლილია" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "არასწორი მოთხოვნა" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "ჯგუფის წაშლა ვერ მოხერხდა" @@ -66,6 +58,10 @@ msgstr "მომხმარებლის წაშლა ვერ მოხ msgid "Language changed" msgstr "ენა შეცვლილია" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "არასწორი მოთხოვნა" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 0df8aa5b1a4..14dbca3fc68 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -180,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "დახმარება" diff --git a/l10n/ka_GE/user_webdavauth.po b/l10n/ka_GE/user_webdavauth.po index 4582092b83e..b7a0b557630 100644 --- a/l10n/ka_GE/user_webdavauth.po +++ b/l10n/ka_GE/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 1f24c97277d..5e2b5617dd6 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <aoiob4305@gmail.com>, 2013. # 남자사람 <cessnagi@gmail.com>, 2012. # <limonade83@gmail.com>, 2012. # Shinjo Park <kde@peremen.name>, 2012. @@ -10,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -23,26 +24,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "User %s 가 당신과 파일을 공유하였습니다." #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "User %s 가 당신과 폴더를 공유하였습니다." #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "User %s 가 파일 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다." #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "User %s 가 폴더 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다." #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -86,55 +87,55 @@ msgstr "책갈피에서 %s을(를) 삭제할 수 없었습니다." msgid "Settings" msgstr "설정" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "초 전" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1분 전" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes}분 전" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1시간 전" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours}시간 전" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "오늘" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "어제" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days}일 전" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "지난 달" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months}개월 전" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "개월 전" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "작년" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "년 전" @@ -164,8 +165,8 @@ msgid "The object type is not specified." msgstr "객체 유형이 지정되지 않았습니다." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "오류" @@ -177,7 +178,7 @@ msgstr "앱 이름이 지정되지 않았습니다." msgid "The required file {file} is not installed!" msgstr "필요한 파일 {file}이(가) 설치되지 않았습니다!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -205,22 +206,21 @@ msgstr "다음으로 공유" msgid "Share with link" msgstr "URL 링크로 공유" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "암호 보호" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "암호" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "이메일 주소" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "전송" #: js/share.js:177 msgid "Set expiration date" @@ -274,25 +274,25 @@ msgstr "삭제" msgid "share" msgstr "공유" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "전송 중..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "이메일 발송됨" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -314,8 +314,8 @@ msgstr "초기화 이메일을 보냈습니다." msgid "Request failed!" msgstr "요청이 실패했습니다!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "사용자 이름" @@ -404,44 +404,44 @@ msgstr "데이터 디렉터리와 파일을 인터넷에서 접근할 수 있는 msgid "Create an <strong>admin account</strong>" msgstr "<strong>관리자 계정</strong> 만들기" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "고급" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "데이터 폴더" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "데이터베이스 설정" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "사용될 예정" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "데이터베이스 사용자" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "데이터베이스 암호" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "데이터베이스 이름" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "데이터베이스 테이블 공간" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "데이터베이스 호스트" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "설치 완료" @@ -529,36 +529,32 @@ msgstr "내가 관리하는 웹 서비스" msgid "Log out" msgstr "로그아웃" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "자동 로그인이 거부되었습니다!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "최근에 암호를 변경하지 않았다면 계정이 탈취되었을 수도 있습니다!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "계정의 안전을 위하여 암호를 변경하십시오." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "암호를 잊으셨습니까?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "기억하기" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "로그인" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "로그아웃되었습니다." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "이전" @@ -567,16 +563,7 @@ msgstr "이전" msgid "next" msgstr "다음" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "보안 경고!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "암호를 확인해 주십시오.<br/>보안상의 이유로 종종 암호를 물어볼 것입니다." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "확인" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "ownCloud 를 버젼 %s로 업데이트 하는 중, 시간이 소요됩니다." diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 0fcb15b44b4..724bb5fd2d9 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -3,16 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <aoiob4305@gmail.com>, 2013. # 남자사람 <cessnagi@gmail.com>, 2012. +# Harim Park <fofwisdom@gmail.com>, 2013. # <limonade83@gmail.com>, 2012. # Shinjo Park <kde@peremen.name>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-10 00:11+0100\n" -"PO-Revision-Date: 2012-12-09 05:40+0000\n" -"Last-Translator: Shinjo Park <kde@peremen.name>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 13:42+0000\n" +"Last-Translator: Harim Park <fofwisdom@gmail.com>\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" @@ -20,46 +22,72 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존재함" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "%s 항목을 이딩시키지 못하였음" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "파일 이름바꾸기 할 수 없음" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "업로드에 성공하였습니다." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "업로드한 파일이 HTML 문서에 지정한 MAX_FILE_SIZE보다 더 큼" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "파일이 부분적으로 업로드됨" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "업로드된 파일 없음" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "임시 폴더가 사라짐" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "여유공간이 부족합니다" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "올바르지 않은 디렉토리입니다." + #: appinfo/app.php:10 msgid "Files" msgstr "파일" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "공유 해제" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "삭제" @@ -67,122 +95,134 @@ msgstr "삭제" msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "바꾸기" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "이름 제안" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "취소" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name}을(를) 대체함" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "실행 취소" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name}이(가) {new_name}(으)로 대체됨" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} 공유 해제됨" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} 삭제됨" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' 는 올바르지 않은 파일 이름 입니다." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "파일이름은 공란이 될 수 없습니다." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP 파일을 생성하고 있습니다. 시간이 걸릴 수도 있습니다." -#: js/files.js:209 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다" -#: js/files.js:209 +#: js/files.js:224 msgid "Upload Error" msgstr "업로드 오류" -#: js/files.js:226 +#: js/files.js:241 msgid "Close" msgstr "닫기" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "보류 중" -#: js/files.js:265 +#: js/files.js:280 msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "파일 {count}개 업로드 중" -#: js/files.js:340 js/files.js:373 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/files.js:442 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/files.js:512 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "폴더 이름이 올바르지 않습니다. \"Shared\" 폴더는 ownCloud에서 예약되었습니다." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL을 입력해야 합니다." -#: js/files.js:693 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "폴더 이름이 유효하지 않습니다. " + +#: js/files.js:727 msgid "{count} files scanned" msgstr "파일 {count}개 검색됨" -#: js/files.js:701 +#: js/files.js:735 msgid "error while scanning" msgstr "검색 중 오류 발생" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "이름" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "크기" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "수정됨" -#: js/files.js:803 +#: js/files.js:829 msgid "1 folder" msgstr "폴더 1개" -#: js/files.js:805 +#: js/files.js:831 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/files.js:813 +#: js/files.js:839 msgid "1 file" msgstr "파일 1개" -#: js/files.js:815 +#: js/files.js:841 msgid "{count} files" msgstr "파일 {count}개" @@ -194,27 +234,27 @@ msgstr "파일 처리" msgid "Maximum upload size" msgstr "최대 업로드 크기" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "최대 가능:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "다중 파일 및 폴더 다운로드에 필요합니다." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP 다운로드 허용" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0은 무제한입니다" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP 파일 최대 크기" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "저장" @@ -234,36 +274,36 @@ msgstr "폴더" msgid "From link" msgstr "링크에서" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "업로드" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "내용이 없습니다. 업로드할 수 있습니다!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "다운로드" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "업로드 용량 초과" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "파일을 검색하고 있습니다. 기다려 주십시오." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "현재 검색" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 70d697575d8..f43b8963773 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <aoiob4305@gmail.com>, 2013. # 남자사람 <cessnagi@gmail.com>, 2012. # Shinjo Park <kde@peremen.name>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:07+0000\n" +"Last-Translator: aoiob4305 <aoiob4305@gmail.com>\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" @@ -47,14 +48,14 @@ msgstr "Google 드라이브 저장소 설정 오류" msgid "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>경고</b>\"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유애 연결이 불가능 합니다.. 시스템 관리자에게 요청하여 설치하시기 바랍니다." #: lib/config.php:435 msgid "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr "<b>경고</b>PHP용 FTP 지원이 사용 불가능 하거나 설치되지 않았습니다. FTP 공유에 연결이 불가능 합니다. 시스템 관리자에게 요청하여 설치하시기 바랍니다. " #: templates/settings.php:3 msgid "External Storage" @@ -101,7 +102,7 @@ msgid "Users" msgstr "사용자" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "삭제" @@ -113,10 +114,10 @@ msgstr "사용자 외부 저장소 사용" msgid "Allow users to mount their own external storage" msgstr "사용자별 외부 저장소 마운트 허용" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL 루트 인증서" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "루트 인증서 가져오기" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index 20d3071b548..0fe524b7701 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-10 00:11+0100\n" -"PO-Revision-Date: 2012-12-09 06:11+0000\n" -"Last-Translator: Shinjo Park <kde@peremen.name>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,10 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "모든 버전 삭제" - #: js/versions.js:16 msgid "History" msgstr "역사" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "버전" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "이 파일의 모든 백업 버전을 삭제합니다" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "파일 버전 관리" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 3870ebda87f..c759d43ece3 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-10 00:11+0100\n" -"PO-Revision-Date: 2012-12-09 06:06+0000\n" -"Last-Translator: Shinjo Park <kde@peremen.name>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "도움말" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "개인" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "설정" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "사용자" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "앱" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "관리자" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP 다운로드가 비활성화되었습니다." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "파일을 개별적으로 다운로드해야 합니다." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "파일로 돌아가기" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "앱이 활성화되지 않았습니다" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "인증 오류" @@ -83,55 +87,55 @@ msgstr "텍스트" msgid "Images" msgstr "그림" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "초 전" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1분 전" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d분 전" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1시간 전" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d시간 전" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "오늘" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "어제" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d일 전" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "지난 달" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d개월 전" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "작년" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "년 전" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index ea5f2c1fc67..cf07cd95284 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <aoiob4305@gmail.com>, 2013. # 남자사람 <cessnagi@gmail.com>, 2012. +# Harim Park <fofwisdom@gmail.com>, 2013. # <limonade83@gmail.com>, 2012. # Shinjo Park <kde@peremen.name>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -32,7 +34,7 @@ msgstr "그룹이 이미 존재합니다." msgid "Unable to add group" msgstr "그룹을 추가할 수 없습니다." -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "앱을 활성화할 수 없습니다." @@ -44,14 +46,6 @@ msgstr "이메일 저장됨" msgid "Invalid email" msgstr "잘못된 이메일 주소" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID 변경됨" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "잘못된 요청" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "그룹을 삭제할 수 없습니다." @@ -68,6 +62,10 @@ msgstr "사용자를 삭제할 수 없습니다." msgid "Language changed" msgstr "언어가 변경되었습니다" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "잘못된 요청" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "관리자 자신을 관리자 그룹에서 삭제할 수 없습니다" @@ -120,27 +118,27 @@ msgstr "<span class=\"licence\"></span>-라이선스 보유자 <span class=\"aut #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "유저 문서" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "관리자 문서" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "온라인 문서" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "포럼" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "버그트래커" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "상업용 지원" #: templates/personal.php:8 #, php-format @@ -153,15 +151,15 @@ msgstr "고객" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "데스크탑 클라이언트 다운로드" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "안드로이드 클라이언트 다운로드" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "iOS 클라이언트 다운로드" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -213,15 +211,15 @@ msgstr "번역 돕기" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "파일 매니저에서 사용자의 ownCloud에 접속하기 위해 이 주소를 사용하십시요." #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "버젼" #: templates/personal.php:65 msgid "" @@ -247,11 +245,11 @@ msgstr "만들기" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "기본 저장소" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "무제한" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -263,11 +261,11 @@ msgstr "그룹 관리자" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "저장소" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "기본값" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index b10823d7147..53b9f3b081f 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <aoiob4305@gmail.com>, 2013. # 남자사람 <cessnagi@gmail.com>, 2012. # Shinjo Park <kde@peremen.name>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -24,12 +25,12 @@ msgid "" "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "<b>경고</b>user_ldap 앱과 user_webdavauth 앱은 호환되지 않습니다. 오동작을 일으킬 수 있으므로, 시스템 관리자에게 요청하여, 둘 중 하나를 비활성화 하시기 바랍니다." #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -46,6 +47,10 @@ msgid "Base DN" msgstr "기본 DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "고급 탭에서 사용자 및 그룹에 대한 기본 DN을 지정할 수 있습니다." @@ -116,10 +121,18 @@ msgstr "포트" msgid "Base User Tree" msgstr "기본 사용자 트리" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "기본 그룹 트리" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "그룹-회원 연결" diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index 621bee70462..bd135598c7f 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <aoiob4305@gmail.com>, 2013. # 남자사람 <cessnagi@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -18,13 +19,17 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/ku_IQ/core.po b/l10n/ku_IQ/core.po index 3917e9409cc..66155fca436 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "دهستكاری" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "ههڵه" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,12 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "وشەی تێپەربو" @@ -272,23 +271,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +311,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "ناوی بهکارهێنهر" @@ -402,44 +401,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "ههڵبژاردنی پیشكهوتوو" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "زانیاری فۆڵدهر" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "بهكارهێنهری داتابهیس" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "وشهی نهێنی داتا بهیس" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "ناوی داتابهیس" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "هۆستی داتابهیس" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "كۆتایی هات دهستكاریهكان" @@ -527,36 +526,32 @@ msgstr "ڕاژهی وێب لهژێر چاودێریت دایه" msgid "Log out" msgstr "چوونەدەرەوە" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "پێشتر" @@ -565,16 +560,7 @@ msgstr "پێشتر" msgid "next" msgstr "دواتر" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 749a057b1c1..e85f7e13045 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,72 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -64,122 +90,134 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "داخستن" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "ناونیشانی بهستهر نابێت بهتاڵ بێت." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "ناو" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -191,27 +229,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "پاشکهوتکردن" @@ -231,36 +269,36 @@ msgstr "بوخچه" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "بارکردن" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "داگرتن" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/ku_IQ/files_versions.po b/l10n/ku_IQ/files_versions.po index 89832609b9c..b3fa1af6357 100644 --- a/l10n/ku_IQ/files_versions.po +++ b/l10n/ku_IQ/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-07 02:03+0200\n" -"PO-Revision-Date: 2012-10-07 00:02+0000\n" -"Last-Translator: Hozha Koyi <hozhan@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "وهشانهکان گشتیان بهسهردهچن" - #: js/versions.js:16 msgid "History" msgstr "مێژوو" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "وهشان" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "ئهمه سهرجهم پاڵپشتی وهشانه ههبووهکانی پهڕگهکانت دهسڕینتهوه" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "وهشانی پهڕگه" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index ab5cb3ada24..64ee0185d35 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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "یارمەتی" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "دهستكاری" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "بهكارهێنهر" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index a1dddc85d5d..75dbd11b7bc 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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index f4e484f84f7..a6c60224118 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -180,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "یارمەتی" diff --git a/l10n/ku_IQ/user_webdavauth.po b/l10n/ku_IQ/user_webdavauth.po index 57ded88a09b..313845a14b2 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/lb/core.po b/l10n/lb/core.po index eacbddee62c..d51bf81245a 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "Astellungen" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Fehler" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,12 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Passwuert" @@ -272,23 +271,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +311,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Benotzernumm" @@ -402,44 +401,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "En <strong>Admin Account</strong> uleeën" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Advanced" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Daten Dossier" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Datebank konfiguréieren" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "wärt benotzt ginn" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Datebank Benotzer" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Datebank Passwuert" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Datebank Tabelle-Gréisst" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Datebank Server" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Installatioun ofschléissen" @@ -527,36 +526,32 @@ msgstr "Web Servicer ënnert denger Kontroll" msgid "Log out" msgstr "Ausloggen" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Passwuert vergiess?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "verhalen" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Log dech an" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Du bass ausgeloggt." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "zeréck" @@ -565,16 +560,7 @@ msgstr "zeréck" msgid "next" msgstr "weider" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index d4f89d14eac..e664d38cc35 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,72 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Et ass keng Datei ropgelueden ginn" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Dateien" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Läschen" @@ -65,122 +91,134 @@ msgstr "Läschen" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass." -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Fehler beim eroplueden" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Zoumaachen" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Numm" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Gréisst" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Geännert" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -192,27 +230,27 @@ msgstr "Fichier handling" msgid "Maximum upload size" msgstr "Maximum Upload Gréisst " -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. méiglech:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Gett gebraucht fir multi-Fichier an Dossier Downloads." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-download erlaben" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ass onlimitéiert" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximal Gréisst fir ZIP Fichieren" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Späicheren" @@ -232,36 +270,36 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Eroplueden" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Eroflueden" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po index 9f3294d11f6..3c50ece48e4 100644 --- a/l10n/lb/files_versions.po +++ b/l10n/lb/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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index b164e98f222..09aea026773 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" -msgstr "" +msgstr "Hëllef" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Perséinlech" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Astellungen" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Authentifikatioun's Fehler" @@ -71,7 +75,7 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Dateien" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" @@ -81,55 +85,55 @@ msgstr "SMS" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index cf0f377fcb9..2bb5692c231 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -42,14 +42,6 @@ msgstr "E-mail gespäichert" msgid "Invalid email" msgstr "Ongülteg e-mail" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID huet geännert" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ongülteg Requête" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -66,6 +58,10 @@ msgstr "" msgid "Language changed" msgstr "Sprooch huet geännert" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ongülteg Requête" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index be1657cb3d3..a12e3f905ee 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -180,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Hëllef" diff --git a/l10n/lb/user_webdavauth.po b/l10n/lb/user_webdavauth.po index 626112fb833..fb53f7bcb24 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/lt_LT/core.po b/l10n/lt_LT/core.po index ecc372bdfea..bdc20a2384a 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: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -85,55 +85,55 @@ msgstr "" msgid "Settings" msgstr "Nustatymai" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "šiandien" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "vakar" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "praeitais metais" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "prieš metus" @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Klaida" @@ -176,7 +176,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -204,12 +204,11 @@ msgstr "Dalintis su" msgid "Share with link" msgstr "Dalintis nuoroda" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Apsaugotas slaptažodžiu" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Slaptažodis" @@ -273,23 +272,23 @@ msgstr "ištrinti" msgid "share" msgstr "dalintis" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -313,8 +312,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Prisijungimo vardas" @@ -403,44 +402,44 @@ msgstr "Jūsų duomenų aplankalas ir Jūsų failai turbūt yra pasiekiami per i msgid "Create an <strong>admin account</strong>" msgstr "Sukurti <strong>administratoriaus paskyrą</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Išplėstiniai" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Duomenų katalogas" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Nustatyti duomenų bazę" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "bus naudojama" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Duomenų bazės vartotojas" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Duomenų bazės slaptažodis" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Duomenų bazės pavadinimas" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Duomenų bazės loginis saugojimas" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Duomenų bazės serveris" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Baigti diegimą" @@ -528,36 +527,32 @@ msgstr "jūsų valdomos web paslaugos" msgid "Log out" msgstr "Atsijungti" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatinis prisijungimas atmestas!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Jei paskutinių metu nekeitėte savo slaptažodžio, Jūsų paskyra gali būti pavojuje!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Prašome pasikeisti slaptažodį dar kartą, dėl paskyros saugumo." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Pamiršote slaptažodį?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "prisiminti" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Prisijungti" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Jūs atsijungėte." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "atgal" @@ -566,16 +561,7 @@ msgstr "atgal" msgid "next" msgstr "kitas" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Saugumo pranešimas!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Prašome patvirtinti savo vartotoją.<br/>Dėl saugumo, slaptažodžio patvirtinimas bus reikalaujamas įvesti kas kiek laiko." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Patvirtinti" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index ef30d7726ce..0b5d2d78f5b 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,72 @@ 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/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Klaidų nėra, failas įkeltas sėkmingai" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Įkeliamo failo dydis viršija MAX_FILE_SIZE parametrą, kuris yra nustatytas HTML formoje" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nebuvo įkeltas nė vienas failas" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Failai" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nebesidalinti" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Ištrinti" @@ -67,122 +93,134 @@ msgstr "Ištrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "pakeisti" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "pasiūlyti pavadinimą" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "pakeiskite {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "nebesidalinti {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "ištrinti {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "kuriamas ZIP archyvas, tai gali užtrukti šiek tiek laiko." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Įkėlimo klaida" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Užverti" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Laukiantis" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} įkeliami failai" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} praskanuoti failai" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "klaida skanuojant" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dydis" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Pakeista" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 failas" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} failai" @@ -194,27 +232,27 @@ msgstr "Failų tvarkymas" msgid "Maximum upload size" msgstr "Maksimalus įkeliamo failo dydis" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maks. galima:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Reikalinga daugybinui failų ir aplankalų atsisiuntimui." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Įjungti atsisiuntimą ZIP archyvu" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 yra neribotas" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimalus ZIP archyvo failo dydis" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Išsaugoti" @@ -234,36 +272,36 @@ msgstr "Katalogas" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Įkelti" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" -#: templates/index.php:105 +#: templates/index.php:104 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ų leidžiamą šiame serveryje" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po index 2e5b37e12fc..b3cf7ff9e97 100644 --- a/l10n/lt_LT/files_versions.po +++ b/l10n/lt_LT/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-23 02:02+0200\n" -"PO-Revision-Date: 2012-10-22 16:56+0000\n" -"Last-Translator: andrejuseu <andrejuszl@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,10 @@ 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" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Panaikinti visų versijų galiojimą" - #: js/versions.js:16 msgid "History" msgstr "Istorija" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versijos" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Tai ištrins visas esamas failo versijas" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Failų versijos" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 8ef5110cd74..1f676fdd4ec 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -19,51 +19,55 @@ 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" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Pagalba" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Asmeniniai" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Nustatymai" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Vartotojai" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Programos" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administravimas" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Atgal į Failus" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Pasirinkti failai per dideli archyvavimui į ZIP." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Programa neįjungta" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Autentikacijos klaida" @@ -83,55 +87,55 @@ msgstr "Žinučių" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "prieš kelias sekundes" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "prieš 1 minutę" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "prieš %d minučių" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "šiandien" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "vakar" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "prieš %d dienų" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "praėjusį mėnesį" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "pereitais metais" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 8622a3a7a26..91d9a303f5e 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Nepavyksta įjungti aplikacijos." @@ -43,14 +43,6 @@ msgstr "El. paštas išsaugotas" msgid "Invalid email" msgstr "Netinkamas el. paštas" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID pakeistas" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Klaidinga užklausa" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -67,6 +59,10 @@ msgstr "" msgid "Language changed" msgstr "Kalba pakeista" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Klaidinga užklausa" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 9891d24f372..0abf2d8c2fd 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:19+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -115,10 +119,18 @@ msgstr "Prievadas" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" diff --git a/l10n/lt_LT/user_webdavauth.po b/l10n/lt_LT/user_webdavauth.po index d4919105187..f8bc059ae29 100644 --- a/l10n/lt_LT/user_webdavauth.po +++ b/l10n/lt_LT/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ 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" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/lv/core.po b/l10n/lv/core.po index 404800bf2bf..af275975955 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Kļūme" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,12 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Parole" @@ -272,23 +271,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +311,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Lietotājvārds" @@ -402,44 +401,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datu mape" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Nokonfigurēt datubāzi" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "tiks izmantots" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Datubāzes mājvieta" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Pabeigt uzstādījumus" @@ -527,36 +526,32 @@ msgstr "" msgid "Log out" msgstr "Izlogoties" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Aizmirsāt paroli?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "atcerēties" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Ielogoties" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Jūs esat veiksmīgi izlogojies." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "iepriekšējā" @@ -565,16 +560,7 @@ msgstr "iepriekšējā" msgid "next" msgstr "nākamā" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 09760c280aa..7b978c86d82 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,72 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Viss kārtībā, augšupielāde veiksmīga" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Neviens fails netika augšuplādēts" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Trūkst pagaidu mapes" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Nav iespējams saglabāt" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Faili" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Pārtraukt līdzdalīšanu" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Izdzēst" @@ -66,122 +92,134 @@ msgstr "Izdzēst" msgid "Rename" msgstr "Pārdēvēt" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "Ieteiktais nosaukums" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "vienu soli atpakaļ" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "lai uzģenerētu ZIP failu, kāds brīdis ir jāpagaida" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Augšuplādēšanas laikā radās kļūda" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Augšuplāde ir atcelta" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nosaukums" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Izmērs" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -193,27 +231,27 @@ msgstr "Failu pārvaldība" msgid "Maximum upload size" msgstr "Maksimālais failu augšuplādes apjoms" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maksīmālais iespējamais:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Vajadzīgs vairāku failu un mapju lejuplādei" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Iespējot ZIP lejuplādi" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ir neierobežots" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Saglabāt" @@ -233,36 +271,36 @@ msgstr "Mape" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Augšuplādet" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Atcelt augšuplādi" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšuplādēt" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Lejuplādēt" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Fails ir par lielu lai to augšuplādetu" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Jūsu augšuplādējamie faili pārsniedz servera pieļaujamo failu augšupielādes apjomu" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Faili šobrīd tiek caurskatīti, nedaudz jāpagaida." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Šobrīd tiek pārbaudīti" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index 8f4cc2911f8..399b82e06fc 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 8ef8b7d5060..03dc8d418c3 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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Palīdzība" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personīgi" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Iestatījumi" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Lietotāji" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Ielogošanās kļūme" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 6bac98259c8..796d46f705e 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "Grupa jau eksistē" msgid "Unable to add group" msgstr "Nevar pievienot grupu" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Nevar ieslēgt aplikāciju." @@ -43,14 +43,6 @@ msgstr "Epasts tika saglabāts" msgid "Invalid email" msgstr "Nepareizs epasts" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID nomainīts" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Nepareizs vaicājums" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Nevar izdzēst grupu" @@ -67,6 +59,10 @@ msgstr "Nevar izdzēst lietotāju" msgid "Language changed" msgstr "Valoda tika nomainīta" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Nepareizs vaicājums" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index b0d8f36bed3..737869b743e 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -180,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Palīdzība" diff --git a/l10n/lv/user_webdavauth.po b/l10n/lv/user_webdavauth.po index c2af7da931a..6d3874a0c53 100644 --- a/l10n/lv/user_webdavauth.po +++ b/l10n/lv/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/mk/core.po b/l10n/mk/core.po index 6fd1d14dd61..2442222918c 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 12:49+0000\n" -"Last-Translator: Georgi Stanojevski <glisha@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,55 +86,55 @@ msgstr "Грешка при бришење на %s од омилени." msgid "Settings" msgstr "Поставки" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "пред 1 час" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "пред {hours} часови" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "денеска" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "вчера" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "минатиот месец" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "пред {months} месеци" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "пред месеци" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "минатата година" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "пред години" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "Не е специфициран типот на објект." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Грешка" @@ -177,7 +177,7 @@ msgstr "Името на апликацијата не е специфицира msgid "The required file {file} is not installed!" msgstr "Задолжителната датотека {file} не е инсталирана!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -205,12 +205,11 @@ msgstr "Сподели со" msgid "Share with link" msgstr "Сподели со врска" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Заштити со лозинка" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Лозинка" @@ -274,23 +273,23 @@ msgstr "избриши" msgid "share" msgstr "сподели" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Е-порака пратена" @@ -315,7 +314,7 @@ msgid "Request failed!" msgstr "Барањето не успеа!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Корисничко име" @@ -529,36 +528,32 @@ msgstr "веб сервиси под Ваша контрола" msgid "Log out" msgstr "Одјава" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Одбиена автоматска најава!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Ако не сте ја промениле лозинката во скоро време, вашата сметка може да е компромитирана" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Ве молам сменете ја лозинката да ја обезбедите вашата сметка повторно." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Ја заборавивте лозинката?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "запамти" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Најава" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Одјавени сте." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "претходно" @@ -567,16 +562,7 @@ msgstr "претходно" msgid "next" msgstr "следно" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Безбедносно предупредување." - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Ве молам потврдете ја вашата лозинка. <br />Од безбедносни причини од време на време може да биде побарано да ја внесете вашата лозинка повторно." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Потврди" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 778f65fd741..5c3bf733238 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 12:18+0000\n" -"Last-Translator: Georgi Stanojevski <glisha@gmail.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,46 +20,72 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Ниту еден фајл не се вчита. Непозната грешка" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Нема грешка, датотеката беше подигната успешно" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Подигнатата датотеката ја надминува MAX_FILE_SIZE директивата која беше поставена во HTML формата" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Не беше подигната датотека" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Не постои привремена папка" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Датотеки" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Не споделувај" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Избриши" @@ -67,122 +93,134 @@ msgstr "Избриши" msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "замени" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "предложи име" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "откажи" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "земенета {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "врати" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "заменета {new_name} со {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "без споделување {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "избришани {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Се генерира ZIP фајлот, ќе треба извесно време." -#: js/files.js:209 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти" -#: js/files.js:209 +#: js/files.js:224 msgid "Upload Error" msgstr "Грешка при преземање" -#: js/files.js:226 +#: js/files.js:241 msgid "Close" msgstr "Затвои" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Чека" -#: js/files.js:265 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} датотеки се подигаат" -#: js/files.js:340 js/files.js:373 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:442 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/files.js:512 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Неправилно име на папка. Користењето на „Shared“ е резервирано за Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Адресата неможе да биде празна." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:693 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} датотеки скенирани" -#: js/files.js:701 +#: js/files.js:735 msgid "error while scanning" msgstr "грешка при скенирање" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Име" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Големина" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Променето" -#: js/files.js:803 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:805 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:813 +#: js/files.js:839 msgid "1 file" msgstr "1 датотека" -#: js/files.js:815 +#: js/files.js:841 msgid "{count} files" msgstr "{count} датотеки" @@ -194,27 +232,27 @@ msgstr "Ракување со датотеки" msgid "Maximum upload size" msgstr "Максимална големина за подигање" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "макс. можно:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Потребно за симнување повеќе-датотеки и папки." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Овозможи ZIP симнување " -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 е неограничено" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Максимална големина за внес на ZIP датотеки" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Сними" @@ -234,36 +272,36 @@ msgstr "Папка" msgid "From link" msgstr "Од врска" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Подигни" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Тука нема ништо. Снимете нешто!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Преземи" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Датотеката е премногу голема" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Се скенираат датотеки, ве молам почекајте." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Моментално скенирам" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index bbe751713aa..3f4e68131e3 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 13:19+0000\n" -"Last-Translator: Georgi Stanojevski <glisha@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Истечи ги сите верзии" - #: js/versions.js:16 msgid "History" msgstr "Историја" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Версии" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Ова ќе ги избрише сите постоечки резервни копии од вашите датотеки" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Верзии на датотеки" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index a315a725a96..ada37660729 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/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: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 13:04+0000\n" -"Last-Translator: Georgi Stanojevski <glisha@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Помош" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Лично" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Параметри" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Корисници" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Аппликации" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Админ" -#: files.php:366 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Преземање во ZIP е исклучено" -#: files.php:367 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Датотеките треба да се симнат една по една." -#: files.php:367 files.php:392 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Назад кон датотеки" -#: files.php:391 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Избраните датотеки се преголеми за да се генерира zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Апликацијата не е овозможена" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Грешка во автентикација" @@ -82,55 +86,55 @@ msgstr "Текст" msgid "Images" msgstr "Слики" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "пред секунди" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "пред 1 минута" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "пред %d минути" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "пред 1 час" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "пред %d часови" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "денеска" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "вчера" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "пред %d денови" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "минатиот месец" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "пред %d месеци" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "минатата година" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "пред години" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 0f4d756335e..4a9325a5666 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "Групата веќе постои" msgid "Unable to add group" msgstr "Неможе да додадам група" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Неможе да овозможам апликација." @@ -44,14 +44,6 @@ msgstr "Електронската пошта е снимена" msgid "Invalid email" msgstr "Неисправна електронска пошта" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID сменето" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "неправилно барање" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Неможе да избришам група" @@ -68,6 +60,10 @@ msgstr "Неможам да избришам корисник" msgid "Language changed" msgstr "Јазикот е сменет" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "неправилно барање" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Администраторите неможе да се избришат себеси од админ групата" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 3b3498bce1c..c80a334455b 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" -"PO-Revision-Date: 2012-12-28 09:25+0000\n" -"Last-Translator: Georgi Stanojevski <glisha@gmail.com>\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -115,10 +119,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -181,4 +193,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Помош" diff --git a/l10n/mk/user_webdavauth.po b/l10n/mk/user_webdavauth.po index 20fbb4d7b33..19b5d3df58e 100644 --- a/l10n/mk/user_webdavauth.po +++ b/l10n/mk/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: 2012-12-29 00:07+0100\n" -"PO-Revision-Date: 2012-12-28 09:21+0000\n" -"Last-Translator: Georgi Stanojevski <glisha@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,13 +18,17 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/ms_MY/core.po b/l10n/ms_MY/core.po index 8c3a71a0205..d3e6303e112 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -86,55 +86,55 @@ msgstr "" msgid "Settings" msgstr "Tetapan" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Ralat" @@ -177,7 +177,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -205,12 +205,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Kata laluan" @@ -274,23 +273,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -314,8 +313,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nama pengguna" @@ -404,44 +403,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "buat <strong>akaun admin</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Maju" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Fail data" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfigurasi pangkalan data" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Setup selesai" @@ -529,36 +528,32 @@ msgstr "Perkhidmatan web di bawah kawalan anda" msgid "Log out" msgstr "Log keluar" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Hilang kata laluan?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "ingat" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Log masuk" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Anda telah log keluar." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelum" @@ -567,16 +562,7 @@ msgstr "sebelum" msgid "next" msgstr "seterus" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 02844fd34d3..5ae3ad9c1a6 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,72 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat, fail berjaya dimuat naik." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fail yang dimuat naik melebihi MAX_FILE_SIZE yang dinyatakan dalam form HTML " -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Sebahagian daripada fail telah dimuat naik. " -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Tiada fail yang dimuat naik" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Folder sementara hilang" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "fail" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Padam" @@ -68,122 +94,134 @@ msgstr "Padam" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ganti" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "Batal" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "sedang menghasilkan fail ZIP, mungkin mengambil sedikit masa." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Muat naik ralat" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Tutup" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Dalam proses" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nama " -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Saiz" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -195,27 +233,27 @@ msgstr "Pengendalian fail" msgid "Maximum upload size" msgstr "Saiz maksimum muat naik" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maksimum:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Diperlukan untuk muatturun fail pelbagai " -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Aktifkan muatturun ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 adalah tanpa had" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Saiz maksimum input untuk fail ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Simpan" @@ -235,36 +273,36 @@ msgstr "Folder" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Muat naik" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Muat turun" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Muat naik terlalu besar" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index 46f3f7ed90f..389afec231e 100644 --- a/l10n/ms_MY/files_versions.po +++ b/l10n/ms_MY/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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 57990c29b6b..5365e602ba1 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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" -msgstr "" +msgstr "Bantuan" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Peribadi" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Tetapan" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Pengguna" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Ralat pengesahan" @@ -81,55 +85,55 @@ msgstr "Teks" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 444196b7ee8..72694ffcb9c 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -45,14 +45,6 @@ msgstr "Emel disimpan" msgid "Invalid email" msgstr "Emel tidak sah" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID diubah" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Permintaan tidak sah" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -69,6 +61,10 @@ msgstr "" msgid "Language changed" msgstr "Bahasa diubah" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Permintaan tidak sah" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 4509f10da64..3c7e352259a 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -180,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Bantuan" diff --git a/l10n/ms_MY/user_webdavauth.po b/l10n/ms_MY/user_webdavauth.po index 2974263352c..8e8f74d0a70 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/nb_NO/core.po b/l10n/nb_NO/core.po index df292b0cea6..6a652e8cea5 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 16:28+0000\n" -"Last-Translator: espenbye <espenbye@me.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,55 +90,55 @@ msgstr "" msgid "Settings" msgstr "Innstillinger" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "i dag" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "i går" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "forrige måned" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "måneder siden" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "forrige år" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "år siden" @@ -214,7 +214,6 @@ msgid "Password protect" msgstr "Passordbeskyttet" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Passord" @@ -559,10 +558,6 @@ msgstr "husk" msgid "Log in" msgstr "Logg inn" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Du er logget ut" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "forrige" @@ -571,16 +566,7 @@ msgstr "forrige" msgid "next" msgstr "neste" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Sikkerhetsadvarsel!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Verifiser" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 58b1183863d..d6d18d6614c 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 17:25+0000\n" -"Last-Translator: espenbye <espenbye@me.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,46 +26,72 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Ingen filer ble lastet opp. Ukjent feil." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Det er ingen feil. Filen ble lastet opp." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Filstørrelsen overskrider maksgrensen på MAX_FILE_SIZE som ble oppgitt i HTML-skjemaet" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Filopplastningen ble bare delvis gjennomført" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ingen fil ble lastet opp" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Avslutt deling" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Slett" @@ -73,122 +99,134 @@ msgstr "Slett" msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "erstatt" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "erstatt {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "angre" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "erstatt {new_name} med {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "slettet {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "opprettet ZIP-fil, dette kan ta litt tid" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Opplasting feilet" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Lukk" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ventende" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} filer laster opp" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL-en kan ikke være tom." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:699 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} filer lest inn" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "feil under skanning" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Navn" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Størrelse" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Endret" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -200,27 +238,27 @@ msgstr "Filhåndtering" msgid "Maximum upload size" msgstr "Maksimum opplastingsstørrelse" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. mulige:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Nødvendig for å laste ned mapper og mer enn én fil om gangen." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Aktiver nedlasting av ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 er ubegrenset" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimal størrelse på ZIP-filer" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Lagre" @@ -240,36 +278,36 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Last opp" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Last ned" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Opplasting for stor" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Skanner etter filer, vennligst vent." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index bd8d0fed59e..38f8fbe36fe 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-31 00:01+0100\n" -"PO-Revision-Date: 2012-10-30 12:48+0000\n" -"Last-Translator: hdalgrav <hdalgrav@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,10 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "Historie" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versjoner" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Dette vil slette alle tidligere versjoner av alle filene dine" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Fil versjonering" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index abaf9fc0847..4de87004856 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 17:26+0000\n" -"Last-Translator: espenbye <espenbye@me.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,27 +22,27 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Hjelp" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Personlig" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Innstillinger" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Brukere" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Apper" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Admin" @@ -62,11 +62,15 @@ msgstr "Tilbake til filer" msgid "Selected files too large to generate zip file." msgstr "De valgte filene er for store til å kunne generere ZIP-fil" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Applikasjon er ikke påslått" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Autentiseringsfeil" @@ -86,55 +90,55 @@ msgstr "Tekst" msgid "Images" msgstr "Bilder" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekunder siden" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minutt siden" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minutter siden" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 time siden" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d timer siden" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "i dag" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "i går" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d dager siden" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "forrige måned" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d måneder siden" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "i fjor" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "år siden" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 36c3224748b..90871dc3820 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -37,7 +37,7 @@ msgstr "Gruppen finnes allerede" msgid "Unable to add group" msgstr "Kan ikke legge til gruppe" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Kan ikke aktivere app." @@ -49,14 +49,6 @@ msgstr "Epost lagret" msgid "Invalid email" msgstr "Ugyldig epost" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID endret" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ugyldig forespørsel" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Kan ikke slette gruppe" @@ -73,6 +65,10 @@ msgstr "Kan ikke slette bruker" msgid "Language changed" msgstr "Språk endret" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ugyldig forespørsel" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index b415afa31aa..b7660396ac4 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -115,10 +119,18 @@ msgstr "Port" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" diff --git a/l10n/nb_NO/user_webdavauth.po b/l10n/nb_NO/user_webdavauth.po index 9d7d3571927..915d27dae8f 100644 --- a/l10n/nb_NO/user_webdavauth.po +++ b/l10n/nb_NO/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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 16:42+0000\n" -"Last-Translator: espenbye <espenbye@me.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,13 +18,17 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/nl/core.po b/l10n/nl/core.po index 322c4e3bbf4..bc83b48cd57 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot <meneer@tken.net>, 2012. +# André Koot <meneer@tken.net>, 2012-2013. # <bart.formosus@gmail.com>, 2011. # <didi.debian@cknow.org>, 2012. # Erik Bent <hj.bent.60@gmail.com>, 2012. @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 17:28+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -97,55 +97,55 @@ msgstr "Verwijderen %s van favorieten is mislukt." msgid "Settings" msgstr "Instellingen" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "vandaag" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "gisteren" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "vorige maand" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "vorig jaar" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "jaar geleden" @@ -221,7 +221,6 @@ msgid "Password protect" msgstr "Wachtwoord beveiliging" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Wachtwoord" @@ -566,10 +565,6 @@ msgstr "onthoud gegevens" msgid "Log in" msgstr "Meld je aan" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "U bent afgemeld." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "vorige" @@ -578,16 +573,7 @@ msgstr "vorige" msgid "next" msgstr "volgende" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Beveiligingswaarschuwing!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Verifieer uw wachtwoord!<br/>Om veiligheidsredenen wordt u regelmatig gevraagd uw wachtwoord in te geven." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Verifieer" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Updaten ownCloud naar versie %s, dit kan even duren." diff --git a/l10n/nl/files.po b/l10n/nl/files.po index bb78a69078c..69d52caaea3 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot <meneer@tken.net>, 2012. +# André Koot <meneer@tken.net>, 2012-2013. # <bart.formosus@gmail.com>, 2011. # <bartv@thisnet.nl>, 2011. # <didi.debian@cknow.org>, 2012. @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 09:15+0000\n" -"Last-Translator: Len <lenny@weijl.org>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 09:54+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\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" @@ -28,46 +28,72 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Kon %s niet verplaatsen" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Kan bestand niet hernoemen" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Er was geen bestand geladen. Onbekende fout" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Geen fout opgetreden, bestand successvol geupload." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is opgegeven in de HTML-formulier" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is slechts gedeeltelijk geupload" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Geen bestand geüpload" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Een tijdelijke map mist" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Niet genoeg ruimte beschikbaar" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Ongeldige directory." + #: appinfo/app.php:10 msgid "Files" msgstr "Bestanden" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Stop delen" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Verwijder" @@ -75,122 +101,134 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "vervang" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "verving {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "delen gestopt {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "verwijderde {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' is een ongeldige bestandsnaam." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Bestandsnaam kan niet leeg zijn." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: js/files.js:183 +#: js/files.js:187 msgid "generating ZIP-file, it may take some time." msgstr "aanmaken ZIP-file, dit kan enige tijd duren." -#: js/files.js:218 +#: js/files.js:225 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes" -#: js/files.js:218 +#: js/files.js:225 msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:235 +#: js/files.js:242 msgid "Close" msgstr "Sluit" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:261 js/files.js:377 js/files.js:410 msgid "Pending" msgstr "Wachten" -#: js/files.js:274 +#: js/files.js:281 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:284 js/files.js:339 js/files.js:354 msgid "{count} files uploading" msgstr "{count} bestanden aan het uploaden" -#: js/files.js:349 js/files.js:382 +#: js/files.js:358 js/files.js:394 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:451 +#: js/files.js:465 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Folder naam niet toegestaan. Het gebruik van \"Shared\" is aan Owncloud voorbehouden" +#: js/files.js:538 +msgid "URL cannot be empty." +msgstr "URL kan niet leeg zijn." + +#: js/files.js:544 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" -#: js/files.js:704 +#: js/files.js:728 msgid "{count} files scanned" msgstr "{count} bestanden gescanned" -#: js/files.js:712 +#: js/files.js:736 msgid "error while scanning" msgstr "Fout tijdens het scannen" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:809 templates/index.php:64 msgid "Name" msgstr "Naam" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:810 templates/index.php:75 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:811 templates/index.php:77 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:814 +#: js/files.js:830 msgid "1 folder" msgstr "1 map" -#: js/files.js:816 +#: js/files.js:832 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:824 +#: js/files.js:840 msgid "1 file" msgstr "1 bestand" -#: js/files.js:826 +#: js/files.js:842 msgid "{count} files" msgstr "{count} bestanden" @@ -202,27 +240,27 @@ msgstr "Bestand" msgid "Maximum upload size" msgstr "Maximale bestandsgrootte voor uploads" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. mogelijk: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Nodig voor meerdere bestanden en mappen downloads." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Zet ZIP-download aan" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 is ongelimiteerd" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximale grootte voor ZIP bestanden" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Opslaan" @@ -242,36 +280,36 @@ msgstr "Map" msgid "From link" msgstr "Vanaf link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Upload" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Download" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Bestanden te groot" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 0328e198c57..95169bacce0 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-28 00:01+0200\n" -"PO-Revision-Date: 2012-10-27 08:43+0000\n" -"Last-Translator: Richard Bos <radoeka@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Alle versies laten verlopen" - #: js/versions.js:16 msgid "History" msgstr "Geschiedenis" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versies" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Dit zal alle bestaande backup versies van uw bestanden verwijderen" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Bestand versies" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index f8ebea3c492..298231219b9 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-17 00:01+0100\n" -"PO-Revision-Date: 2012-11-16 05:45+0000\n" -"Last-Translator: Len <lenny@weijl.org>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,55 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Help" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Persoonlijk" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Instellingen" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Gebruikers" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Apps" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Beheerder" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Terug naar bestanden" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "De applicatie is niet actief" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Authenticatie fout" @@ -84,55 +88,55 @@ msgstr "Tekst" msgid "Images" msgstr "Afbeeldingen" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "seconden geleden" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minuut geleden" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minuten geleden" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 uur geleden" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d uren geleden" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "vandaag" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "gisteren" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d dagen geleden" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "vorige maand" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d maanden geleden" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "vorig jaar" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 1828079d894..792081672ed 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot <meneer@tken.net>, 2012. +# André Koot <meneer@tken.net>, 2012-2013. # <bart.formosus@gmail.com>, 2011. # <bramdv@me.com>, 2012. # <didi.debian@cknow.org>, 2012. @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,7 @@ msgstr "Groep bestaat al" msgid "Unable to add group" msgstr "Niet in staat om groep toe te voegen" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Kan de app. niet activeren" @@ -52,14 +52,6 @@ msgstr "E-mail bewaard" msgid "Invalid email" msgstr "Ongeldige e-mail" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID is aangepast" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ongeldig verzoek" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Niet in staat om groep te verwijderen" @@ -76,6 +68,10 @@ msgstr "Niet in staat om gebruiker te verwijderen" msgid "Language changed" msgstr "Taal aangepast" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ongeldig verzoek" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Admins kunnen zichzelf niet uit de admin groep verwijderen" @@ -255,11 +251,11 @@ msgstr "Creëer" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Default opslag" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Ongelimiteerd" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -271,11 +267,11 @@ msgstr "Groep beheerder" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Opslag" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Default" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 840adfacc66..41b46e70ec4 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot <meneer@tken.net>, 2012. +# André Koot <meneer@tken.net>, 2012-2013. +# <bart.formosus@gmail.com>, 2013. # <lenny@weijl.org>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 17:25+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 15:38+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -28,9 +29,9 @@ msgstr "<b>Waarschuwing:</b> De Apps user_ldap en user_webdavauth zijn incompati #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Waarschuwing:</b> De PHP LDAP module is niet geïnstalleerd, de backend zal dus niet werken. Vraag uw beheerder de module te installeren." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "<b>Waarschuwing:</b> De PHP LDAP module is niet geïnstalleerd, het backend zal niet werken. Vraag uw systeembeheerder om de module te installeren." #: templates/settings.php:15 msgid "Host" @@ -43,15 +44,19 @@ msgstr "Je kunt het protocol weglaten, tenzij je SSL vereist. Start in dat geval #: templates/settings.php:16 msgid "Base DN" -msgstr "Basis DN" +msgstr "Base DN" + +#: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "Een Base DN per regel" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Je kunt het standaard DN voor gebruikers en groepen specificeren in het tab Geavanceerd." +msgstr "Je kunt het Base DN voor gebruikers en groepen specificeren in het tab Geavanceerd." #: templates/settings.php:17 msgid "User DN" -msgstr "Gebruikers DN" +msgstr "User DN" #: templates/settings.php:17 msgid "" @@ -116,10 +121,18 @@ msgstr "Poort" msgid "Base User Tree" msgstr "Basis Gebruikers Structuur" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "Een User Base DN per regel" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Basis Groupen Structuur" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "Een Group Base DN per regel" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Groepslid associatie" diff --git a/l10n/nl/user_webdavauth.po b/l10n/nl/user_webdavauth.po index 81dd911eef5..8606d6f3164 100644 --- a/l10n/nl/user_webdavauth.po +++ b/l10n/nl/user_webdavauth.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot <meneer@tken.net>, 2012. +# André Koot <meneer@tken.net>, 2012-2013. # Richard Bos <radoeka@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 17:23+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 09:56+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -19,13 +19,17 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "WebDAV authenticatie" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloud zal de inloggegevens naar deze URL als geïnterpreteerde http 401 en http 403 als de inloggegevens onjuist zijn. Andere codes als de inloggegevens correct zijn." +"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 "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." diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index dad899207ea..2bec4e1cdc3 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -85,55 +85,55 @@ msgstr "" msgid "Settings" msgstr "Innstillingar" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Feil" @@ -176,7 +176,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -204,12 +204,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Passord" @@ -273,23 +272,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -313,8 +312,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Brukarnamn" @@ -403,44 +402,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Lag ein <strong>admin-konto</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "vil bli nytta" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Databasebrukar" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Databasenamn" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Databasetenar" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Fullfør oppsettet" @@ -528,36 +527,32 @@ msgstr "Vev tjenester under din kontroll" msgid "Log out" msgstr "Logg ut" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Gløymt passordet?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "hugs" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Logg inn" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Du er logga ut." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "førre" @@ -566,16 +561,7 @@ msgstr "førre" msgid "next" msgstr "neste" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 4fb42612d82..28e98a9cd57 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,72 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Slett" @@ -66,122 +92,134 @@ msgstr "Slett" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Lukk" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Namn" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Storleik" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Endra" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -193,27 +231,27 @@ msgstr "" msgid "Maximum upload size" msgstr "Maksimal opplastingsstorleik" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Lagre" @@ -233,36 +271,36 @@ msgstr "Mappe" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Last opp" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Last ned" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "For stor opplasting" -#: templates/index.php:105 +#: templates/index.php:104 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 større enn maksgrensa til denne tenaren." -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po index 4e0539875ac..3d20ded946a 100644 --- a/l10n/nn_NO/files_versions.po +++ b/l10n/nn_NO/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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index ee2fd61fe02..5d33fc1e808 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Hjelp" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personleg" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Innstillingar" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Brukarar" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Feil i autentisering" @@ -81,55 +85,55 @@ msgstr "Tekst" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index d2de08d4a18..3eb12c318ad 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -43,14 +43,6 @@ msgstr "E-postadresse lagra" msgid "Invalid email" msgstr "Ugyldig e-postadresse" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID endra" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ugyldig førespurnad" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -67,6 +59,10 @@ msgstr "" msgid "Language changed" msgstr "Språk endra" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ugyldig førespurnad" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 7f064cb1e25..0046c6c622c 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -180,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Hjelp" diff --git a/l10n/nn_NO/user_webdavauth.po b/l10n/nn_NO/user_webdavauth.po index 0c942635476..42c4c7ed976 100644 --- a/l10n/nn_NO/user_webdavauth.po +++ b/l10n/nn_NO/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/oc/core.po b/l10n/oc/core.po index 696e6808a5d..17e293699e2 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "Configuracion" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "uèi" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ièr" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "mes passat" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "meses a" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "an passat" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "ans a" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Error" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Error al partejar" @@ -203,12 +203,11 @@ msgstr "Parteja amb" msgid "Share with link" msgstr "Parteja amb lo ligam" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Parat per senhal" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Senhal" @@ -272,23 +271,23 @@ msgstr "escafa" msgid "share" msgstr "parteja" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +311,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nom d'usancièr" @@ -402,44 +401,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Crea un <strong>compte admin</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Dorsièr de donadas" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configura la basa de donadas" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "serà utilizat" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usancièr de la basa de donadas" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Òste de basa de donadas" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Configuracion acabada" @@ -527,36 +526,32 @@ msgstr "Services web jos ton contraròtle" msgid "Log out" msgstr "Sortida" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "L'as perdut lo senhal ?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "bremba-te" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Dintrada" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Sias pas dintra (t/ada)" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "dariièr" @@ -565,16 +560,7 @@ msgstr "dariièr" msgid "next" msgstr "venent" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index a433382c7ce..63681ee8348 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,72 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fichièrs" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Non parteja" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Escafa" @@ -65,122 +91,134 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "remplaça" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "nom prepausat" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "anulla" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "defar" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Fichièr ZIP a se far, aquò pòt trigar un briu." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet." -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Error d'amontcargar" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Al esperar" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "error pendant l'exploracion" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Talha" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -192,27 +230,27 @@ msgstr "Manejament de fichièr" msgid "Maximum upload size" msgstr "Talha maximum d'amontcargament" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. possible: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Requesit per avalcargar gropat de fichièrs e dorsièr" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Activa l'avalcargament de ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 es pas limitat" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Talha maximum de dintrada per fichièrs ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Enregistra" @@ -232,36 +270,36 @@ msgstr "Dorsièr" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Amontcarga" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Amontcargament tròp gròs" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/oc/files_versions.po b/l10n/oc/files_versions.po index 8ea27eb3243..e8848887184 100644 --- a/l10n/oc/files_versions.po +++ b/l10n/oc/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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 150704cd235..7a056315f6d 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ajuda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Configuracion" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Usancièrs" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Apps" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Avalcargar los ZIP es inactiu." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Los fichièrs devan èsser avalcargats un per un." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Torna cap als fichièrs" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Error d'autentificacion" @@ -82,55 +86,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "segonda a" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minuta a" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minutas a" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "uèi" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ièr" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d jorns a" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "mes passat" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "an passat" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "ans a" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 36b489b83a8..df76be9ca67 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "Lo grop existís ja" msgid "Unable to add group" msgstr "Pas capable d'apondre un grop" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Pòt pas activar app. " @@ -42,14 +42,6 @@ msgstr "Corrièl enregistrat" msgid "Invalid email" msgstr "Corrièl incorrècte" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID cambiat" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Demanda invalida" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Pas capable d'escafar un grop" @@ -66,6 +58,10 @@ msgstr "Pas capable d'escafar un usancièr" msgid "Language changed" msgstr "Lengas cambiadas" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Demanda invalida" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 29bd7864d7e..f3e7f309794 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -180,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Ajuda" diff --git a/l10n/oc/user_webdavauth.po b/l10n/oc/user_webdavauth.po index 5d411e9dab1..03cdef79eb0 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/pl/core.po b/l10n/pl/core.po index 494afd04759..4e0e383e612 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012. +# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012-2013. # Kamil Domański <kdomanski@kdemail.net>, 2011. # <koalamis0@gmail.com>, 2012. # Marcin Małecki <gerber@tkdami.net>, 2011, 2012. @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 09:39+0000\n" -"Last-Translator: emc <mplichta@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,55 +93,55 @@ msgstr "Błąd usunięcia %s z ulubionych." msgid "Settings" msgstr "Ustawienia" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minute temu" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 godzine temu" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "dziś" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "ostani miesiąc" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "ostatni rok" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "lat temu" @@ -171,8 +171,8 @@ msgid "The object type is not specified." msgstr "Typ obiektu nie jest określony." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Błąd" @@ -184,7 +184,7 @@ msgstr "Nazwa aplikacji nie jest określona." msgid "The required file {file} is not installed!" msgstr "Żądany plik {file} nie jest zainstalowany!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -212,12 +212,11 @@ msgstr "Współdziel z" msgid "Share with link" msgstr "Współdziel z link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Zabezpieczone hasłem" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Hasło" @@ -281,23 +280,23 @@ msgstr "usuń" msgid "share" msgstr "współdziel" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Błąd niszczenie daty wygaśnięcia" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Wyślij Email" @@ -322,7 +321,7 @@ msgid "Request failed!" msgstr "Próba nieudana!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Nazwa użytkownika" @@ -536,36 +535,32 @@ msgstr "usługi internetowe pod kontrolą" msgid "Log out" msgstr "Wylogowuje użytkownika" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatyczne logowanie odrzucone!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Jeśli nie było zmianie niedawno hasło, Twoje konto może być zagrożone!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Proszę zmienić swoje hasło, aby zabezpieczyć swoje konto ponownie." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Nie pamiętasz hasła?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "Zapamiętanie" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Zaloguj" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Wylogowano użytkownika." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "wstecz" @@ -574,16 +569,7 @@ msgstr "wstecz" msgid "next" msgstr "naprzód" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Ostrzeżenie o zabezpieczeniach!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Sprawdź swoje hasło.<br/>Ze względów bezpieczeństwa możesz zostać czasami poproszony o wprowadzenie hasła ponownie." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Zweryfikowane" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Aktualizowanie ownCloud do wersji %s, może to potrwać chwilę." diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 8c9563a58e4..1d4c605b737 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -3,8 +3,9 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <bbartlomiej@gmail.com>, 2013. # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012. +# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012-2013. # Marcin Małecki <gerber@tkdami.net>, 2011-2012. # <mosslar@gmail.com>, 2011. # <mplichta@gmail.com>, 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 10:15+0000\n" -"Last-Translator: Thomasso <tomekde@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 08:30+0000\n" +"Last-Translator: bbartlomiej <bbartlomiej@gmail.com>\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" @@ -24,46 +25,72 @@ 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/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "Nie można było przenieść %s - Plik o takiej nazwie już istnieje" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Nie można było przenieść %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Nie można zmienić nazwy pliku" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Plik nie został załadowany. Nieznany błąd" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Przesłano plik" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: " -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Rozmiar przesłanego pliku przekracza maksymalną wartość dyrektywy upload_max_filesize, zawartą formularzu HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Plik przesłano tylko częściowo" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nie przesłano żadnego pliku" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Brak katalogu tymczasowego" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Za mało miejsca" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Zła ścieżka." + #: appinfo/app.php:10 msgid "Files" msgstr "Pliki" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nie udostępniaj" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Usuwa element" @@ -71,122 +98,134 @@ msgstr "Usuwa element" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "zastap" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "zasugeruj nazwę" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "zastąpiony {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "wróć" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiony {new_name} z {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Udostępniane wstrzymane {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "usunięto {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' jest nieprawidłową nazwą pliku." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Nazwa pliku nie może być pusta." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Niepoprawna nazwa, Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*'są niedozwolone." -#: js/files.js:183 +#: js/files.js:187 msgid "generating ZIP-file, it may take some time." msgstr "Generowanie pliku ZIP, może potrwać pewien czas." -#: js/files.js:218 +#: js/files.js:225 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów" -#: js/files.js:218 +#: js/files.js:225 msgid "Upload Error" msgstr "Błąd wczytywania" -#: js/files.js:235 +#: js/files.js:242 msgid "Close" msgstr "Zamknij" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:261 js/files.js:377 js/files.js:410 msgid "Pending" msgstr "Oczekujące" -#: js/files.js:274 +#: js/files.js:281 msgid "1 file uploading" msgstr "1 plik wczytany" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:284 js/files.js:339 js/files.js:354 msgid "{count} files uploading" msgstr "{count} przesyłanie plików" -#: js/files.js:349 js/files.js:382 +#: js/files.js:358 js/files.js:394 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:451 +#: js/files.js:465 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Błędna nazwa folderu. Nazwa \"Shared\" jest zarezerwowana dla Owncloud" +#: js/files.js:538 +msgid "URL cannot be empty." +msgstr "URL nie może być pusty." + +#: js/files.js:544 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Nazwa folderu nieprawidłowa. Wykorzystanie \"Shared\" jest zarezerwowane przez Owncloud" -#: js/files.js:704 +#: js/files.js:728 msgid "{count} files scanned" msgstr "{count} pliki skanowane" -#: js/files.js:712 +#: js/files.js:736 msgid "error while scanning" msgstr "Wystąpił błąd podczas skanowania" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:809 templates/index.php:64 msgid "Name" msgstr "Nazwa" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:810 templates/index.php:75 msgid "Size" msgstr "Rozmiar" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:811 templates/index.php:77 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:814 +#: js/files.js:830 msgid "1 folder" msgstr "1 folder" -#: js/files.js:816 +#: js/files.js:832 msgid "{count} folders" msgstr "{count} foldery" -#: js/files.js:824 +#: js/files.js:840 msgid "1 file" msgstr "1 plik" -#: js/files.js:826 +#: js/files.js:842 msgid "{count} files" msgstr "{count} pliki" @@ -198,27 +237,27 @@ msgstr "Zarządzanie plikami" msgid "Maximum upload size" msgstr "Maksymalny rozmiar wysyłanego pliku" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. możliwych" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Wymagany do pobierania wielu plików i folderów" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Włącz pobieranie ZIP-paczki" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 jest nielimitowane" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksymalna wielkość pliku wejściowego ZIP " -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Zapisz" @@ -238,36 +277,36 @@ msgstr "Katalog" msgid "From link" msgstr "Z linku" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Prześlij" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Przestań wysyłać" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Brak zawartości. Proszę wysłać pliki!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Pobiera element" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Wysyłany plik ma za duży rozmiar" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index adfdc97439a..a2020d78f2d 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 10:42+0000\n" -"Last-Translator: emc <mplichta@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,10 @@ 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" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Wygasają wszystkie wersje" - #: js/versions.js:16 msgid "History" msgstr "Historia" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Wersje" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Wersjonowanie plików" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 0cebd731831..5d59857b1b6 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-28 00:10+0100\n" -"PO-Revision-Date: 2012-11-27 08:54+0000\n" -"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,55 @@ 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" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Pomoc" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Osobiste" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ustawienia" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Użytkownicy" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplikacje" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administrator" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Pobieranie ZIP jest wyłączone." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Pliki muszą zostać pobrane pojedynczo." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Wróć do plików" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplikacja nie jest włączona" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Błąd uwierzytelniania" @@ -84,55 +88,55 @@ msgstr "Połączenie tekstowe" msgid "Images" msgstr "Obrazy" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekund temu" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minutę temu" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minut temu" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 godzine temu" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d godzin temu" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "dzisiaj" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "wczoraj" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d dni temu" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "ostatni miesiąc" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d miesiecy temu" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "ostatni rok" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 50ee10108d8..8482ae800e6 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012. +# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012-2013. # <icewind1991@gmail.com>, 2012. # Kamil Domański <kdomanski@kdemail.net>, 2011. # Marcin Małecki <gerber@tkdami.net>, 2011, 2012. @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "Grupa już istnieje" msgid "Unable to add group" msgstr "Nie można dodać grupy" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Nie można włączyć aplikacji." @@ -51,14 +51,6 @@ msgstr "Email zapisany" msgid "Invalid email" msgstr "Niepoprawny email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "Zmieniono OpenID" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Nieprawidłowe żądanie" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Nie można usunąć grupy" @@ -75,6 +67,10 @@ msgstr "Nie można usunąć użytkownika" msgid "Language changed" msgstr "Język zmieniony" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Nieprawidłowe żądanie" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administratorzy nie mogą usunąć się sami z grupy administratorów." @@ -127,27 +123,27 @@ msgstr "<span class=\"licence\"></span>-licencjonowane przez <span class=\"autho #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "Dokumentacja użytkownika" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "Dokumentacja Administratora" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "Dokumentacja Online" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "Forum" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Zgłaszanie błędów" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Wsparcie komercyjne" #: templates/personal.php:8 #, php-format @@ -160,15 +156,15 @@ msgstr "Klienci" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Pobierz klienta dla Komputera" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Pobierz klienta dla Androida" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Pobierz klienta dla iOS" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -220,15 +216,15 @@ msgstr "Pomóż w tłumaczeniu" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Wersja" #: templates/personal.php:65 msgid "" @@ -254,11 +250,11 @@ msgstr "Utwórz" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Domyślny magazyn" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Bez limitu" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -270,11 +266,11 @@ msgstr "Grupa Admin" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Magazyn" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Domyślny" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 25b35d770df..cd8904acc25 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 18:12+0000\n" -"Last-Translator: Marcin Małecki <gerber@tkdami.net>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,9 +29,9 @@ msgstr "<b>Ostrzeżenie:</b> Aplikacje user_ldap i user_webdavauth nie są komp #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Ostrzeżenie:</b> Moduł PHP LDAP nie jest zainstalowany i nie będzie działał. Poproś administratora o włączenie go." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -47,6 +47,10 @@ msgid "Base DN" msgstr "Baza DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Bazę DN można określić dla użytkowników i grup w karcie Zaawansowane" @@ -117,10 +121,18 @@ msgstr "Port" msgid "Base User Tree" msgstr "Drzewo bazy użytkowników" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Drzewo bazy grup" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Członek grupy stowarzyszenia" diff --git a/l10n/pl/user_webdavauth.po b/l10n/pl/user_webdavauth.po index f745f1f1320..44e963a5a43 100644 --- a/l10n/pl/user_webdavauth.po +++ b/l10n/pl/user_webdavauth.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <bbartlomiej@gmail.com>, 2013. # Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012. # Marcin Małecki <gerber@tkdami.net>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 11:39+0000\n" -"Last-Translator: Marcin Małecki <gerber@tkdami.net>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 08:54+0000\n" +"Last-Translator: bbartlomiej <bbartlomiej@gmail.com>\n" "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,13 +20,17 @@ 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" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "Uwierzytelnienie WebDAV" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -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 "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." diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index fece08d3db8..d5e325117d9 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -83,55 +83,55 @@ msgstr "" msgid "Settings" msgstr "Ustawienia" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -161,8 +161,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -174,7 +174,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -202,12 +202,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "" @@ -271,23 +270,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -311,8 +310,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nazwa użytkownika" @@ -401,44 +400,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -526,36 +525,32 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" @@ -564,16 +559,7 @@ msgstr "" msgid "next" msgstr "" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 2e1909d5c9f..4c12f2aa8c2 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,72 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -64,122 +90,134 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -191,27 +229,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Zapisz" @@ -231,36 +269,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po index 40053b76ef7..38bf131e3e4 100644 --- a/l10n/pl_PL/files_versions.po +++ b/l10n/pl_PL/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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po index 3ce2989bb99..af7e0260b91 100644 --- a/l10n/pl_PL/lib.po +++ b/l10n/pl_PL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ustawienia" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index 6a6ddb24fbd..5689bcb950d 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/pl_PL/user_ldap.po b/l10n/pl_PL/user_ldap.po index de4bd2f3523..36eb526f464 100644 --- a/l10n/pl_PL/user_ldap.po +++ b/l10n/pl_PL/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" diff --git a/l10n/pl_PL/user_webdavauth.po b/l10n/pl_PL/user_webdavauth.po index 77261b85639..2ffe7523c4d 100644 --- a/l10n/pl_PL/user_webdavauth.po +++ b/l10n/pl_PL/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/pt_BR/core.po b/l10n/pt_BR/core.po index 3930ee56234..da3de9ac4c4 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -93,55 +93,55 @@ msgstr "Erro ao remover %s dos favoritos." msgid "Settings" msgstr "Configurações" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hoje" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ontem" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "último mês" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "meses atrás" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "último ano" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "anos atrás" @@ -171,8 +171,8 @@ msgid "The object type is not specified." msgstr "O tipo de objeto não foi especificado." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Erro" @@ -184,7 +184,7 @@ msgstr "O nome do app não foi especificado." msgid "The required file {file} is not installed!" msgstr "O arquivo {file} necessário não está instalado!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -212,12 +212,11 @@ msgstr "Compartilhar com" msgid "Share with link" msgstr "Compartilhar com link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Proteger com senha" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Senha" @@ -281,23 +280,23 @@ msgstr "remover" msgid "share" msgstr "compartilhar" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -321,8 +320,8 @@ msgstr "Email de redefinição de senha enviado." msgid "Request failed!" msgstr "A requisição falhou!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nome de Usuário" @@ -411,44 +410,44 @@ msgstr "Seu diretório de dados e seus arquivos estão, provavelmente, acessíve msgid "Create an <strong>admin account</strong>" msgstr "Criar uma <strong>conta</strong> de <strong>administrador</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurar o banco de dados" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "será usado" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usuário de banco de dados" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Espaço de tabela do banco de dados" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Banco de dados do host" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Concluir configuração" @@ -536,36 +535,32 @@ msgstr "web services sob seu controle" msgid "Log out" msgstr "Sair" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Entrada Automática no Sistema Rejeitada!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Por favor troque sua senha para tornar sua conta segura novamente." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Esqueçeu sua senha?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "lembrete" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Log in" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Você está desconectado." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" @@ -574,16 +569,7 @@ msgstr "anterior" msgid "next" msgstr "próximo" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Aviso de Segurança!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Por favor, verifique a sua senha.<br />Por motivos de segurança, você deverá ser solicitado a muda-la ocasionalmente." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Verificar" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 91ecfae55f0..105d7c96385 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-01 23:23+0000\n" -"Last-Translator: FredMaranhao <fred.maranhao@gmail.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,46 +25,72 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Nenhum arquivo foi transferido. Erro desconhecido" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Não houve nenhum erro, o arquivo foi transferido com sucesso" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: " -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulário HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi transferido parcialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nenhum arquivo foi transferido" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Arquivos" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Descompartilhar" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Excluir" @@ -72,122 +98,134 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substituir" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerir nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "substituído {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desfazer" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} não compartilhados" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} apagados" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "gerando arquivo ZIP, isso pode levar um tempo." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes." -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Erro de envio" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Fechar" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendente" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Enviando {count} arquivos" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome de pasta inválido. O nome \"Shared\" é reservado pelo Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL não pode ficar em branco" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} arquivos scaneados" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "erro durante verificação" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamanho" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} arquivos" @@ -199,27 +237,27 @@ msgstr "Tratamento de Arquivo" msgid "Maximum upload size" msgstr "Tamanho máximo para carregar" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. possível:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necessário para multiplos arquivos e diretório de downloads." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Habilitar ZIP-download" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 para ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Tamanho máximo para arquivo ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salvar" @@ -239,36 +277,36 @@ msgstr "Pasta" msgid "From link" msgstr "Do link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Carregar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Baixar" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Arquivo muito grande" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index f310a86a675..63442db0efe 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 15:33+0000\n" -"Last-Translator: sedir <philippi.sedir@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,10 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Expirar todas as versões" - #: js/versions.js:16 msgid "History" msgstr "Histórico" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versões" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Isso removerá todas as versões de backup existentes dos seus arquivos" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionamento de Arquivos" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index a42adb315bc..f1a550574ba 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 18:47+0000\n" -"Last-Translator: Schopfer <glauber.guimaraes@poli.ufrj.br>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,55 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ajuda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Pessoal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ajustes" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Usuários" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplicações" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Download ZIP está desligado." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Arquivos precisam ser baixados um de cada vez." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Voltar para Arquivos" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Arquivos selecionados são muito grandes para gerar arquivo zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplicação não está habilitada" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Erro de autenticação" @@ -84,55 +88,55 @@ msgstr "Texto" msgid "Images" msgstr "Imagens" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "segundos atrás" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minuto atrás" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minutos atrás" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 hora atrás" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d horas atrás" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hoje" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ontem" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d dias atrás" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "último mês" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d meses atrás" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "último ano" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 912c636340a..9d7a2512d56 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "Grupo já existe" msgid "Unable to add group" msgstr "Não foi possivel adicionar grupo" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Não pôde habilitar aplicação" @@ -50,14 +50,6 @@ msgstr "Email gravado" msgid "Invalid email" msgstr "Email inválido" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "Mudou OpenID" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Pedido inválido" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Não foi possivel remover grupo" @@ -74,6 +66,10 @@ msgstr "Não foi possivel remover usuário" msgid "Language changed" msgstr "Mudou Idioma" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Pedido inválido" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Admins não podem se remover do grupo admin" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index fdd9c02d90a..7596db8ad37 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "DN Base" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Você pode especificar DN Base para usuários e grupos na guia Avançada" @@ -115,10 +119,18 @@ msgstr "Porta" msgid "Base User Tree" msgstr "Árvore de Usuário Base" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Árvore de Grupo Base" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Associação Grupo-Membro" diff --git a/l10n/pt_BR/user_webdavauth.po b/l10n/pt_BR/user_webdavauth.po index febd61f9ee5..db7d62a36b8 100644 --- a/l10n/pt_BR/user_webdavauth.po +++ b/l10n/pt_BR/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,17 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/pt_PT/core.po b/l10n/pt_PT/core.po index 92daefee097..8cf1dad2efb 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <daniel@mouxy.net>, 2012. +# <daniel@mouxy.net>, 2012-2013. # Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. # <helder.meneses@gmail.com>, 2011, 2012. # Helder Meneses <helder.meneses@gmail.com>, 2012. @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 01:27+0000\n" -"Last-Translator: Mouxy <daniel@mouxy.net>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,55 +89,55 @@ msgstr "Erro a remover %s dos favoritos." msgid "Settings" msgstr "Definições" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "Falta 1 minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Há 1 hora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hoje" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ontem" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "ultímo mês" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "meses atrás" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "ano passado" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "anos atrás" @@ -167,8 +167,8 @@ msgid "The object type is not specified." msgstr "O tipo de objecto não foi especificado" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Erro" @@ -180,7 +180,7 @@ msgstr "O nome da aplicação não foi especificado" msgid "The required file {file} is not installed!" msgstr "O ficheiro necessário {file} não está instalado!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -208,12 +208,11 @@ msgstr "Partilhar com" msgid "Share with link" msgstr "Partilhar com link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Proteger com palavra-passe" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Palavra chave" @@ -277,23 +276,23 @@ msgstr "apagar" msgid "share" msgstr "partilhar" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "E-mail enviado com sucesso!" @@ -318,7 +317,7 @@ msgid "Request failed!" msgstr "O pedido falhou!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Utilizador" @@ -532,36 +531,32 @@ msgstr "serviços web sob o seu controlo" msgid "Log out" msgstr "Sair" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Login automático rejeitado!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se não mudou a sua palavra-passe recentemente, a sua conta pode ter sido comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Por favor mude a sua palavra-passe para assegurar a sua conta de novo." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Esqueceu a sua password?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "lembrar" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Estás desconetado." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" @@ -570,16 +565,7 @@ msgstr "anterior" msgid "next" msgstr "seguinte" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Aviso de Segurança!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Por favor verifique a sua palavra-passe. <br/>Por razões de segurança, pode ser-lhe perguntada, ocasionalmente, a sua palavra-passe de novo." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Verificar" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "A Actualizar o ownCloud para a versão %s, esta operação pode demorar." diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 8628e63a4de..74b9f45b855 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <daniel@mouxy.net>, 2012. +# <daniel@mouxy.net>, 2012-2013. # Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. # <geral@ricardolameiro.pt>, 2012. # Helder Meneses <helder.meneses@gmail.com>, 2012. @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 00:41+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-09 23:21+0000\n" "Last-Translator: Mouxy <daniel@mouxy.net>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -22,46 +22,72 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Não foi possível move o ficheiro %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Não foi possível renomear o ficheiro" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Sem erro, ficheiro enviado com sucesso" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede o diretivo MAX_FILE_SIZE especificado no formulário HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado só foi enviado parcialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Não foi enviado nenhum ficheiro" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Falta uma pasta temporária" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Espaço em disco insuficiente!" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Directório Inválido" + #: appinfo/app.php:10 msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Apagar" @@ -69,122 +95,134 @@ msgstr "Apagar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substituir" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "Sugira um nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} substituido" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desfazer" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} não partilhado(s)" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} eliminado(s)" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' não é um nome de ficheiro válido!" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "O nome do ficheiro não pode estar vazio." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "a gerar o ficheiro ZIP, poderá demorar algum tempo." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Erro no envio" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Fechar" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendente" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "A carregar {count} ficheiros" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "O envio foi cancelado." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome de pasta inválido! O uso de \"Shared\" (Partilhado) está reservado pelo OwnCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "O URL não pode estar vazio." + +#: js/files.js:543 +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:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ficheiros analisados" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "erro ao analisar" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamanho" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ficheiros" @@ -196,27 +234,27 @@ msgstr "Manuseamento de ficheiros" msgid "Maximum upload size" msgstr "Tamanho máximo de envio" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. possivel: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necessário para descarregamento múltiplo de ficheiros e pastas" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Permitir descarregar em ficheiro ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 é ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Tamanho máximo para ficheiros ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Guardar" @@ -236,36 +274,36 @@ msgstr "Pasta" msgid "From link" msgstr "Da ligação" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Enviar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Transferir" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Envio muito grande" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que está a tentar enviar excedem o tamanho máximo de envio permitido neste servidor." -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index 0a78dc0df95..596deab4396 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-01 02:04+0200\n" -"PO-Revision-Date: 2012-09-30 22:21+0000\n" -"Last-Translator: Duarte Velez Grilo <duartegrilo@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Expirar todas as versões" - #: js/versions.js:16 msgid "History" msgstr "Histórico" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versões" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Isto irá apagar todas as versões de backup do seus ficheiros" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionamento de Ficheiros" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index fe66807cc3a..b9d558cbb40 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <daniel@mouxy.net>, 2012. +# <daniel@mouxy.net>, 2012-2013. # Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-17 00:01+0100\n" -"PO-Revision-Date: 2012-11-16 00:33+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 00:47+0000\n" "Last-Translator: Mouxy <daniel@mouxy.net>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -19,51 +19,55 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ajuda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Pessoal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Configurações" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Utilizadores" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplicações" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Descarregamento em ZIP está desligado." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros precisam de ser descarregados um por um." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Voltar a Ficheiros" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "Não foi possível determinar" + #: json.php:28 msgid "Application is not enabled" msgstr "A aplicação não está activada" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Erro na autenticação" @@ -83,55 +87,55 @@ msgstr "Texto" msgid "Images" msgstr "Imagens" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "há alguns segundos" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "há 1 minuto" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "há %d minutos" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Há 1 horas" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Há %d horas" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hoje" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ontem" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "há %d dias" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "mês passado" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Há %d meses atrás" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "ano passado" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "há anos" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 3018d56bd26..3d663773c5f 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -4,7 +4,7 @@ # # Translators: # <daniel@mouxy.net>, 2012. -# Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. +# Duarte Velez Grilo <duartegrilo@gmail.com>, 2012-2013. # <geral@ricardolameiro.pt>, 2012. # Helder Meneses <helder.meneses@gmail.com>, 2012. # <rjgpp.1994@gmail.com>, 2012. @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "O grupo já existe" msgid "Unable to add group" msgstr "Impossível acrescentar o grupo" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Não foi possível activar a app." @@ -46,14 +46,6 @@ msgstr "Email guardado" msgid "Invalid email" msgstr "Email inválido" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID alterado" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Pedido inválido" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Impossível apagar grupo" @@ -70,6 +62,10 @@ msgstr "Impossível apagar utilizador" msgid "Language changed" msgstr "Idioma alterado" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Pedido inválido" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Os administradores não se podem remover a eles mesmos do grupo admin." @@ -249,11 +245,11 @@ msgstr "Criar" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Armazenamento Padrão" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Ilimitado" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -265,11 +261,11 @@ msgstr "Grupo Administrador" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Armazenamento" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Padrão" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 2ecb6bd3751..734a694ccec 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <daniel@mouxy.net>, 2012. +# <daniel@mouxy.net>, 2012-2013. # Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. # Helder Meneses <helder.meneses@gmail.com>, 2012. # Nelson Rosado <nelsontrosado@gmail.com>, 2012. @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 01:25+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 00:52+0000\n" "Last-Translator: Mouxy <daniel@mouxy.net>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -30,9 +30,9 @@ msgstr "<b>Aviso:</b> A aplicação user_ldap e user_webdavauth são incompative #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Aviso:</b> O módulo PHP LDAP necessário não está instalado, o backend não irá funcionar. Peça ao seu administrador para o instalar." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "<b>Aviso:</b> O módulo PHP LDAP não está instalado, logo não irá funcionar. Por favor peça ao administrador para o instalar." #: templates/settings.php:15 msgid "Host" @@ -48,6 +48,10 @@ msgid "Base DN" msgstr "DN base" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "Uma base DN por linho" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Pode especificar o ND Base para utilizadores e grupos no separador Avançado" @@ -118,10 +122,18 @@ msgstr "Porto" msgid "Base User Tree" msgstr "Base da árvore de utilizadores." +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "Uma base de utilizador DN por linha" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Base da árvore de grupos." +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "Uma base de grupo DN por linha" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Associar utilizador ao grupo." diff --git a/l10n/pt_PT/user_webdavauth.po b/l10n/pt_PT/user_webdavauth.po index f34c1b223df..6f6d78b3df7 100644 --- a/l10n/pt_PT/user_webdavauth.po +++ b/l10n/pt_PT/user_webdavauth.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <daniel@mouxy.net>, 2012. +# <daniel@mouxy.net>, 2012-2013. # Helder Meneses <helder.meneses@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-20 23:46+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 00:54+0000\n" "Last-Translator: Mouxy <daniel@mouxy.net>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -19,13 +19,17 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "Autenticação WebDAV" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "O ownCloud vai enviar as credenciais para este URL. Todos os códigos http 401 e 403 serão interpretados como credenciais inválidas, todos os restantes códigos http serão interpretados como credenciais correctas." +"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 "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." diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 1596bc408e3..b4fb56151ad 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 00:19+0000\n" -"Last-Translator: laurentiucristescu <laur.cristescu@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,55 +88,55 @@ msgstr "" msgid "Settings" msgstr "Configurări" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "astăzi" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ieri" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "ultima lună" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "ultimul an" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "ani în urmă" @@ -212,7 +212,6 @@ msgid "Password protect" msgstr "Protejare cu parolă" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Parola" @@ -557,10 +556,6 @@ msgstr "amintește" msgid "Log in" msgstr "Autentificare" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Ai ieșit" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedentul" @@ -569,16 +564,7 @@ msgstr "precedentul" msgid "next" msgstr "următorul" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Advertisment de Securitate" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Te rog verifica parola. <br/>Pentru securitate va poate fi cerut ocazional introducerea parolei din nou" - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Verifica" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index d61dc617703..aa43c76dc5d 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Claudiu <claudiu@tanaselia.ro>, 2011, 2012. +# Claudiu <claudiu@tanaselia.ro>, 2011-2013. # Dimon Pockemon <>, 2012. # Eugen Mihalache <eugemjj@gmail.com>, 2012. -# <g.ciprian@osn.ro>, 2012. +# <g.ciprian@osn.ro>, 2012-2013. # <laur.cristescu@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 00:09+0000\n" -"Last-Translator: laurentiucristescu <laur.cristescu@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 13:23+0000\n" +"Last-Translator: Claudiu <claudiu@tanaselia.ro>\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" @@ -22,46 +22,72 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Nu s-a putut muta %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Nu s-a putut redenumi fișierul" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Nici un fișier nu a fost încărcat. Eroare necunoscută" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Nicio eroare, fișierul a fost încărcat cu succes" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: " -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Niciun fișier încărcat" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Lipsește un dosar temporar" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Eroare la scriere pe disc" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Nu este suficient spațiu disponibil" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Director invalid." + #: appinfo/app.php:10 msgid "Files" msgstr "Fișiere" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Anulează partajarea" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Șterge" @@ -69,122 +95,134 @@ msgstr "Șterge" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} deja exista" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "înlocuire" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerează nume" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "anulare" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "inlocuit {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "nedistribuit {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "Sterse {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' este un nume invalid de fișier." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Numele fișierului nu poate rămâne gol." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise." -#: js/files.js:174 +#: js/files.js:187 msgid "generating ZIP-file, it may take some time." msgstr "se generază fișierul ZIP, va dura ceva timp." -#: js/files.js:212 +#: js/files.js:225 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes." -#: js/files.js:212 +#: js/files.js:225 msgid "Upload Error" msgstr "Eroare la încărcare" -#: js/files.js:229 +#: js/files.js:242 msgid "Close" msgstr "Închide" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:261 js/files.js:377 js/files.js:410 msgid "Pending" msgstr "În așteptare" -#: js/files.js:268 +#: js/files.js:281 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:284 js/files.js:339 js/files.js:354 msgid "{count} files uploading" msgstr "{count} fisiere incarcate" -#: js/files.js:343 js/files.js:376 +#: js/files.js:358 js/files.js:394 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/files.js:445 +#: js/files.js:465 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nume de folder invalid. Numele este rezervat pentru OwnCloud" +#: js/files.js:538 +msgid "URL cannot be empty." +msgstr "Adresa URL nu poate fi goală." -#: js/files.js:699 +#: js/files.js:544 +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:728 msgid "{count} files scanned" msgstr "{count} fisiere scanate" -#: js/files.js:707 +#: js/files.js:736 msgid "error while scanning" msgstr "eroare la scanarea" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:809 templates/index.php:64 msgid "Name" msgstr "Nume" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:810 templates/index.php:75 msgid "Size" msgstr "Dimensiune" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:811 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:801 +#: js/files.js:830 msgid "1 folder" msgstr "1 folder" -#: js/files.js:803 +#: js/files.js:832 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:811 +#: js/files.js:840 msgid "1 file" msgstr "1 fisier" -#: js/files.js:813 +#: js/files.js:842 msgid "{count} files" msgstr "{count} fisiere" @@ -196,27 +234,27 @@ msgstr "Manipulare fișiere" msgid "Maximum upload size" msgstr "Dimensiune maximă admisă la încărcare" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. posibil:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necesar pentru descărcarea mai multor fișiere și a dosarelor" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Activează descărcare fișiere compresate" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 e nelimitat" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Dimensiunea maximă de intrare pentru fișiere compresate" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salvare" @@ -236,36 +274,36 @@ msgstr "Dosar" msgid "From link" msgstr "de la adresa" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Încarcă" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descarcă" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, te rog așteptă." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index d3058eb6ed2..28514d6ddd3 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 13:05+0000\n" -"Last-Translator: g.ciprian <g.ciprian@osn.ro>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Expiră toate versiunile" - #: js/versions.js:16 msgid "History" msgstr "Istoric" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versiuni" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Această acțiune va șterge toate versiunile salvate ale fișierelor tale" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionare fișiere" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 3cfb1c4c4a0..cbfb8c3bfd4 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" -"PO-Revision-Date: 2012-12-26 05:14+0000\n" -"Last-Translator: laurentiucristescu <laur.cristescu@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,27 +19,27 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Ajutor" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Personal" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Setări" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Utilizatori" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Aplicații" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Admin" @@ -59,11 +59,15 @@ msgstr "Înapoi la fișiere" msgid "Selected files too large to generate zip file." msgstr "Fișierele selectate sunt prea mari pentru a genera un fișier zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplicația nu este activată" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Eroare la autentificare" @@ -83,55 +87,55 @@ msgstr "Text" msgid "Images" msgstr "Imagini" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "secunde în urmă" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minut în urmă" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minute în urmă" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Acum o ora" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d ore in urma" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "astăzi" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ieri" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d zile în urmă" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "ultima lună" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d luni in urma" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "ultimul an" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 1d2ba8f01d2..280c113895e 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -6,15 +6,15 @@ # Claudiu <claudiu@tanaselia.ro>, 2011, 2012. # Dimon Pockemon <>, 2012. # Eugen Mihalache <eugemjj@gmail.com>, 2012. -# <g.ciprian@osn.ro>, 2012. +# <g.ciprian@osn.ro>, 2012-2013. # <icewind1991@gmail.com>, 2012. # <iuranemo@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "Grupul există deja" msgid "Unable to add group" msgstr "Nu s-a putut adăuga grupul" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Nu s-a putut activa aplicația." @@ -47,14 +47,6 @@ msgstr "E-mail salvat" msgid "Invalid email" msgstr "E-mail nevalid" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID schimbat" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Cerere eronată" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Nu s-a putut șterge grupul" @@ -71,6 +63,10 @@ msgstr "Nu s-a putut șterge utilizatorul" msgid "Language changed" msgstr "Limba a fost schimbată" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Cerere eronată" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" @@ -107,7 +103,7 @@ msgstr "Adaugă aplicația ta" #: templates/apps.php:11 msgid "More Apps" -msgstr "" +msgstr "Mai multe aplicații" #: templates/apps.php:27 msgid "Select an App" @@ -123,27 +119,27 @@ msgstr "<span class=\"licence\"></span>-licențiat <span class=\"author\"></span #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "Documentație utilizator" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "Documentație administrator" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "Documentație online" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "Forum" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Urmărire bug-uri" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Suport comercial" #: templates/personal.php:8 #, php-format @@ -156,15 +152,15 @@ msgstr "Clienți" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Descarcă client desktop" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Descarcă client Android" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Descarcă client iOS" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -216,7 +212,7 @@ msgstr "Ajută la traducere" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" @@ -224,7 +220,7 @@ msgstr "" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Versiunea" #: templates/personal.php:65 msgid "" @@ -250,11 +246,11 @@ msgstr "Crează" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Stocare implicită" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Nelimitată" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -266,11 +262,11 @@ msgstr "Grupul Admin " #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Stocare" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Implicită" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 171e91b27d4..41e4eebb9f3 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" -"PO-Revision-Date: 2012-12-26 05:09+0000\n" -"Last-Translator: laurentiucristescu <laur.cristescu@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:19+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,9 +29,9 @@ msgstr "<b>Atentie:</b> Apps user_ldap si user_webdavauth sunt incompatibile. Es #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Atentie:</b Modulul PHP LDAP care este necesar nu este instalat. Va rugam intrebati administratorul de sistem instalarea acestuia" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -47,6 +47,10 @@ msgid "Base DN" msgstr "DN de bază" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Puteți să specificați DN de bază pentru utilizatori și grupuri în fila Avansat" @@ -117,10 +121,18 @@ msgstr "Portul" msgid "Base User Tree" msgstr "Arborele de bază al Utilizatorilor" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Arborele de bază al Grupurilor" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Asocierea Grup-Membru" diff --git a/l10n/ro/user_webdavauth.po b/l10n/ro/user_webdavauth.po index 7c83e127d1c..fdbba4b6f80 100644 --- a/l10n/ro/user_webdavauth.po +++ b/l10n/ro/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: 2012-12-27 00:04+0100\n" -"PO-Revision-Date: 2012-12-26 05:17+0000\n" -"Last-Translator: laurentiucristescu <laur.cristescu@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,13 +18,17 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "owncloud va trimite acreditatile de utilizator pentru a interpreta aceasta pagina. Http 401 si Http 403 are acreditarile si orice alt cod gresite ca acreditarile corecte" +"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/ru/core.po b/l10n/ru/core.po index 6d05bc9e9dd..2bbb44f36f8 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -8,6 +8,7 @@ # <k0ldbl00d@gmail.com>, 2012. # Mihail Vasiliev <mickvav@gmail.com>, 2012. # <semen@sam002.net>, 2012. +# <sharov3@gmail.com>, 2013. # <skoptev@ukr.net>, 2012. # <tony.mccourin@gmail.com>, 2011. # Victor Bravo <>, 2012. @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 18:19+0000\n" -"Last-Translator: sam002 <semen@sam002.net>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,55 +93,55 @@ msgstr "Ошибка удаления %s из избранного" msgid "Settings" msgstr "Настройки" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "сегодня" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "вчера" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "в прошлом году" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "несколько лет назад" @@ -170,8 +171,8 @@ msgid "The object type is not specified." msgstr "Тип объекта не указан" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Ошибка" @@ -183,7 +184,7 @@ msgstr "Имя приложения не указано" msgid "The required file {file} is not installed!" msgstr "Необходимый файл {file} не установлен!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -211,12 +212,11 @@ msgstr "Поделиться с" msgid "Share with link" msgstr "Поделиться с ссылкой" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Пароль" @@ -280,23 +280,23 @@ msgstr "удалить" msgid "share" msgstr "открыть доступ" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Письмо отправлено" @@ -320,8 +320,8 @@ msgstr "Отправка письма с информацией для сбро msgid "Request failed!" msgstr "Запрос не удался!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Имя пользователя" @@ -410,44 +410,44 @@ msgstr "Ваши каталоги данных и файлы, вероятно, msgid "Create an <strong>admin account</strong>" msgstr "Создать <strong>учётную запись администратора</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Дополнительно" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Директория с данными" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Настройка базы данных" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "будет использовано" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Имя пользователя для базы данных" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Пароль для базы данных" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Название базы данных" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Табличое пространство базы данных" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Хост базы данных" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Завершить установку" @@ -535,36 +535,32 @@ msgstr "Сетевые службы под твоим контролем" msgid "Log out" msgstr "Выйти" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Автоматический вход в систему отключен!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Если Вы недавно не меняли свой пароль, то Ваша учетная запись может быть скомпрометирована!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Пожалуйста, смените пароль, чтобы обезопасить свою учетную запись." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "запомнить" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Войти" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Вы вышли." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "пред" @@ -573,16 +569,7 @@ msgstr "пред" msgid "next" msgstr "след" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Предупреждение безопасности!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Пожалуйста, проверьте свой пароль. <br/>По соображениям безопасности, Вам иногда придется вводить свой пароль снова." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Подтвердить" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Производится обновление ownCloud до версии %s. Это может занять некоторое время." diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 100c8901c66..aaa96b72d90 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -9,6 +9,7 @@ # <mpolr21@gmail.com>, 2012. # Nick Remeslennikov <homolibere@gmail.com>, 2012. # <semen@sam002.net>, 2012. +# <sharov3@gmail.com>, 2013. # <skoptev@ukr.net>, 2012. # <tony.mccourin@gmail.com>, 2011. # Victor Bravo <>, 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 15:47+0000\n" -"Last-Translator: sam002 <semen@sam002.net>\n" +"POT-Creation-Date: 2013-01-13 00:08+0100\n" +"PO-Revision-Date: 2013-01-12 11:53+0000\n" +"Last-Translator: adol <sharov3@gmail.com>\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,46 +28,72 @@ 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/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "Невозможно переместить %s - файл с таким именем уже существует" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Невозможно переместить %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Невозможно переименовать файл" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Файл не был загружен. Неизвестная ошибка" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Файл успешно загружен" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл превышает размер установленный upload_max_filesize в php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Файл был загружен не полностью" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Невозможно найти временную папку" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Недостаточно свободного места" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Неправильный каталог." + #: appinfo/app.php:10 msgid "Files" msgstr "Файлы" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Отменить публикацию" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Удалить" @@ -74,122 +101,134 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "заменить" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "предложить название" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "отмена" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "заменено {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "отмена" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "заменено {new_name} на {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "не опубликованные {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "удаленные {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' - неправильное имя файла." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Имя файла не может быть пустым." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "создание ZIP-файла, это может занять некоторое время." -#: js/files.js:209 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не удается загрузить файл размером 0 байт в каталог" -#: js/files.js:209 +#: js/files.js:224 msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:226 +#: js/files.js:241 msgid "Close" msgstr "Закрыть" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ожидание" -#: js/files.js:265 +#: js/files.js:280 msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} файлов загружается" -#: js/files.js:340 js/files.js:373 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:442 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:512 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Не правильное имя папки. Имя \"Shared\" резервировано в Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Ссылка не может быть пустой." -#: js/files.js:693 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} файлов просканировано" -#: js/files.js:701 +#: js/files.js:735 msgid "error while scanning" msgstr "ошибка во время санирования" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Название" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Размер" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Изменён" -#: js/files.js:803 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:805 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:813 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:815 +#: js/files.js:841 msgid "{count} files" msgstr "{count} файлов" @@ -201,27 +240,27 @@ msgstr "Управление файлами" msgid "Maximum upload size" msgstr "Максимальный размер загружаемого файла" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "макс. возможно: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Требуется для скачивания нескольких файлов и папок" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Включить ZIP-скачивание" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 - без ограничений" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Максимальный исходный размер для ZIP файлов" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Сохранить" @@ -241,36 +280,36 @@ msgstr "Папка" msgid "From link" msgstr "Из ссылки" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Загрузить" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Скачать" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Файл слишком большой" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файлы, которые Вы пытаетесь загрузить, превышают лимит для файлов на этом сервере." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Подождите, файлы сканируются." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index bb622c0e095..e25aa41375a 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-20 02:02+0200\n" -"PO-Revision-Date: 2012-10-19 13:09+0000\n" -"Last-Translator: skoptev <skoptev@ukr.net>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,22 +20,10 @@ 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" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Просрочить все версии" - #: js/versions.js:16 msgid "History" msgstr "История" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Версии" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Очистить список версий ваших файлов" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Версии файлов" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index a031a62f802..3426bc61722 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-22 00:01+0100\n" -"PO-Revision-Date: 2012-11-21 12:19+0000\n" -"Last-Translator: Mihail Vasiliev <mickvav@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,51 +22,55 @@ 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" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Помощь" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Личное" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Настройки" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Пользователи" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Приложения" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Назад к файлам" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики, чтобы создать zip файл." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Приложение не разрешено" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Ошибка аутентификации" @@ -86,55 +90,55 @@ msgstr "Текст" msgid "Images" msgstr "Изображения" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "менее минуты" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 минуту назад" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d минут назад" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "час назад" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d часов назад" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "сегодня" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "вчера" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d дней назад" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "в прошлом месяце" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d месяцев назад" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "в прошлом году" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "годы назад" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 81feddae6f4..e3155d76a8a 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -10,7 +10,7 @@ # Nick Remeslennikov <homolibere@gmail.com>, 2012. # <rasperepodvipodvert@gmail.com>, 2012. # <semen@sam002.net>, 2012. -# <sharov3@gmail.com>, 2012. +# <sharov3@gmail.com>, 2012-2013. # <skoptev@ukr.net>, 2012. # <tony.mccourin@gmail.com>, 2011. # Victor Bravo <>, 2012. @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-13 00:08+0100\n" +"PO-Revision-Date: 2013-01-12 11:55+0000\n" +"Last-Translator: adol <sharov3@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,7 +41,7 @@ msgstr "Группа уже существует" msgid "Unable to add group" msgstr "Невозможно добавить группу" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Не удалось включить приложение." @@ -53,14 +53,6 @@ msgstr "Email сохранен" msgid "Invalid email" msgstr "Неправильный Email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID изменён" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Неверный запрос" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Невозможно удалить группу" @@ -77,6 +69,10 @@ msgstr "Невозможно удалить пользователя" msgid "Language changed" msgstr "Язык изменён" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Неверный запрос" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Администратор не может удалить сам себя из группы admin" @@ -129,15 +125,15 @@ msgstr "<span class=\"licence\"></span> лицензия. Автор <span class #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "Пользовательская документация" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "Документация администратора" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "Online документация" #: templates/help.php:7 msgid "Forum" @@ -145,11 +141,11 @@ msgstr "Форум" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Bugtracker" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Коммерческая поддержка" #: templates/personal.php:8 #, php-format @@ -256,11 +252,11 @@ msgstr "Создать" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Хранилище по-умолчанию" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Неограниченно" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -272,11 +268,11 @@ msgstr "Группа Администраторы" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Хранилище" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "По-умолчанию" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 5ab21a67d52..383f6bb2909 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" -"PO-Revision-Date: 2012-12-15 01:57+0000\n" -"Last-Translator: sam002 <semen@sam002.net>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:19+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,9 +29,9 @@ msgstr "<b>Внимание:</b>Приложения user_ldap и user_webdavaut #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Внимание:</b> Необходимый PHP LDAP модуль не установлен, внутренний интерфейс не будет работать. Пожалуйста, обратитесь к системному администратору, чтобы установить его." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -47,6 +47,10 @@ msgid "Base DN" msgstr "Базовый DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Вы можете задать Base DN для пользователей и групп на вкладке \"Расширенное\"" @@ -117,10 +121,18 @@ msgstr "Порт" msgid "Base User Tree" msgstr "База пользовательского дерева" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "База группового дерева" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Ассоциация Группа-Участник" diff --git a/l10n/ru/user_webdavauth.po b/l10n/ru/user_webdavauth.po index 12e0350b328..709cb4a65dc 100644 --- a/l10n/ru/user_webdavauth.po +++ b/l10n/ru/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: 2012-12-27 00:04+0100\n" -"PO-Revision-Date: 2012-12-26 06:19+0000\n" -"Last-Translator: adol <sharov3@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +19,17 @@ 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" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/ru_RU/core.po b/l10n/ru_RU/core.po index c94ef7d516d..7ecd789d863 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 08:08+0000\n" -"Last-Translator: AnnaSch <cdewqazxsqwe@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,55 +84,55 @@ msgstr "Ошибка удаления %s из избранного." msgid "Settings" msgstr "Настройки" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "секунд назад" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr " 1 минуту назад" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{минуты} минут назад" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 час назад" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{часы} часов назад" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "сегодня" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "вчера" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{дни} дней назад" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{месяцы} месяцев назад" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "месяц назад" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "в прошлом году" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "лет назад" @@ -208,7 +208,6 @@ msgid "Password protect" msgstr "Защитить паролем" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Пароль" @@ -553,10 +552,6 @@ msgstr "запомнить" msgid "Log in" msgstr "Войти" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Вы вышли из системы." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "предыдущий" @@ -565,16 +560,7 @@ msgstr "предыдущий" msgid "next" msgstr "следующий" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Предупреждение системы безопасности!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Пожалуйста, проверьте свой пароль. <br/>По соображениям безопасности Вам может быть иногда предложено ввести пароль еще раз." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Проверить" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index acd6779fcd6..5c40bd57bd1 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 07:59+0000\n" -"Last-Translator: AnnaSch <cdewqazxsqwe@gmail.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,46 +19,72 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Файл не был загружен. Неизвестная ошибка" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ошибка отсутствует, файл загружен успешно." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Размер загружаемого файла превышает upload_max_filesize директиву в php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Размер загруженного" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Загружаемый файл был загружен частично" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Отсутствует временная папка" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Не удалось записать на диск" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Файлы" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Скрыть" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Удалить" @@ -66,122 +92,134 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{новое_имя} уже существует" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "отмена" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "подобрать название" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "отменить" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "заменено {новое_имя}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "отменить действие" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "заменено {новое_имя} с {старое_имя}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Cовместное использование прекращено {файлы}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "удалено {файлы}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Некорректное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не допустимы." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Создание ZIP-файла, это может занять некоторое время." -#: js/files.js:209 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией" -#: js/files.js:209 +#: js/files.js:224 msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:226 +#: js/files.js:241 msgid "Close" msgstr "Закрыть" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ожидающий решения" -#: js/files.js:265 +#: js/files.js:280 msgid "1 file uploading" msgstr "загрузка 1 файла" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{количество} загружено файлов" -#: js/files.js:340 js/files.js:373 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Загрузка отменена" -#: js/files.js:442 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена." -#: js/files.js:512 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Некорректное имя папки. Нименование \"Опубликовано\" зарезервировано ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL не должен быть пустым." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:693 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{количество} файлов отсканировано" -#: js/files.js:701 +#: js/files.js:735 msgid "error while scanning" msgstr "ошибка при сканировании" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Имя" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Размер" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Изменен" -#: js/files.js:803 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:805 +#: js/files.js:831 msgid "{count} folders" msgstr "{количество} папок" -#: js/files.js:813 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:815 +#: js/files.js:841 msgid "{count} files" msgstr "{количество} файлов" @@ -193,27 +231,27 @@ msgstr "Работа с файлами" msgid "Maximum upload size" msgstr "Максимальный размер загружаемого файла" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "Максимально возможный" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Необходимо для множественной загрузки." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Включение ZIP-загрузки" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 без ограничений" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Максимальный размер входящих ZIP-файлов " -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Сохранить" @@ -233,36 +271,36 @@ msgstr "Папка" msgid "From link" msgstr "По ссылке" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Загрузить " -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Загрузить" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Загрузка слишком велика" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Размер файлов, которые Вы пытаетесь загрузить, превышает максимально допустимый размер для загрузки на данный сервер." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Файлы сканируются, пожалуйста, подождите." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po index 241dfcc0e91..440d5bbecb0 100644 --- a/l10n/ru_RU/files_versions.po +++ b/l10n/ru_RU/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-17 00:01+0100\n" -"PO-Revision-Date: 2012-11-16 07:25+0000\n" -"Last-Translator: AnnaSch <cdewqazxsqwe@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Срок действия всех версий истекает" - #: js/versions.js:16 msgid "History" msgstr "История" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Версии" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Это приведет к удалению всех существующих версий резервной копии Ваших файлов" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Файлы управления версиями" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index 5ca45d27ad2..be65ac1f023 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-15 09:27+0000\n" -"Last-Translator: AnnaSch <cdewqazxsqwe@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Помощь" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Персональный" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Настройки" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Пользователи" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Приложения" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Админ" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Загрузка ZIP выключена." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены один за другим." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Обратно к файлам" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики для генерации zip-архива." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Приложение не запущено" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Ошибка аутентификации" @@ -82,55 +86,55 @@ msgstr "Текст" msgid "Images" msgstr "Изображения" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "секунд назад" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 минуту назад" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d минут назад" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 час назад" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d часов назад" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "сегодня" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "вчера" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d дней назад" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "в прошлом месяце" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d месяцев назад" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "в прошлом году" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "год назад" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 9d013ac07bb..bf961ac7a00 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "Группа уже существует" msgid "Unable to add group" msgstr "Невозможно добавить группу" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Не удалось запустить приложение" @@ -42,14 +42,6 @@ msgstr "Email сохранен" msgid "Invalid email" msgstr "Неверный email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID изменен" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Неверный запрос" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Невозможно удалить группу" @@ -66,6 +58,10 @@ msgstr "Невозможно удалить пользователя" msgid "Language changed" msgstr "Язык изменен" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Неверный запрос" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Администраторы не могут удалить сами себя из группы администраторов" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po index 4a514279ab3..ef2d84ebcb1 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/ru_RU/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 08:59+0000\n" -"Last-Translator: AnnaSch <cdewqazxsqwe@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,9 +27,9 @@ msgstr "<b>Предупреждение:</b> Приложения user_ldap и u #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Предупреждение:</b> Необходимый PHP LDAP-модуль не установлен, backend не будет работать. Пожалуйста, обратитесь к системному администратору, чтобы установить его." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "База DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Вы можете задать Base DN для пользователей и групп во вкладке «Дополнительно»" @@ -115,10 +119,18 @@ msgstr "Порт" msgid "Base User Tree" msgstr "Базовое дерево пользователей" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Базовое дерево групп" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Связь член-группа" diff --git a/l10n/ru_RU/user_webdavauth.po b/l10n/ru_RU/user_webdavauth.po index 5308dbe4c2d..a14bb9d28ed 100644 --- a/l10n/ru_RU/user_webdavauth.po +++ b/l10n/ru_RU/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: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 06:57+0000\n" -"Last-Translator: AnnaSch <cdewqazxsqwe@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +19,17 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." msgstr "" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 34d894bfea5..e0b4be93b4d 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -86,55 +86,55 @@ msgstr "" msgid "Settings" msgstr "සැකසුම්" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "අද" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "දෝෂයක්" @@ -177,7 +177,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -205,12 +205,11 @@ msgstr "බෙදාගන්න" msgid "Share with link" msgstr "යොමුවක් මඟින් බෙදාගන්න" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "මුර පදයකින් ආරක්ශාකරන්න" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "මුර පදය " @@ -274,23 +273,23 @@ msgstr "මකන්න" msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -314,8 +313,8 @@ msgstr "" msgid "Request failed!" msgstr "ඉල්ලීම අසාර්ථකයි!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "පරිශීලක නම" @@ -404,44 +403,44 @@ msgstr "ඔබගේ දත්ත ඩිරෙක්ටරිය හා ගො msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "දියුණු/උසස්" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "දත්ත ෆෝල්ඩරය" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "දත්ත සමුදාය හැඩගැසීම" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "භාවිතා වනු ඇත" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "දත්තගබඩා භාවිතාකරු" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "දත්තගබඩාවේ මුරපදය" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "දත්තගබඩා සේවාදායකයා" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" @@ -529,36 +528,32 @@ msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවා msgid "Log out" msgstr "නික්මීම" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "මුරපදය අමතකද?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "මතක තබාගන්න" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "ප්රවේශවන්න" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "ඔබ නික්මී ඇත." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "පෙර" @@ -567,16 +562,7 @@ msgstr "පෙර" msgid "next" msgstr "ඊළඟ" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 0f0bb6776b0..b905772406b 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,72 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "නිවැරදි ව ගොනුව උඩුගත කෙරිනි" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "කිසිදු ගොනවක් උඩුගත නොවිනි" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "තාවකාලික ෆොල්ඩරයක් සොයාගත නොහැක" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "තැටිගත කිරීම අසාර්ථකයි" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ගොනු" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "නොබෙදු" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "මකන්න" @@ -66,122 +92,134 @@ msgstr "මකන්න" msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ප්රතිස්ථාපනය කරන්න" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "නමක් යෝජනා කරන්න" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "අත් හරින්න" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "නිෂ්ප්රභ කරන්න" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ගොනුවක් සෑදෙමින් පවතී. කෙටි වේලාවක් ගත විය හැක" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "උඩුගත කිරීමේ දෝශයක්" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "වසන්න" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "යොමුව හිස් විය නොහැක" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "පරීක්ෂා කිරීමේදී දෝෂයක්" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "නම" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "ප්රමාණය" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -193,27 +231,27 @@ msgstr "ගොනු පරිහරණය" msgid "Maximum upload size" msgstr "උඩුගත කිරීමක උපරිම ප්රමාණය" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "හැකි උපරිමය:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "බහු-ගොනු හා ෆොල්ඩර බාගත කිරීමට අවශ්යයි" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-බාගත කිරීම් සක්රිය කරන්න" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 යනු සීමාවක් නැති බවය" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP ගොනු සඳහා දැමිය හැකි උපරිම විශාලතවය" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "සුරකින්න" @@ -233,36 +271,36 @@ msgstr "ෆෝල්ඩරය" msgid "From link" msgstr "යොමුවෙන්" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "උඩුගත කිරීම" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "බාගත කිරීම" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "උඩුගත කිරීම විශාල වැඩිය" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" diff --git a/l10n/si_LK/files_versions.po b/l10n/si_LK/files_versions.po index 1d5285a2554..65443ed184b 100644 --- a/l10n/si_LK/files_versions.po +++ b/l10n/si_LK/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-20 02:02+0200\n" -"PO-Revision-Date: 2012-10-19 10:27+0000\n" -"Last-Translator: Anushke Guneratne <anushke@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "සියලු අනුවාද අවලංගු කරන්න" - #: js/versions.js:16 msgid "History" msgstr "ඉතිහාසය" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "අනුවාද" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "මෙයින් ඔබගේ ගොනුවේ රක්ශිත කරනු ලැබු අනුවාද සියල්ල මකා දමනු ලැබේ" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "ගොනු අනුවාදයන්" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index f798fa5f24e..9fcdc0a05a4 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -19,51 +19,55 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "උදව්" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "පෞද්ගලික" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "සිටුවම්" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "පරිශීලකයන්" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "යෙදුම්" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "පරිපාලක" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP භාගත කිරීම් අක්රියයි" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "ගොනු එකින් එක භාගත යුතුයි" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "ගොනු වෙතට නැවත යන්න" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "තෝරාගත් ගොනු ZIP ගොනුවක් තැනීමට විශාල වැඩිය." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "යෙදුම සක්රිය කර නොමැත" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "සත්යාපනය කිරීමේ දෝශයක්" @@ -83,55 +87,55 @@ msgstr "පෙළ" msgid "Images" msgstr "අනු රූ" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d මිනිත්තුවන්ට පෙර" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "අද" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ඊයේ" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d දිනකට පෙර" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "පෙර මාසයේ" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index c6443f18bff..7997041c93c 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "කණ්ඩායම දැනටමත් තිබේ" msgid "Unable to add group" msgstr "කාණඩයක් එක් කළ නොහැකි විය" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "යෙදුම සක්රීය කළ නොහැකි විය." @@ -44,14 +44,6 @@ msgstr "වි-තැපෑල සුරකින ලදී" msgid "Invalid email" msgstr "අවලංගු වි-තැපෑල" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "විවෘත හැඳුනුම නැතහොත් OpenID වෙනස්විය." - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "අවලංගු අයදුම" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "කණ්ඩායම මැකීමට නොහැක" @@ -68,6 +60,10 @@ msgstr "පරිශීලකයා මැකීමට නොහැක" msgid "Language changed" msgstr "භාෂාව ාවනස් කිරීම" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "අවලංගු අයදුම" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index f44ac30b3ea..536c0438d76 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -115,10 +119,18 @@ msgstr "තොට" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" diff --git a/l10n/si_LK/user_webdavauth.po b/l10n/si_LK/user_webdavauth.po index b97c5beb1cc..a6141d359c9 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,17 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/sk_SK/core.po b/l10n/sk_SK/core.po index b2275856307..e11a2eda0fe 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -5,15 +5,16 @@ # Translators: # <intense.feel@gmail.com>, 2011, 2012. # <martin.babik@gmail.com>, 2012. +# <mehturt@gmail.com>, 2013. # Roman Priesol <roman@priesol.net>, 2012. # <zatroch.martin@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 15:24+0000\n" +"Last-Translator: mehturt <mehturt@gmail.com>\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" @@ -24,26 +25,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Používateľ %s zdieľa s Vami súbor" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Používateľ %s zdieľa s Vami adresár" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Používateľ %s zdieľa s Vami súbor \"%s\". Môžete si ho stiahnuť tu: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Používateľ %s zdieľa s Vami adresár \"%s\". Môžete si ho stiahnuť tu: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -87,55 +88,55 @@ msgstr "Chyba pri odstraňovaní %s z obľúbených položiek." msgid "Settings" msgstr "Nastavenia" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Pred 1 hodinou." -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "dnes" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "včera" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "minulý rok" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "pred rokmi" @@ -165,8 +166,8 @@ msgid "The object type is not specified." msgstr "Nešpecifikovaný typ objektu." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Chyba" @@ -178,7 +179,7 @@ msgstr "Nešpecifikované meno aplikácie." msgid "The required file {file} is not installed!" msgstr "Požadovaný súbor {file} nie je inštalovaný!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -206,22 +207,21 @@ msgstr "Zdieľať s" msgid "Share with link" msgstr "Zdieľať cez odkaz" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Chrániť heslom" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Heslo" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Odoslať odkaz osobe e-mailom" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Odoslať" #: js/share.js:177 msgid "Set expiration date" @@ -275,25 +275,25 @@ msgstr "zmazať" msgid "share" msgstr "zdieľať" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu vypršania platnosti" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu vypršania platnosti" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Odosielam ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Email odoslaný" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -315,8 +315,8 @@ msgstr "Obnovovací email bol odoslaný." msgid "Request failed!" msgstr "Požiadavka zlyhala!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Prihlasovacie meno" @@ -405,44 +405,44 @@ msgstr "Váš priečinok s dátami a Vaše súbory sú pravdepodobne dostupné z msgid "Create an <strong>admin account</strong>" msgstr "Vytvoriť <strong>administrátorský účet</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Pokročilé" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Priečinok dát" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Nastaviť databázu" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "bude použité" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Hostiteľ databázy" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Heslo databázy" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Meno databázy" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Tabuľkový priestor databázy" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Server databázy" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Dokončiť inštaláciu" @@ -530,36 +530,32 @@ msgstr "webové služby pod vašou kontrolou" msgid "Log out" msgstr "Odhlásiť" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatické prihlásenie bolo zamietnuté!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "V nedávnej dobe ste nezmenili svoje heslo, Váš účet môže byť kompromitovaný." -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Prosím, zmeňte svoje heslo pre opätovné zabezpečenie Vášho účtu" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Zabudli ste heslo?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "zapamätať" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Prihlásiť sa" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Ste odhlásený." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "späť" @@ -568,16 +564,7 @@ msgstr "späť" msgid "next" msgstr "ďalej" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Bezpečnostné varovanie!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Prosím, overte svoje heslo. <br />Z bezpečnostných dôvodov môžete byť občas požiadaný o jeho opätovné zadanie." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Overenie" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Aktualizujem ownCloud na verziu %s, môže to chvíľu trvať." diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index d55899f3b3e..1d4d69bb59e 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 16:18+0000\n" -"Last-Translator: martin <zatroch.martin@gmail.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,46 +21,72 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Nahrávaný súbor presiahol MAX_FILE_SIZE direktívu, ktorá bola špecifikovaná v HTML formulári" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Nahrávaný súbor bol iba čiastočne nahraný" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Žiaden súbor nebol nahraný" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Chýbajúci dočasný priečinok" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Súbory" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nezdielať" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Odstrániť" @@ -68,122 +94,134 @@ msgstr "Odstrániť" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "nahradiť" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "pomôcť s menom" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "zrušiť" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "prepísaný {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "vrátiť" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "prepísaný {new_name} súborom {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "zdieľanie zrušené pre {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "zmazané {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generujem ZIP-súbor, môže to chvíľu trvať." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Chyba odosielania" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Zavrieť" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Čaká sa" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} súborov odosielaných" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Odosielanie zrušené" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nesprávne meno adresára. Použitie slova \"Shared\" (Zdieľané) je vyhradené službou ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL nemôže byť prázdne" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} súborov prehľadaných" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "chyba počas kontroly" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Meno" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veľkosť" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Upravené" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 priečinok" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 súbor" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} súborov" @@ -195,27 +233,27 @@ msgstr "Nastavenie správanie k súborom" msgid "Maximum upload size" msgstr "Maximálna veľkosť odosielaného súboru" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "najväčšie možné:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Vyžadované pre sťahovanie viacerých súborov a adresárov." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Povoliť sťahovanie ZIP súborov" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 znamená neobmedzené" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Najväčšia veľkosť ZIP súborov" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Uložiť" @@ -235,36 +273,36 @@ msgstr "Priečinok" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Odoslať" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Stiahnuť" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Odosielaný súbor je príliš veľký" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Práve prehliadané" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index 89f540dae66..32d3549ff90 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 18:45+0000\n" -"Last-Translator: martinb <martin.babik@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Expirovať všetky verzie" - #: js/versions.js:16 msgid "History" msgstr "História" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Verzie" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Budú zmazané všetky zálohované verzie vašich súborov" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Vytváranie verzií súborov" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index ba1e859d9c9..07b4a925917 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 16:27+0000\n" -"Last-Translator: martin <zatroch.martin@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,55 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Pomoc" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Osobné" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Nastavenia" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Užívatelia" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplikácie" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Správca" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Sťahovanie súborov ZIP je vypnuté." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Súbory musia byť nahrávané jeden za druhým." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Späť na súbory" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Zvolené súbory sú príliž veľké na vygenerovanie zip súboru." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplikácia nie je zapnutá" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Chyba autentifikácie" @@ -84,55 +88,55 @@ msgstr "Text" msgid "Images" msgstr "Obrázky" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "pred sekundami" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "pred 1 minútou" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "pred %d minútami" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Pred 1 hodinou" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Pred %d hodinami." -#: template.php:108 +#: template.php:118 msgid "today" msgstr "dnes" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "včera" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "pred %d dňami" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "minulý mesiac" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Pred %d mesiacmi." -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "minulý rok" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "pred rokmi" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 5f886e918de..e3c919f0ad8 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "Skupina už existuje" msgid "Unable to add group" msgstr "Nie je možné pridať skupinu" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Nie je možné zapnúť aplikáciu." @@ -46,14 +46,6 @@ msgstr "Email uložený" msgid "Invalid email" msgstr "Neplatný email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID zmenené" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Neplatná požiadavka" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Nie je možné odstrániť skupinu" @@ -70,6 +62,10 @@ msgstr "Nie je možné odstrániť používateľa" msgid "Language changed" msgstr "Jazyk zmenený" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Neplatná požiadavka" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administrátori nesmú odstrániť sami seba zo skupiny admin" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index fde4a583528..497fea635a1 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "Základné DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "V rozšírenom nastavení môžete zadať základné DN pre používateľov a skupiny" @@ -115,10 +119,18 @@ msgstr "Port" msgid "Base User Tree" msgstr "Základný používateľský strom" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Základný skupinový strom" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Asociácia člena skupiny" diff --git a/l10n/sk_SK/user_webdavauth.po b/l10n/sk_SK/user_webdavauth.po index fe313b19276..26b96954a94 100644 --- a/l10n/sk_SK/user_webdavauth.po +++ b/l10n/sk_SK/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,17 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/sl/core.po b/l10n/sl/core.po index 679277649aa..2b4637d8013 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" -"PO-Revision-Date: 2012-12-15 16:29+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,55 +87,55 @@ msgstr "Napaka pri odstranjevanju %s iz priljubljenih." msgid "Settings" msgstr "Nastavitve" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "pred 1 uro" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "danes" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "včeraj" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "lansko leto" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "let nazaj" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "Vrsta predmeta ni podana." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Napaka" @@ -178,7 +178,7 @@ msgstr "Ime aplikacije ni podano." msgid "The required file {file} is not installed!" msgstr "Zahtevana datoteka {file} ni nameščena!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -206,12 +206,11 @@ msgstr "Omogoči souporabo z" msgid "Share with link" msgstr "Omogoči souporabo s povezavo" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Zaščiti z geslom" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Geslo" @@ -275,23 +274,23 @@ msgstr "izbriše" msgid "share" msgstr "določi souporabo" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Napaka med nastavljanjem datuma preteka" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Pošiljam ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "E-pošta je bila poslana" @@ -316,7 +315,7 @@ msgid "Request failed!" msgstr "Zahtevek je spodletel!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Uporabniško Ime" @@ -530,36 +529,32 @@ msgstr "spletne storitve pod vašim nadzorom" msgid "Log out" msgstr "Odjava" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Samodejno prijavljanje je zavrnjeno!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Če vašega gesla niste nedavno spremenili, je vaš račun lahko ogrožen!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Spremenite geslo za izboljšanje zaščite računa." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Ali ste pozabili geslo?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "Zapomni si me" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Prijava" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Sta odjavljeni." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "nazaj" @@ -568,16 +563,7 @@ msgstr "nazaj" msgid "next" msgstr "naprej" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Varnostno opozorilo!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Prosimo, če preverite vaše geslo. Iz varnostnih razlogov vas lahko občasno prosimo, da ga ponovno vnesete." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Preveri" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index db703c7acc4..5ed732142e8 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-09 00:11+0100\n" -"PO-Revision-Date: 2012-12-07 23:34+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,46 +21,72 @@ 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/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Nobena datoteka ni naložena. Neznana napaka." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena brez napak." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Naložena datoteka presega dovoljeno velikost. Le-ta je določena z vrstico upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Naložena datoteka presega velikost, ki jo določa parameter MAX_FILE_SIZE v HTML obrazcu" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je le delno naložena" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nobena datoteka ni bila naložena" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Odstrani iz souporabe" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Izbriši" @@ -68,122 +94,134 @@ msgstr "Izbriši" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "zamenjaj" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "predlagaj ime" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "prekliči" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "zamenjano je ime {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "zamenjano ime {new_name} z imenom {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "odstranjeno iz souporabe {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "izbrisano {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." -#: js/files.js:184 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Ustvarjanje datoteke ZIP. To lahko traja nekaj časa." -#: js/files.js:219 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Pošiljanje ni mogoče, saj gre za mapo, ali pa je datoteka velikosti 0 bajtov." -#: js/files.js:219 +#: js/files.js:224 msgid "Upload Error" msgstr "Napaka med nalaganjem" -#: js/files.js:236 +#: js/files.js:241 msgid "Close" msgstr "Zapri" -#: js/files.js:255 js/files.js:369 js/files.js:399 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "V čakanju ..." -#: js/files.js:275 +#: js/files.js:280 msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/files.js:278 js/files.js:332 js/files.js:347 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "nalagam {count} datotek" -#: js/files.js:350 js/files.js:383 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/files.js:452 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." -#: js/files.js:524 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Neveljavno ime datoteke. Uporaba mape \"Share\" je rezervirana za ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Naslov URL ne sme biti prazen." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:705 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} files scanned" -#: js/files.js:713 +#: js/files.js:735 msgid "error while scanning" msgstr "napaka med pregledovanjem datotek" -#: js/files.js:786 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ime" -#: js/files.js:787 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Velikost" -#: js/files.js:788 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:815 +#: js/files.js:829 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:817 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:825 +#: js/files.js:839 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:827 +#: js/files.js:841 msgid "{count} files" msgstr "{count} datotek" @@ -195,27 +233,27 @@ msgstr "Upravljanje z datotekami" msgid "Maximum upload size" msgstr "Največja velikost za pošiljanja" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "največ mogoče:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Uporabljeno za prenos več datotek in map." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Omogoči prejemanje arhivov ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 je neskončno" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Največja vhodna velikost za datoteke ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Shrani" @@ -235,36 +273,36 @@ msgstr "Mapa" msgid "From link" msgstr "Iz povezave" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Pošlji" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tukaj ni ničesar. Naložite kaj!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Prejmi" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Nalaganje ni mogoče, ker je preveliko" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite naložiti, presegajo največjo dovoljeno velikost na tem strežniku." -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 2bde547fb1f..1a4d2854d91 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-23 02:02+0200\n" -"PO-Revision-Date: 2012-10-22 17:00+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,10 @@ 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" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Zastaraj vse različice" - #: js/versions.js:16 msgid "History" msgstr "Zgodovina" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Različice" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "S tem bodo izbrisane vse obstoječe različice varnostnih kopij vaših datotek" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Sledenje različicam" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 606aa03de9d..4af090e968d 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-20 00:01+0100\n" -"PO-Revision-Date: 2012-11-19 19:49+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ 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" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Pomoč" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Osebno" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Nastavitve" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Uporabniki" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Programi" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Skrbništvo" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Prejem datotek ZIP je onemogočen." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Datoteke je mogoče prejeti le posamič." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Nazaj na datoteke" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Izbrane datoteke so prevelike za ustvarjanje datoteke arhiva zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Program ni omogočen" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Napaka overitve" @@ -83,55 +87,55 @@ msgstr "Besedilo" msgid "Images" msgstr "Slike" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "pred minuto" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "pred %d minutami" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Pred 1 uro" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Pred %d urami" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "danes" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "včeraj" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "pred %d dnevi" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "prejšnji mesec" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Pred %d meseci" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "lani" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "pred nekaj leti" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index e10cc61469b..4e336bf871a 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -5,14 +5,14 @@ # Translators: # <>, 2012. # <peter.perosa@gmail.com>, 2012. -# Peter Peroša <peter.perosa@gmail.com>, 2012. +# Peter Peroša <peter.perosa@gmail.com>, 2012-2013. # <urossolar@hotmail.com>, 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "Skupina že obstaja" msgid "Unable to add group" msgstr "Ni mogoče dodati skupine" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Programa ni mogoče omogočiti." @@ -45,14 +45,6 @@ msgstr "Elektronski naslov je shranjen" msgid "Invalid email" msgstr "Neveljaven elektronski naslov" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID je bil spremenjen" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Neveljavna zahteva" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Ni mogoče izbrisati skupine" @@ -69,6 +61,10 @@ msgstr "Ni mogoče izbrisati uporabnika" msgid "Language changed" msgstr "Jezik je bil spremenjen" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Neveljavna zahteva" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administratorji sebe ne morejo odstraniti iz skupine admin" @@ -121,27 +117,27 @@ msgstr "<span class=\"licence\"></span>-z dovoljenjem s strani <span class=\"aut #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "Uporabniška dokumentacija" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "Administratorjeva dokumentacija" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "Spletna dokumentacija" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "Forum" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Sistem za sledenje napakam" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Komercialna podpora" #: templates/personal.php:8 #, php-format @@ -154,15 +150,15 @@ msgstr "Stranka" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Prenesi namizne odjemalce" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Prenesi Android odjemalec" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Prenesi iOS odjemalec" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -214,15 +210,15 @@ msgstr "Pomagajte pri prevajanju" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Uporabite ta naslov za povezavo do ownCloud v vašem upravljalniku datotek." #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Različica" #: templates/personal.php:65 msgid "" @@ -248,11 +244,11 @@ msgstr "Ustvari" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Privzeta shramba" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Neomejeno" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -264,11 +260,11 @@ msgstr "Skrbnik skupine" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Shramba" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Privzeto" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index d34b56f8c01..9671d69486e 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" -"PO-Revision-Date: 2012-12-15 16:46+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,9 +28,9 @@ msgstr "<b>Opozorilo:</b> Aplikaciji user_ldap in user_webdavauth nista združlj #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Opozorilo:</b> PHP LDAP modul mora biti nameščen, sicer ta vmesnik ne bo deloval. Prosimo, prosite vašega skrbnika, če ga namesti." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -46,6 +46,10 @@ msgid "Base DN" msgstr "Osnovni DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Osnovni DN za uporabnike in skupine lahko določite v zavihku Napredno" @@ -116,10 +120,18 @@ msgstr "Vrata" msgid "Base User Tree" msgstr "Osnovno uporabniško drevo" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Osnovno drevo skupine" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Povezava člana skupine" diff --git a/l10n/sl/user_webdavauth.po b/l10n/sl/user_webdavauth.po index b5b34116c6f..05172dc5b95 100644 --- a/l10n/sl/user_webdavauth.po +++ b/l10n/sl/user_webdavauth.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Peter Peroša <peter.perosa@gmail.com>, 2012. +# Peter Peroša <peter.perosa@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,17 @@ 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" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/sq/core.po b/l10n/sq/core.po index 994085414f7..4c77ff63f84 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -83,55 +83,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -161,8 +161,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -174,7 +174,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -202,12 +202,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "" @@ -271,23 +270,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -311,8 +310,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "" @@ -401,44 +400,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -526,36 +525,32 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" @@ -564,16 +559,7 @@ msgstr "" msgid "next" msgstr "" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index c3bd0a63259..57c754a69e0 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,72 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -64,122 +90,134 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -191,27 +229,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" @@ -231,36 +269,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/sq/files_versions.po b/l10n/sq/files_versions.po index 97616a40636..5128bf7cf1b 100644 --- a/l10n/sq/files_versions.po +++ b/l10n/sq/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-27 00:10+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 431a0e3c621..ce2ab5c3311 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-27 00:10+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,51 +17,55 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 78be3c6ba44..7d7d18a26f7 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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 3c0afbd378a..4c54b0c5724 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" diff --git a/l10n/sq/user_webdavauth.po b/l10n/sq/user_webdavauth.po index 132bf6829ad..1a2d007461b 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/sr/core.po b/l10n/sr/core.po index 9bf9f33c5e3..b40e7317a48 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -86,55 +86,55 @@ msgstr "Грешка приликом уклањања %s из омиљених" msgid "Settings" msgstr "Подешавања" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Пре једног сата" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Пре {hours} сата (сати)" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "данас" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "јуче" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Пре {months} месеца (месеци)" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "месеци раније" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "прошле године" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "година раније" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "Врста објекта није подешена." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Грешка" @@ -177,7 +177,7 @@ msgstr "Име програма није унето." msgid "The required file {file} is not installed!" msgstr "Потребна датотека {file} није инсталирана." -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -205,12 +205,11 @@ msgstr "Подели са" msgid "Share with link" msgstr "Подели линк" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Заштићено лозинком" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Лозинка" @@ -274,23 +273,23 @@ msgstr "обриши" msgid "share" msgstr "подели" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -314,8 +313,8 @@ msgstr "Захтев је послат поштом." msgid "Request failed!" msgstr "Захтев одбијен!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Корисничко име" @@ -404,44 +403,44 @@ msgstr "Тренутно су ваши подаци и датотеке дост msgid "Create an <strong>admin account</strong>" msgstr "Направи <strong>административни налог</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Напредно" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Фацикла података" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Подешавање базе" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "ће бити коришћен" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Корисник базе" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Име базе" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Радни простор базе података" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Домаћин базе" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Заврши подешавање" @@ -529,36 +528,32 @@ msgstr "веб сервиси под контролом" msgid "Log out" msgstr "Одјава" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Аутоматска пријава је одбијена!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Ако ускоро не промените лозинку ваш налог може бити компромитован!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Промените лозинку да бисте обезбедили налог." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Изгубили сте лозинку?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "упамти" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Пријава" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Одјављени сте." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "претходно" @@ -567,16 +562,7 @@ msgstr "претходно" msgid "next" msgstr "следеће" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Сигурносно упозорење!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Потврдите лозинку. <br />Из сигурносних разлога затрежићемо вам да два пута унесете лозинку." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Потврди" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 2eac1068a25..74593611902 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 18:27+0000\n" -"Last-Translator: Rancher <theranchcowboy@gmail.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,46 +20,72 @@ 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/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Датотеке" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Укини дељење" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Обриши" @@ -67,122 +93,134 @@ msgstr "Обриши" msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "замени" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "предложи назив" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "откажи" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "замењено {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "опозови" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "замењено {new_name} са {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "укинуто дељење {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "обрисано {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "правим ZIP датотеку…" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Грешка при отпремању" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Затвори" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "На чекању" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Отпремам {count} датотеке/а" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Неисправан назив фасцикле. „Дељено“ користи Оунклауд." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "Скенирано датотека: {count}" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "грешка при скенирању" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Назив" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Величина" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Измењено" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 фасцикла" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 датотека" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} датотеке/а" @@ -194,27 +232,27 @@ msgstr "Управљање датотекама" msgid "Maximum upload size" msgstr "Највећа величина датотеке" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "највећа величина:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Неопходно за преузимање вишеделних датотека и фасцикли." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Омогући преузимање у ZIP-у" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 је неограничено" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Највећа величина ZIP датотека" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Сачувај" @@ -234,36 +272,36 @@ msgstr "фасцикла" msgid "From link" msgstr "Са везе" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Отпреми" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Отпремите нешто!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Преузми" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Датотека је превелика" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеке које желите да отпремите прелазе ограничење у величини." -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Скенирам датотеке…" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Тренутно скенирање" diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po index 592163313fc..7c031b84aa7 100644 --- a/l10n/sr/files_versions.po +++ b/l10n/sr/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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ 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" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 0ffcb3e09d3..d6456f9db16 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 19:18+0000\n" -"Last-Translator: Rancher <theranchcowboy@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ 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" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Помоћ" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Лично" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Подешавања" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Корисници" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Апликације" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Администрација" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Преузимање ZIP-а је искључено." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Датотеке морате преузимати једну по једну." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Назад на датотеке" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Изабране датотеке су превелике да бисте направили ZIP датотеку." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Апликација није омогућена" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Грешка при провери идентитета" @@ -83,55 +87,55 @@ msgstr "Текст" msgid "Images" msgstr "Слике" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "пре неколико секунди" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "пре 1 минут" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "пре %d минута" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "пре 1 сат" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "пре %d сата/и" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "данас" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "јуче" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "пре %d дана" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "прошлог месеца" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "пре %d месеца/и" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "прошле године" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 0a738546bf6..dca5c1ac469 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "Група већ постоји" msgid "Unable to add group" msgstr "Не могу да додам групу" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Не могу да укључим програм" @@ -43,14 +43,6 @@ msgstr "Е-порука сачувана" msgid "Invalid email" msgstr "Неисправна е-адреса" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID је измењен" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Неисправан захтев" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Не могу да уклоним групу" @@ -67,6 +59,10 @@ msgstr "Не могу да уклоним корисника" msgid "Language changed" msgstr "Језик је промењен" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Неисправан захтев" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Управници не могу себе уклонити из админ групе" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 2af4aa92fab..00ff848a20a 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -180,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Помоћ" diff --git a/l10n/sr/user_webdavauth.po b/l10n/sr/user_webdavauth.po index 914fb17354e..8e72a9d363a 100644 --- a/l10n/sr/user_webdavauth.po +++ b/l10n/sr/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ 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" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/sr@latin/core.po b/l10n/sr@latin/core.po index d005ce30765..2cd55d70441 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "Podešavanja" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,12 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Lozinka" @@ -272,23 +271,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +311,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Korisničko ime" @@ -402,44 +401,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Napravi <strong>administrativni nalog</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Napredno" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Facikla podataka" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Podešavanje baze" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "će biti korišćen" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Korisnik baze" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Lozinka baze" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Ime baze" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Domaćin baze" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Završi podešavanje" @@ -527,36 +526,32 @@ msgstr "" msgid "Log out" msgstr "Odjava" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "upamti" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Odjavljeni ste." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prethodno" @@ -565,16 +560,7 @@ msgstr "prethodno" msgid "next" msgstr "sledeće" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index fbaee12094b..81511f85a80 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,72 @@ 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/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fajlovi" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Obriši" @@ -65,122 +91,134 @@ msgstr "Obriši" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Zatvori" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ime" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veličina" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -192,27 +230,27 @@ msgstr "" msgid "Maximum upload size" msgstr "Maksimalna veličina pošiljke" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Snimi" @@ -232,36 +270,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Pošalji" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po index 1f2db94b8ad..a35cd43237b 100644 --- a/l10n/sr@latin/files_versions.po +++ b/l10n/sr@latin/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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ 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" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index edcbb0203e2..264724c0911 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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ 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" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Pomoć" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Lično" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Podešavanja" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Korisnici" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Greška pri autentifikaciji" @@ -81,55 +85,55 @@ msgstr "Tekst" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 0e2ffadb98c..c11e3c37bfb 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -42,14 +42,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID je izmenjen" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Neispravan zahtev" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -66,6 +58,10 @@ msgstr "" msgid "Language changed" msgstr "Jezik je izmenjen" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Neispravan zahtev" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 47549f334d5..c78635ad495 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" @@ -180,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Pomoć" diff --git a/l10n/sr@latin/user_webdavauth.po b/l10n/sr@latin/user_webdavauth.po index 9fe7b885a10..246116723c6 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ 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" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/sv/core.po b/l10n/sv/core.po index ec20f3de3d6..799ca43b10b 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -6,16 +6,16 @@ # Christer Eriksson <post@hc3web.com>, 2012. # Daniel Sandman <revoltism@gmail.com>, 2012. # <hakan.thn@gmail.com>, 2011. -# Magnus Höglund <magnus@linux.com>, 2012. +# Magnus Höglund <magnus@linux.com>, 2012-2013. # <magnus@linux.com>, 2012. # <revoltism@gmail.com>, 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-26 00:11+0100\n" -"PO-Revision-Date: 2012-12-25 08:10+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,55 +89,55 @@ msgstr "Fel vid borttagning av %s från favoriter." msgid "Settings" msgstr "Inställningar" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "i dag" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "i går" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "förra månaden" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "månader sedan" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "förra året" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "år sedan" @@ -213,7 +213,6 @@ msgid "Password protect" msgstr "Lösenordsskydda" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Lösenord" @@ -558,10 +557,6 @@ msgstr "kom ihåg" msgid "Log in" msgstr "Logga in" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Du är utloggad." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "föregående" @@ -570,16 +565,7 @@ msgstr "föregående" msgid "next" msgstr "nästa" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Säkerhetsvarning!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Bekräfta ditt lösenord. <br/>Av säkerhetsskäl kan du ibland bli ombedd att ange ditt lösenord igen." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Verifiera" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Uppdaterar ownCloud till version %s, detta kan ta en stund." diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 7c197ea6056..16e2e102563 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -5,7 +5,7 @@ # Translators: # Christer Eriksson <post@hc3web.com>, 2012. # Daniel Sandman <revoltism@gmail.com>, 2012. -# Magnus Höglund <magnus@linux.com>, 2012. +# Magnus Höglund <magnus@linux.com>, 2012-2013. # <magnus@linux.com>, 2012. # <revoltism@gmail.com>, 2011, 2012. # <tscooter@hotmail.com>, 2012. @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 19:45+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,46 +23,72 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Ingen fil uppladdad. Okänt fel" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen överstiger MAX_FILE_SIZE direktivet som anges i HTML-formulär" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ingen fil blev uppladdad" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Saknar en tillfällig mapp" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Inte tillräckligt med utrymme tillgängligt" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Felaktig mapp." + #: appinfo/app.php:10 msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Sluta dela" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Radera" @@ -70,122 +96,134 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersätt" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "föreslå namn" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "ersatt {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "ångra" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "stoppad delning {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "raderade {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' är ett ogiltigt filnamn." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Filnamn kan inte vara tomt." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "genererar ZIP-fil, det kan ta lite tid." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes." -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Uppladdningsfel" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Stäng" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Väntar" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} filer laddas upp" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ogiltigt mappnamn. Ordet \"Delad\" är reserverat av ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL kan inte vara tom." + +#: js/files.js:543 +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:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} filer skannade" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "fel vid skanning" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Namn" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Storlek" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Ändrad" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -197,27 +235,27 @@ msgstr "Filhantering" msgid "Maximum upload size" msgstr "Maximal storlek att ladda upp" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. möjligt:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Krävs för nerladdning av flera mappar och filer." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Aktivera ZIP-nerladdning" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 är oändligt" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Största tillåtna storlek för ZIP-filer" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Spara" @@ -237,36 +275,36 @@ msgstr "Mapp" msgid "From link" msgstr "Från länk" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Ladda upp" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index a926036b892..5f3d273b389 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 11:20+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Upphör alla versioner" - #: js/versions.js:16 msgid "History" msgstr "Historik" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Versioner" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Detta kommer att radera alla befintliga säkerhetskopior av dina filer" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionshantering av filer" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 548f7a84d4c..e7015f915b5 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-15 07:21+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Hjälp" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personligt" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Inställningar" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Användare" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Program" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Tillbaka till Filer" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Valda filer är för stora för att skapa zip-fil." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Applikationen är inte aktiverad" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Fel vid autentisering" @@ -83,55 +87,55 @@ msgstr "Text" msgid "Images" msgstr "Bilder" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekunder sedan" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minut sedan" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minuter sedan" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 timme sedan" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d timmar sedan" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "idag" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "igår" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d dagar sedan" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "förra månaden" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d månader sedan" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "förra året" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "år sedan" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index ee72c8dd291..b51b40b3425 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 07:10+0000\n" -"Last-Translator: xt00r <q@xnq.me>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +37,7 @@ msgstr "Gruppen finns redan" msgid "Unable to add group" msgstr "Kan inte lägga till grupp" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Kunde inte aktivera appen." @@ -49,14 +49,6 @@ msgstr "E-post sparad" msgid "Invalid email" msgstr "Ogiltig e-post" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID ändrat" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ogiltig begäran" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Kan inte radera grupp" @@ -73,6 +65,10 @@ msgstr "Kan inte radera användare" msgid "Language changed" msgstr "Språk ändrades" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ogiltig begäran" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administratörer kan inte ta bort sig själva från admingruppen" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 76ca9c76224..a86fd7f318a 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 19:54+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,9 +27,9 @@ msgstr "<b>Varning:</b> Apps user_ldap och user_webdavauth är inkompatibla. Ov #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Varning:</b> PHP LDAP-modulen måste vara installerad, serversidan kommer inte att fungera. Be din systemadministratör att installera den." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "Start DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Du kan ange start DN för användare och grupper under fliken Avancerat" @@ -115,10 +119,18 @@ msgstr "Port" msgid "Base User Tree" msgstr "Bas för användare i katalogtjänst" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Bas för grupper i katalogtjänst" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Attribut för gruppmedlemmar" diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index b2063cd23bc..f85d57aca3e 100644 --- a/l10n/sv/user_webdavauth.po +++ b/l10n/sv/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-26 00:10+0100\n" -"PO-Revision-Date: 2012-12-25 08:03+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,13 +18,17 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloud kommer att skicka inloggningsuppgifterna till denna URL och tolkar http 401 och http 403 som fel och alla andra koder som korrekt." +"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/ta_LK/core.po b/l10n/ta_LK/core.po index 454448de312..83a4981f2ef 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "விருப்பத்திலிருந்து %s ஐ அக msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "இன்று" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{நாட்கள்} நாட்களுக்கு முன்" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "வருடங்களுக்கு முன்" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "பொருள் வகை குறிப்பிடப்படவில்லை." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "வழு" @@ -175,7 +175,7 @@ msgstr "செயலி பெயர் குறிப்பிடப்பட msgid "The required file {file} is not installed!" msgstr "தேவைப்பட்ட கோப்பு {கோப்பு} நிறுவப்படவில்லை!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -203,12 +203,11 @@ msgstr "பகிர்தல்" msgid "Share with link" msgstr "இணைப்புடன் பகிர்தல்" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "கடவுச்சொல்லை பாதுகாத்தல்" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "கடவுச்சொல்" @@ -272,23 +271,23 @@ msgstr "நீக்குக" msgid "share" msgstr "பகிர்தல்" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +311,8 @@ msgstr "மின்னுஞ்சல் அனுப்புதலை மீ msgid "Request failed!" msgstr "வேண்டுகோள் தோல்வியுற்றது!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "பயனாளர் பெயர்" @@ -402,44 +401,44 @@ msgstr "உங்களுடைய தரவு அடைவு மற்று msgid "Create an <strong>admin account</strong>" msgstr "<strong> நிர்வாக கணக்கொன்றை </strong> உருவாக்குக" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "மேம்பட்ட" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "தரவு கோப்புறை" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "தரவுத்தளத்தை தகவமைக்க" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "பயன்படுத்தப்படும்" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "தரவுத்தள பயனாளர்" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "தரவுத்தள கடவுச்சொல்" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "தரவுத்தள பெயர்" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "தரவுத்தள அட்டவணை" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "தரவுத்தள ஓம்புனர்" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "அமைப்பை முடிக்க" @@ -527,36 +526,32 @@ msgstr "உங்கள் கட்டுப்பாட்டின் கீ msgid "Log out" msgstr "விடுபதிகை செய்க" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "தன்னிச்சையான புகுபதிகை நிராகரிப்பட்டது!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "உங்களுடைய கடவுச்சொல்லை அண்மையில் மாற்றவில்லையின், உங்களுடைய கணக்கு சமரசமாகிவிடும்!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "உங்களுடைய கணக்கை மீண்டும் பாதுகாக்க தயவுசெய்து உங்களுடைய கடவுச்சொல்லை மாற்றவும்." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "உங்கள் கடவுச்சொல்லை தொலைத்துவிட்டீர்களா?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "ஞாபகப்படுத்துக" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "புகுபதிகை" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "நீங்கள் விடுபதிகை செய்துவிட்டீர்கள்." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "முந்தைய" @@ -565,16 +560,7 @@ msgstr "முந்தைய" msgid "next" msgstr "அடுத்து" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "பாதுகாப்பு எச்சரிக்கை!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "உங்களுடைய கடவுச்சொல்லை உறுதிப்படுத்துக. <br/> பாதுகாப்பு காரணங்களுக்காக நீங்கள் எப்போதாவது உங்களுடைய கடவுச்சொல்லை மீண்டும் நுழைக்க கேட்கப்படுவீர்கள்." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "உறுதிப்படுத்தல்" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index b6abb44c847..5c90380e9ab 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,72 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "வட்டில் எழுத முடியவில்லை" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "கோப்புகள்" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "அழிக்க" @@ -65,122 +91,134 @@ msgstr "அழிக்க" msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "மாற்றிடுக" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "பெயரை பரிந்துரைக்க" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "இரத்து செய்க" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "மாற்றப்பட்டது {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "பகிரப்படாதது {கோப்புகள்}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "நீக்கப்பட்டது {கோப்புகள்}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr " ZIP கோப்பு உருவாக்கப்படுகின்றது, இது சில நேரம் ஆகலாம்." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "அடைவு அல்லது 0 bytes ஐ கொண்டுள்ளதால் உங்களுடைய கோப்பை பதிவேற்ற முடியவில்லை" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "பதிவேற்றல் வழு" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "மூடுக" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "செல்லுபடியற்ற கோப்புறை பெயர். \"பகிர்வின்\" பாவனை Owncloud இனால் ஒதுக்கப்பட்டுள்ளது" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL வெறுமையாக இருக்கமுடியாது." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "வருடும் போதான வழு" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "பெயர்" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "அளவு" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 கோப்பு" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" @@ -192,27 +230,27 @@ msgstr "கோப்பு கையாளுதல்" msgid "Maximum upload size" msgstr "பதிவேற்றக்கூடிய ஆகக்கூடிய அளவு " -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "ஆகக் கூடியது:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "பல்வேறுப்பட்ட கோப்பு மற்றும் கோப்புறைகளை பதிவிறக்க தேவையானது." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP பதிவிறக்கலை இயலுமைப்படுத்துக" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ஆனது எல்லையற்றது" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP கோப்புகளுக்கான ஆகக்கூடிய உள்ளீட்டு அளவு" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "சேமிக்க" @@ -232,36 +270,36 @@ msgstr "கோப்புறை" msgid "From link" msgstr "இணைப்பிலிருந்து" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "பதிவேற்றல் மிகப்பெரியது" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது." -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" diff --git a/l10n/ta_LK/files_versions.po b/l10n/ta_LK/files_versions.po index d1c44e0d9d0..ed417e58282 100644 --- a/l10n/ta_LK/files_versions.po +++ b/l10n/ta_LK/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-20 00:01+0100\n" -"PO-Revision-Date: 2012-11-19 08:42+0000\n" -"Last-Translator: suganthi <suganthi@nic.lk>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "எல்லா பதிப்புகளும் காலாவதியாகிவிட்டது" - #: js/versions.js:16 msgid "History" msgstr "வரலாறு" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "பதிப்புகள்" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "உங்களுடைய கோப்புக்களில் ஏற்கனவே உள்ள ஆதாரநகல்களின் பதிப்புக்களை இவை அழித்துவிடும்" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "கோப்பு பதிப்புகள்" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 804cdf565e5..febb5ad3281 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-15 14:16+0000\n" -"Last-Translator: suganthi <suganthi@nic.lk>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "உதவி" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "தனிப்பட்ட" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "அமைப்புகள்" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "பயனாளர்கள்" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "செயலிகள்" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "நிர்வாகம்" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "கோப்புகளுக்கு செல்க" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "வீ சொலிக் கோப்புகளை உருவாக்குவதற்கு தெரிவுசெய்யப்பட்ட கோப்புகள் மிகப்பெரியவை" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "செயலி இயலுமைப்படுத்தப்படவில்லை" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "அத்தாட்சிப்படுத்தலில் வழு" @@ -82,55 +86,55 @@ msgstr "உரை" msgid "Images" msgstr "படங்கள்" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d நிமிடங்களுக்கு முன்" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d மணித்தியாலத்திற்கு முன்" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "இன்று" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "நேற்று" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d நாட்களுக்கு முன்" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "கடந்த மாதம்" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d மாதத்திற்கு முன்" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "கடந்த வருடம்" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 4b6d4c45e0e..841dd03141b 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "குழு ஏற்கனவே உள்ளது" msgid "Unable to add group" msgstr "குழுவை சேர்க்க முடியாது" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "செயலியை இயலுமைப்படுத்த முடியாது" @@ -42,14 +42,6 @@ msgstr "மின்னஞ்சல் சேமிக்கப்பட்ட msgid "Invalid email" msgstr "செல்லுபடியற்ற மின்னஞ்சல்" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID மாற்றப்பட்டது" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "செல்லுபடியற்ற வேண்டுகோள்" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "குழுவை நீக்க முடியாது" @@ -66,6 +58,10 @@ msgstr "பயனாளரை நீக்க முடியாது" msgid "Language changed" msgstr "மொழி மாற்றப்பட்டது" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "செல்லுபடியற்ற வேண்டுகோள்" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index e98a09afa8c..401d69aec01 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "தள DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "நீங்கள் பயனாளர்களுக்கும் மேன்மை தத்தலில் உள்ள குழுவிற்கும் தள DN ஐ குறிப்பிடலாம் " @@ -115,10 +119,18 @@ msgstr "துறை " msgid "Base User Tree" msgstr "தள பயனாளர் மரம்" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "தள குழு மரம்" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "குழு உறுப்பினர் சங்கம்" diff --git a/l10n/ta_LK/user_webdavauth.po b/l10n/ta_LK/user_webdavauth.po index b74d36a8e43..59edf0b378a 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,17 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/templates/core.pot b/l10n/templates/core.pot index cc33a324c89..c1e9dea96ad 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -83,55 +83,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:704 +#: js/js.js:706 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:707 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:709 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:711 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:712 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:713 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:714 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:715 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:716 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:717 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:718 msgid "years ago" msgstr "" @@ -207,7 +207,6 @@ msgid "Password protect" msgstr "" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "" @@ -552,10 +551,6 @@ msgstr "" msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" @@ -564,16 +559,7 @@ msgstr "" msgid "next" msgstr "" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9834fd44815..2018927bff1 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -17,46 +17,72 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -64,122 +90,134 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:174 +#: js/files.js:187 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:212 +#: js/files.js:225 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:212 +#: js/files.js:225 msgid "Upload Error" msgstr "" -#: js/files.js:229 +#: js/files.js:242 msgid "Close" msgstr "" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:261 js/files.js:377 js/files.js:410 msgid "Pending" msgstr "" -#: js/files.js:268 +#: js/files.js:281 msgid "1 file uploading" msgstr "" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:284 js/files.js:339 js/files.js:354 msgid "{count} files uploading" msgstr "" -#: js/files.js:343 js/files.js:376 +#: js/files.js:358 js/files.js:394 msgid "Upload cancelled." msgstr "" -#: js/files.js:445 +#: js/files.js:465 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:538 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:544 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:728 msgid "{count} files scanned" msgstr "" -#: js/files.js:707 +#: js/files.js:736 msgid "error while scanning" msgstr "" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:809 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:810 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:811 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:801 +#: js/files.js:830 msgid "1 folder" msgstr "" -#: js/files.js:803 +#: js/files.js:832 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:840 msgid "1 file" msgstr "" -#: js/files.js:813 +#: js/files.js:842 msgid "{count} files" msgstr "" @@ -191,27 +229,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" @@ -231,36 +269,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 1741ce20902..42a4dbf4f32 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index ba153383185..612a3667968 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 252ca02fd8c..07874ef7402 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 50c7690b122..ca0442a2a08 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -17,22 +17,10 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: js/settings-personal.js:31 templates/settings-personal.php:7 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:10 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 48ce7c8f931..a1393f61778 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -17,27 +17,27 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "" @@ -57,11 +57,15 @@ msgstr "" msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index b4e0bb7c2ba..12a81610f50 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 3090e074b57..27f3e70ccd8 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will " -"not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -113,10 +117,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 3612d95289b..29b29b68ff4 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -17,12 +17,17 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials correct." +"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/th_TH/core.po b/l10n/th_TH/core.po index 0138e60fb80..895eb8a3443 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -85,55 +85,55 @@ msgstr "เกิดข้อผิดพลาดในการลบ %s อ msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 นาทีก่อนหน้านี้" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} นาทีก่อนหน้านี้" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} ชั่วโมงก่อนหน้านี้" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "วันนี้" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{day} วันก่อนหน้านี้" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} เดือนก่อนหน้านี้" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "ปี ที่ผ่านมา" @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "ชนิดของวัตถุยังไม่ได้รับการระบุ" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "พบข้อผิดพลาด" @@ -176,7 +176,7 @@ msgstr "ชื่อของแอปยังไม่ได้รับกา msgid "The required file {file} is not installed!" msgstr "ไฟล์ {file} ซึ่งเป็นไฟล์ที่จำเป็นต้องได้รับการติดตั้งไว้ก่อน ยังไม่ได้ถูกติดตั้ง" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -204,12 +204,11 @@ msgstr "แชร์ให้กับ" msgid "Share with link" msgstr "แชร์ด้วยลิงก์" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "รหัสผ่าน" @@ -273,23 +272,23 @@ msgstr "ลบ" msgid "share" msgstr "แชร์" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -313,8 +312,8 @@ msgstr "รีเซ็ตค่าการส่งอีเมล" msgid "Request failed!" msgstr "คำร้องขอล้มเหลว!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "ชื่อผู้ใช้งาน" @@ -403,44 +402,44 @@ msgstr "ไดเร็กทอรี่ข้อมูลและไฟล์ msgid "Create an <strong>admin account</strong>" msgstr "สร้าง <strong>บัญชีผู้ดูแลระบบ</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "ขั้นสูง" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "โฟลเดอร์เก็บข้อมูล" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "กำหนดค่าฐานข้อมูล" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "จะถูกใช้" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "ชื่อผู้ใช้งานฐานข้อมูล" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "รหัสผ่านฐานข้อมูล" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "ชื่อฐานข้อมูล" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "พื้นที่ตารางในฐานข้อมูล" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Database host" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" @@ -528,36 +527,32 @@ msgstr "web services under your control" msgid "Log out" msgstr "ออกจากระบบ" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "การเข้าสู่ระบบอัตโนมัติถูกปฏิเสธแล้ว" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "หากคุณยังไม่ได้เปลี่ยนรหัสผ่านของคุณเมื่อเร็วๆนี้, บัญชีของคุณอาจถูกบุกรุกโดยผู้อื่น" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "กรุณาเปลี่ยนรหัสผ่านของคุณอีกครั้ง เพื่อป้องกันบัญชีของคุณให้ปลอดภัย" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "ลืมรหัสผ่าน?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "จำรหัสผ่าน" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "เข้าสู่ระบบ" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "คุณออกจากระบบเรียบร้อยแล้ว" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "ก่อนหน้า" @@ -566,16 +561,7 @@ msgstr "ก่อนหน้า" msgid "next" msgstr "ถัดไป" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "คำเตือนเพื่อความปลอดภัย!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "กรุณายืนยันรหัสผ่านของคุณ <br/> เพื่อความปลอดภัย คุณจะถูกขอให้กรอกรหัสผ่านอีกครั้ง" - -#: templates/verify.php:16 -msgid "Verify" -msgstr "ยืนยัน" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index cff6308811a..290a7cebd89 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 10:27+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,46 +19,72 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง MAX_FILE_SIZE ที่ระบุเอาไว้ในรูปแบบคำสั่งในภาษา HTML" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ที่อัพโหลดยังไม่ได้ถูกอัพโหลดอย่างสมบูรณ์" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ยังไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "แฟ้มเอกสารชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ไฟล์" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "ยกเลิกการแชร์ข้อมูล" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "ลบ" @@ -66,122 +92,134 @@ msgstr "ลบ" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "แนะนำชื่อ" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "แทนที่ {new_name} แล้ว" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "ยกเลิกการแชร์แล้ว {files} ไฟล์" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "ลบไฟล์แล้ว {files} ไฟล์" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "กำลังสร้างไฟล์บีบอัด ZIP อาจใช้เวลาสักครู่" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "เกิดข้อผิดพลาดในการอัพโหลด" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "ปิด" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "กำลังอัพโหลด {count} ไฟล์" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "ชื่อโฟลเดอร์ที่ใช้ไม่ถูกต้อง การใช้งาน \"ถูกแชร์\" ถูกสงวนไว้เฉพาะ Owncloud เท่านั้น" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL ไม่สามารถเว้นว่างได้" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:699 +#: js/files.js:727 msgid "{count} files scanned" msgstr "สแกนไฟล์แล้ว {count} ไฟล์" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "พบข้อผิดพลาดในระหว่างการสแกนไฟล์" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "ชื่อ" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "ขนาด" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ไฟล์" @@ -193,27 +231,27 @@ msgstr "การจัดกาไฟล์" msgid "Maximum upload size" msgstr "ขนาดไฟล์สูงสุดที่อัพโหลดได้" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "จำนวนสูงสุดที่สามารถทำได้: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "จำเป็นต้องใช้สำหรับการดาวน์โหลดไฟล์พร้อมกันหลายๆไฟล์หรือดาวน์โหลดทั้งโฟลเดอร์" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "อนุญาตให้ดาวน์โหลดเป็นไฟล์ ZIP ได้" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 หมายถึงไม่จำกัด" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ขนาดไฟล์ ZIP สูงสุด" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "บันทึก" @@ -233,36 +271,36 @@ msgstr "แฟ้มเอกสาร" msgid "From link" msgstr "จากลิงก์" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "อัพโหลด" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index 7582be9f673..c36c1b5941b 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 11:09+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "หมดอายุทุกรุ่น" - #: js/versions.js:16 msgid "History" msgstr "ประวัติ" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "รุ่น" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "การกำหนดเวอร์ชั่นของไฟล์" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 93bec7510e5..71618495c44 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/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: 2012-11-23 00:01+0100\n" -"PO-Revision-Date: 2012-11-22 10:45+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "ช่วยเหลือ" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "ส่วนตัว" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "ตั้งค่า" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "ผู้ใช้งาน" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "แอปฯ" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "ผู้ดูแล" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "กลับไปที่ไฟล์" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "ไฟล์ที่เลือกมีขนาดใหญ่เกินกว่าที่จะสร้างเป็นไฟล์ zip" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "แอพพลิเคชั่นดังกล่าวยังไม่ได้เปิดใช้งาน" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน" @@ -82,55 +86,55 @@ msgstr "ข้อความ" msgid "Images" msgstr "รูปภาพ" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "วินาทีที่ผ่านมา" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 นาทีมาแล้ว" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d นาทีที่ผ่านมา" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d ชั่วโมงก่อนหน้านี้" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "วันนี้" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "เมื่อวานนี้" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d วันที่ผ่านมา" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "เดือนที่แล้ว" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d เดือนมาแล้ว" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "ปีที่แล้ว" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "ปีที่ผ่านมา" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 27f4a874232..a024b5901ae 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "มีกลุ่มดังกล่าวอยู่ในระบ msgid "Unable to add group" msgstr "ไม่สามารถเพิ่มกลุ่มได้" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "ไม่สามารถเปิดใช้งานแอปได้" @@ -44,14 +44,6 @@ msgstr "อีเมลถูกบันทึกแล้ว" msgid "Invalid email" msgstr "อีเมลไม่ถูกต้อง" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "เปลี่ยนชื่อบัญชี OpenID แล้ว" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "คำร้องขอไม่ถูกต้อง" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "ไม่สามารถลบกลุ่มได้" @@ -68,6 +60,10 @@ msgstr "ไม่สามารถลบผู้ใช้งานได้" msgid "Language changed" msgstr "เปลี่ยนภาษาเรียบร้อยแล้ว" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "คำร้องขอไม่ถูกต้อง" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index c8a7bd651bd..c770828e2aa 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "DN ฐาน" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "คุณสามารถระบุ DN หลักสำหรับผู้ใช้งานและกลุ่มต่างๆในแท็บขั้นสูงได้" @@ -115,10 +119,18 @@ msgstr "พอร์ต" msgid "Base User Tree" msgstr "รายการผู้ใช้งานหลักแบบ Tree" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "รายการกลุ่มหลักแบบ Tree" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "ความสัมพันธ์ของสมาชิกในกลุ่ม" diff --git a/l10n/th_TH/user_webdavauth.po b/l10n/th_TH/user_webdavauth.po index e169eac8418..12c2efcc210 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,17 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/tr/core.po b/l10n/tr/core.po index 7058a258c8a..12efc8d5b59 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 12:25+0000\n" -"Last-Translator: Necdet Yücel <necdetyucel@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,55 +87,55 @@ msgstr "" msgid "Settings" msgstr "Ayarlar" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "bugün" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "dün" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "geçen ay" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "ay önce" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "geçen yıl" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "yıl önce" @@ -211,7 +211,6 @@ msgid "Password protect" msgstr "Şifre korunması" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Parola" @@ -556,10 +555,6 @@ msgstr "hatırla" msgid "Log in" msgstr "Giriş yap" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Çıkış yaptınız." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "önceki" @@ -568,16 +563,7 @@ msgstr "önceki" msgid "next" msgstr "sonraki" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Güvenlik Uyarısı!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Doğrula" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index bfd4390738c..641b6c26f92 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 11:23+0000\n" -"Last-Translator: Necdet Yücel <necdetyucel@gmail.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,46 +22,72 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Dosya yüklenmedi. Bilinmeyen hata" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Bir hata yok, dosya başarıyla yüklendi" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Yüklenen dosyanın sadece bir kısmı yüklendi" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Hiç dosya yüklenmedi" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Geçici bir klasör eksik" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Diske yazılamadı" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Dosyalar" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Sil" @@ -69,122 +95,134 @@ msgstr "Sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "değiştir" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Öneri ad" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "iptal" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "değiştirilen {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "geri al" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "paylaşılmamış {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "silinen {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP dosyası oluşturuluyor, biraz sürebilir." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Yükleme hatası" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Kapat" -#: js/files.js:248 js/files.js:362 js/files.js:392 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Bekliyor" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/files.js:271 js/files.js:325 js/files.js:340 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} dosya yükleniyor" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Geçersiz dizin ismi. \"Shared\" dizini OwnCloud tarafından kullanılmaktadır." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL boş olamaz." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:699 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} dosya tarandı" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "tararamada hata oluşdu" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ad" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Boyut" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 dosya" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} dosya" @@ -196,27 +234,27 @@ msgstr "Dosya taşıma" msgid "Maximum upload size" msgstr "Maksimum yükleme boyutu" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "mümkün olan en fazla: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Çoklu dosya ve dizin indirmesi için gerekli." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP indirmeyi aktif et" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 limitsiz demektir" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP dosyaları için en fazla girdi sayısı" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Kaydet" @@ -236,36 +274,36 @@ msgstr "Klasör" msgid "From link" msgstr "Bağlantıdan" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Yükle" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "İndir" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Yüklemeniz çok büyük" -#: templates/index.php:106 +#: templates/index.php:104 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:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index 1d3dff15348..6f30f6794a2 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 09:24+0000\n" -"Last-Translator: Necdet Yücel <necdetyucel@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:7 -msgid "Expire all versions" -msgstr "Tüm sürümleri sona erdir" - #: js/versions.js:16 msgid "History" msgstr "Geçmiş" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Sürümler" - -#: templates/settings-personal.php:10 -msgid "This will delete all existing backup versions of your files" -msgstr "Bu dosyalarınızın tüm yedek sürümlerini silecektir" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Dosya Sürümleri" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 66590bc8eb0..1b796458afd 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/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: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 11:03+0000\n" -"Last-Translator: Necdet Yücel <necdetyucel@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,27 +18,27 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Yardı" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Kişisel" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Ayarlar" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Kullanıcılar" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Uygulamalar" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Yönetici" @@ -58,11 +58,15 @@ msgstr "Dosyalara dön" msgid "Selected files too large to generate zip file." msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Uygulama etkinleştirilmedi" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Kimlik doğrulama hatası" @@ -82,55 +86,55 @@ msgstr "Metin" msgid "Images" msgstr "Resimler" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "saniye önce" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 dakika önce" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d dakika önce" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 saat önce" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d saat önce" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "bugün" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "dün" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d gün önce" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "geçen ay" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d ay önce" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "geçen yıl" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "yıl önce" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index cfdb8287d08..0e563c6d4f5 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "Grup zaten mevcut" msgid "Unable to add group" msgstr "Gruba eklenemiyor" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Uygulama devreye alınamadı" @@ -45,14 +45,6 @@ msgstr "Eposta kaydedildi" msgid "Invalid email" msgstr "Geçersiz eposta" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID Değiştirildi" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Geçersiz istek" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Grup silinemiyor" @@ -69,6 +61,10 @@ msgstr "Kullanıcı silinemiyor" msgid "Language changed" msgstr "Dil değiştirildi" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Geçersiz istek" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 66d4941f8de..306152d4493 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" -"PO-Revision-Date: 2012-12-28 09:39+0000\n" -"Last-Translator: Necdet Yücel <necdetyucel@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "Base DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -115,10 +119,18 @@ msgstr "Port" msgid "Base User Tree" msgstr "Temel Kullanıcı Ağacı" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Temel Grup Ağacı" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Grup-Üye işbirliği" diff --git a/l10n/tr/user_webdavauth.po b/l10n/tr/user_webdavauth.po index ca1186efbec..912a2ff24d2 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/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: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 09:06+0000\n" -"Last-Translator: Necdet Yücel <necdetyucel@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +19,17 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/uk/core.po b/l10n/uk/core.po index 6fa7d5e24ee..21be89f3a48 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,12 +7,13 @@ # <skoptev@ukr.net>, 2012. # Soul Kim <warlock.rf@gmail.com>, 2012. # <victor.dubiniuk@gmail.com>, 2012. +# <volodya327@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 15:49+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 13:18+0000\n" "Last-Translator: volodya327 <volodya327@gmail.com>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -87,55 +88,55 @@ msgstr "Помилка при видалені %s із обраного." msgid "Settings" msgstr "Налаштування" -#: js/js.js:704 +#: js/js.js:706 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:705 +#: js/js.js:707 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:706 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:707 +#: js/js.js:709 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:708 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:709 +#: js/js.js:711 msgid "today" msgstr "сьогодні" -#: js/js.js:710 +#: js/js.js:712 msgid "yesterday" msgstr "вчора" -#: js/js.js:711 +#: js/js.js:713 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:712 +#: js/js.js:714 msgid "last month" msgstr "минулого місяця" -#: js/js.js:713 +#: js/js.js:715 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:714 +#: js/js.js:716 msgid "months ago" msgstr "місяці тому" -#: js/js.js:715 +#: js/js.js:717 msgid "last year" msgstr "минулого року" -#: js/js.js:716 +#: js/js.js:718 msgid "years ago" msgstr "роки тому" @@ -165,8 +166,8 @@ msgid "The object type is not specified." msgstr "Не визначено тип об'єкту." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Помилка" @@ -178,7 +179,7 @@ msgstr "Не визначено ім'я програми." msgid "The required file {file} is not installed!" msgstr "Необхідний файл {file} не встановлено!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -206,12 +207,11 @@ msgstr "Опублікувати для" msgid "Share with link" msgstr "Опублікувати через посилання" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Захистити паролем" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Пароль" @@ -275,23 +275,23 @@ msgstr "видалити" msgid "share" msgstr "опублікувати" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Ел. пошта надіслана" @@ -315,8 +315,8 @@ msgstr "Лист скидання відправлено." msgid "Request failed!" msgstr "Невдалий запит!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Ім'я користувача" @@ -405,44 +405,44 @@ msgstr "Ваш каталог з даними та Ваші файли можл msgid "Create an <strong>admin account</strong>" msgstr "Створити <strong>обліковий запис адміністратора</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Додатково" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Каталог даних" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Налаштування бази даних" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "буде використано" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Користувач бази даних" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Пароль для бази даних" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Назва бази даних" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Таблиця бази даних" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Хост бази даних" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Завершити налаштування" @@ -530,36 +530,32 @@ msgstr "веб-сервіс під вашим контролем" msgid "Log out" msgstr "Вихід" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Автоматичний вхід в систему відхилений!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Якщо Ви не міняли пароль останнім часом, Ваш обліковий запис може бути скомпрометованим!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Будь ласка, змініть свій пароль, щоб знову захистити Ваш обліковий запис." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Забули пароль?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "запам'ятати" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Вхід" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Ви вийшли з системи." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "попередній" @@ -568,16 +564,7 @@ msgstr "попередній" msgid "next" msgstr "наступний" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Попередження про небезпеку!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Будь ласка, повторно введіть свій пароль. <br/>З питань безпеки, Вам інколи доведеться повторно вводити свій пароль." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Підтвердити" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Оновлення ownCloud до версії %s, це може зайняти деякий час." diff --git a/l10n/uk/files.po b/l10n/uk/files.po index c37f23560d7..12e46e92ae8 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 10:32+0000\n" -"Last-Translator: volodya327 <volodya327@gmail.com>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,46 +20,72 @@ 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/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Не завантажено жодного файлу. Невідома помилка" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Файли" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Заборонити доступ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Видалити" @@ -67,122 +93,134 @@ msgstr "Видалити" msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "заміна" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "запропонуйте назву" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "відміна" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "замінено {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "відмінити" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "замінено {new_name} на {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "неопубліковано {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "видалено {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Створення ZIP-файлу, це може зайняти певний час." -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Неможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Помилка завантаження" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Закрити" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Очікування" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} файлів завантажується" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Невірне ім'я каталогу. Використання \"Shared\" зарезервовано Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL не може бути пустим." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} файлів проскановано" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "помилка при скануванні" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ім'я" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Розмір" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Змінено" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} файлів" @@ -194,27 +232,27 @@ msgstr "Робота з файлами" msgid "Maximum upload size" msgstr "Максимальний розмір відвантажень" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "макс.можливе:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Необхідно для мульти-файлового та каталогового завантаження." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Активувати ZIP-завантаження" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 є безліміт" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Максимальний розмір завантажуємого ZIP файлу" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Зберегти" @@ -234,36 +272,36 @@ msgstr "Папка" msgid "From link" msgstr "З посилання" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Відвантажити" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Тут нічого немає. Відвантажте що-небудь!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "Завантажити" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Файл занадто великий" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Файли скануються, зачекайте, будь-ласка." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Поточне сканування" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index 91a6d8643b1..1a8bb981db6 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-23 02:02+0200\n" -"PO-Revision-Date: 2012-10-22 12:22+0000\n" -"Last-Translator: skoptev <skoptev@ukr.net>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ 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/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Термін дії всіх версій" - #: js/versions.js:16 msgid "History" msgstr "Історія" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Версії" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Це призведе до знищення всіх існуючих збережених версій Ваших файлів" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Версії файлів" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index f2a86e71708..8d1708aa24e 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -6,13 +6,14 @@ # <dzubchikd@gmail.com>, 2012. # <skoptev@ukr.net>, 2012. # <victor.dubiniuk@gmail.com>, 2012. +# <volodya327@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-27 00:10+0100\n" -"PO-Revision-Date: 2012-11-26 15:40+0000\n" -"Last-Translator: skoptev <skoptev@ukr.net>\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 13:24+0000\n" +"Last-Translator: volodya327 <volodya327@gmail.com>\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" @@ -20,51 +21,55 @@ 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" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Допомога" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Особисте" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Налаштування" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Користувачі" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Додатки" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Адмін" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP завантаження вимкнено." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Файли повинні бути завантаженні послідовно." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Повернутися до файлів" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Вибрані фали завеликі для генерування zip файлу." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "не може бути визначено" + #: json.php:28 msgid "Application is not enabled" msgstr "Додаток не увімкнений" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Помилка автентифікації" @@ -84,55 +89,55 @@ msgstr "Текст" msgid "Images" msgstr "Зображення" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "секунди тому" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 хвилину тому" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d хвилин тому" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 годину тому" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d годин тому" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "сьогодні" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "вчора" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d днів тому" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "минулого місяця" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d місяців тому" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "минулого року" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "роки тому" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index cb8ce3e8cac..5d40f09facf 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -5,14 +5,14 @@ # Translators: # <dzubchikd@gmail.com>, 2012. # <skoptev@ukr.net>, 2012. -# <volodya327@gmail.com>, 2012. +# <volodya327@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 13:26+0000\n" +"Last-Translator: volodya327 <volodya327@gmail.com>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "Група вже існує" msgid "Unable to add group" msgstr "Не вдалося додати групу" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Не вдалося активувати програму. " @@ -44,14 +44,6 @@ msgstr "Адресу збережено" msgid "Invalid email" msgstr "Невірна адреса" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID змінено" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Помилковий запит" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Не вдалося видалити групу" @@ -68,6 +60,10 @@ msgstr "Не вдалося видалити користувача" msgid "Language changed" msgstr "Мова змінена" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Помилковий запит" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Адміністратор не може видалити себе з групи адмінів" @@ -247,11 +243,11 @@ msgstr "Створити" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "сховище за замовчуванням" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Необмежено" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -263,11 +259,11 @@ msgstr "Адміністратор групи" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Сховище" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "За замовчуванням" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index b6601497ecb..24f0b5ffdbb 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 12:52+0000\n" -"Last-Translator: volodya327 <volodya327@gmail.com>\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,9 +28,9 @@ msgstr "<b>Увага:</b> Застосунки user_ldap та user_webdavauth #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." -msgstr "<b>Увага:</ b> Потрібний модуль PHP LDAP не встановлено, базова програма працювати не буде. Будь ласка, зверніться до системного адміністратора, щоб встановити його." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" #: templates/settings.php:15 msgid "Host" @@ -46,6 +46,10 @@ msgid "Base DN" msgstr "Базовий DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Ви можете задати Базовий DN для користувачів і груп на вкладинці Додатково" @@ -116,10 +120,18 @@ msgstr "Порт" msgid "Base User Tree" msgstr "Основне Дерево Користувачів" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Основне Дерево Груп" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Асоціація Група-Член" diff --git a/l10n/uk/user_webdavauth.po b/l10n/uk/user_webdavauth.po index d81333a1909..eec04d63355 100644 --- a/l10n/uk/user_webdavauth.po +++ b/l10n/uk/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: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 01:58+0000\n" -"Last-Translator: volodya327 <volodya327@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +19,17 @@ 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" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL: http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." -msgstr "ownCloud відправить облікові дані на цей URL та буде інтерпретувати http 401 і http 403, як невірні облікові дані, а всі інші коди, як вірні." +"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/vi/core.po b/l10n/vi/core.po index bb3bb8b48dc..e86e7e5911f 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -88,55 +88,55 @@ msgstr "Lỗi xóa %s từ mục yêu thích." msgid "Settings" msgstr "Cài đặt" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hôm nay" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "tháng trước" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "tháng trước" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "năm trước" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "năm trước" @@ -166,8 +166,8 @@ msgid "The object type is not specified." msgstr "Loại đối tượng không được chỉ định." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Lỗi" @@ -179,7 +179,7 @@ msgstr "Tên ứng dụng không được chỉ định." msgid "The required file {file} is not installed!" msgstr "Tập tin cần thiết {file} không được cài đặt!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -207,12 +207,11 @@ msgstr "Chia sẻ với" msgid "Share with link" msgstr "Chia sẻ với liên kết" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Mật khẩu bảo vệ" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "Mật khẩu" @@ -276,23 +275,23 @@ msgstr "xóa" msgid "share" msgstr "chia sẻ" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -316,8 +315,8 @@ msgstr "Thiết lập lại email gởi." msgid "Request failed!" msgstr "Yêu cầu của bạn không thành công !" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Tên người dùng" @@ -406,44 +405,44 @@ msgstr "Thư mục dữ liệu và những tập tin của bạn có thể dễ msgid "Create an <strong>admin account</strong>" msgstr "Tạo một <strong>tài khoản quản trị</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Nâng cao" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Thư mục dữ liệu" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Cấu hình cơ sở dữ liệu" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "được sử dụng" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Người dùng cơ sở dữ liệu" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Mật khẩu cơ sở dữ liệu" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Tên cơ sở dữ liệu" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Cơ sở dữ liệu tablespace" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Database host" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Cài đặt hoàn tất" @@ -531,36 +530,32 @@ msgstr "các dịch vụ web dưới sự kiểm soát của bạn" msgid "Log out" msgstr "Đăng xuất" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Tự động đăng nhập đã bị từ chối !" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Nếu bạn không thay đổi mật khẩu gần đây của bạn, tài khoản của bạn có thể gặp nguy hiểm!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Vui lòng thay đổi mật khẩu của bạn để đảm bảo tài khoản của bạn một lần nữa." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Bạn quên mật khẩu ?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "ghi nhớ" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Đăng nhập" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Bạn đã đăng xuất." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Lùi lại" @@ -569,16 +564,7 @@ msgstr "Lùi lại" msgid "next" msgstr "Kế tiếp" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Cảnh báo bảo mật !" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Vui lòng xác nhận mật khẩu của bạn. <br/> Vì lý do bảo mật thỉnh thoảng bạn có thể được yêu cầu nhập lại mật khẩu." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Kiểm tra" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 2427e237dee..972bed79676 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,72 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Không có lỗi, các tập tin đã được tải lên thành công" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Kích thước những tập tin tải lên vượt quá MAX_FILE_SIZE đã được quy định" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Tập tin tải lên mới chỉ tải lên được một phần" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Không có tập tin nào được tải lên" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Không tìm thấy thư mục tạm" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Không thể ghi " +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Tập tin" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Không chia sẽ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Xóa" @@ -68,122 +94,134 @@ msgstr "Xóa" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "thay thế" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "tên gợi ý" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "hủy" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "đã thay thế {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "đã thay thế {new_name} bằng {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "hủy chia sẽ {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "đã xóa {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Tạo tập tin ZIP, điều này có thể làm mất một chút thời gian" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Không thể tải lên tập tin này do nó là một thư mục hoặc kích thước tập tin bằng 0 byte" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "Tải lên lỗi" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "Đóng" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Chờ" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} tập tin đang tải lên" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Tên thư mục không hợp lệ. Sử dụng \"Chia sẻ\" được dành riêng bởi Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL không được để trống." + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} tập tin đã được quét" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "lỗi trong khi quét" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Tên" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 thư mục" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} thư mục" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 tập tin" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} tập tin" @@ -195,27 +233,27 @@ msgstr "Xử lý tập tin" msgid "Maximum upload size" msgstr "Kích thước tối đa " -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "tối đa cho phép:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Cần thiết cho tải nhiều tập tin và thư mục." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Cho phép ZIP-download" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 là không giới hạn" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Kích thước tối đa cho các tập tin ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Lưu" @@ -235,36 +273,36 @@ msgstr "Thư mục" msgid "From link" msgstr "Từ liên kết" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Tải lên" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:57 +#: templates/index.php:56 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:71 +#: templates/index.php:70 msgid "Download" msgstr "Tải xuống" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" -#: templates/index.php:105 +#: templates/index.php:104 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:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "Hiện tại đang quét" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index c06b31deb15..4de9dbf8467 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-21 00:01+0100\n" -"PO-Revision-Date: 2012-11-20 04:32+0000\n" -"Last-Translator: Sơn Nguyễn <sonnghit@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,10 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "Hết hạn tất cả các phiên bản" - #: js/versions.js:16 msgid "History" msgstr "Lịch sử" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "Phiên bản" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "Khi bạn thực hiện thao tác này sẽ xóa tất cả các phiên bản sao lưu hiện có " - #: templates/settings.php:3 msgid "Files Versioning" msgstr "Phiên bản tập tin" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 915964d52ff..d838960fd97 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-21 00:01+0100\n" -"PO-Revision-Date: 2012-11-20 01:33+0000\n" -"Last-Translator: mattheu_9x <mattheu.9x@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,55 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Giúp đỡ" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Cá nhân" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Cài đặt" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Người dùng" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Ứng dụng" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Quản trị" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Tải về ZIP đã bị tắt." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Tập tin cần phải được tải về từng người một." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Trở lại tập tin" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Tập tin được chọn quá lớn để tạo tập tin ZIP." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Ứng dụng không được BẬT" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Lỗi xác thực" @@ -84,55 +88,55 @@ msgstr "Văn bản" msgid "Images" msgstr "Hình ảnh" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "1 giây trước" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 phút trước" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d phút trước" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 giờ trước" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d giờ trước" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hôm nay" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "hôm qua" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d ngày trước" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "tháng trước" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d tháng trước" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "năm trước" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "năm trước" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index e8689e484f1..d7c48f81a4b 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "Nhóm đã tồn tại" msgid "Unable to add group" msgstr "Không thể thêm nhóm" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "không thể kích hoạt ứng dụng." @@ -47,14 +47,6 @@ msgstr "Lưu email" msgid "Invalid email" msgstr "Email không hợp lệ" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "Đổi OpenID" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Yêu cầu không hợp lệ" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Không thể xóa nhóm" @@ -71,6 +63,10 @@ msgstr "Không thể xóa người dùng" msgid "Language changed" msgstr "Ngôn ngữ đã được thay đổi" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Yêu cầu không hợp lệ" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Quản trị viên không thể loại bỏ chính họ khỏi nhóm quản lý" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index c6157201e51..6e334612607 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -28,8 +28,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -46,6 +46,10 @@ msgid "Base DN" msgstr "DN cơ bản" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Bạn có thể chỉ định DN cơ bản cho người dùng và các nhóm trong tab Advanced" @@ -116,10 +120,18 @@ msgstr "Cổng" msgid "Base User Tree" msgstr "Cây người dùng cơ bản" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Cây nhóm cơ bản" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "Nhóm thành viên Cộng đồng" diff --git a/l10n/vi/user_webdavauth.po b/l10n/vi/user_webdavauth.po index 5faffd6c9af..5442bdaff42 100644 --- a/l10n/vi/user_webdavauth.po +++ b/l10n/vi/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,17 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index ad918d8e012..0e81b175791 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -85,55 +85,55 @@ msgstr "" msgid "Settings" msgstr "设置" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "秒前" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "今天" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "昨天" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "上个月" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "月前" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "去年" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "年前" @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "错误" @@ -176,7 +176,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "分享出错" @@ -204,12 +204,11 @@ msgstr "分享" msgid "Share with link" msgstr "分享链接" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "密码保护" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "密码" @@ -273,23 +272,23 @@ msgstr "删除" msgid "share" msgstr "分享" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "密码保护" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "取消设置失效日期出错" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "设置失效日期出错" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -313,8 +312,8 @@ msgstr "重置邮件已发送。" msgid "Request failed!" msgstr "请求失败!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "用户名" @@ -403,44 +402,44 @@ msgstr "您的数据文件夹和您的文件或许能够从互联网访问。own msgid "Create an <strong>admin account</strong>" msgstr "建立一个 <strong>管理帐户</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "进阶" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "数据存放文件夹" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "配置数据库" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "将会使用" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "数据库用户名" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "数据库表格空间" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "完成安装" @@ -528,36 +527,32 @@ msgstr "你控制下的网络服务" msgid "Log out" msgstr "注销" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "自动登录被拒绝!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "如果您最近没有修改您的密码,那您的帐号可能被攻击了!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "请修改您的密码以保护账户。" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "备忘" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "登陆" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "你已经注销了" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "后退" @@ -566,16 +561,7 @@ msgstr "后退" msgid "next" msgstr "前进" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "安全警告!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "请确认您的密码。<br/>处于安全原因你偶尔也会被要求再次输入您的密码。" - -#: templates/verify.php:16 -msgid "Verify" -msgstr "确认" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 7c74914a97f..b066b89ba00 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,72 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "没有上传文件。未知错误" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "没有任何错误,文件上传成功了" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件超过了HTML表单指定的MAX_FILE_SIZE" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "文件只有部分被上传" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "没有上传完成的文件" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "丢失了一个临时文件夹" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "写磁盘失败" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "文件" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "取消共享" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "删除" @@ -66,122 +92,134 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "替换" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "推荐名称" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "取消" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "已替换 {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "撤销" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "已用 {old_name} 替换 {new_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "未分享的 {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "已删除的 {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "正在生成ZIP文件,这可能需要点时间" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "不能上传你指定的文件,可能因为它是个文件夹或者大小为0" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "关闭" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pending" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} 个文件正在上传" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传。关闭页面会取消上传。" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "网址不能为空。" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} 个文件已扫描" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "扫描出错" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名字" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "修改日期" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 个文件" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 个文件" @@ -193,27 +231,27 @@ msgstr "文件处理中" msgid "Maximum upload size" msgstr "最大上传大小" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "最大可能" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "需要多文件和文件夹下载." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "支持ZIP下载" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0是无限的" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "最大的ZIP文件输入大小" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "保存" @@ -233,36 +271,36 @@ msgstr "文件夹" msgid "From link" msgstr "来自链接" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "上传" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "这里没有东西.上传点什么!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "下载" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "上传的文件太大了" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "你正在试图上传的文件超过了此服务器支持的最大的文件大小." -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "正在扫描文件,请稍候." -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "正在扫描" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index 493edd7cfe6..7676ba278c2 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-12 02:03+0200\n" -"PO-Revision-Date: 2012-10-11 23:49+0000\n" -"Last-Translator: marguerite su <i@marguerite.su>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "作废所有版本" - #: js/versions.js:16 msgid "History" msgstr "历史" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "版本" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "这将删除所有您现有文件的备份版本" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "文件版本" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index c32ef2de62c..d03b24aa3aa 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "帮助" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "私人" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "设置" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "用户" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "程序" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "管理员" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP 下载已关闭" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "需要逐个下载文件。" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "返回到文件" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大而不能生成 zip 文件。" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "应用未启用" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "验证错误" @@ -82,55 +86,55 @@ msgstr "文本" msgid "Images" msgstr "图片" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "秒前" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 分钟前" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d 分钟前" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "今天" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "昨天" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d 天前" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "上个月" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "去年" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 2c8e2cabac0..78eea9c8908 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "群组已存在" msgid "Unable to add group" msgstr "未能添加群组" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "未能启用应用" @@ -43,14 +43,6 @@ msgstr "Email 保存了" msgid "Invalid email" msgstr "非法Email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID 改变了" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "非法请求" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "未能删除群组" @@ -67,6 +59,10 @@ msgstr "未能删除用户" msgid "Language changed" msgstr "语言改变了" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "非法请求" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 75ea9d9c0e9..0e45bb6b182 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "基本判别名" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "您可以在高级选项卡中为用户和群组指定基本判别名" @@ -115,10 +119,18 @@ msgstr "端口" msgid "Base User Tree" msgstr "基本用户树" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "基本群组树" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "群组-成员组合" diff --git a/l10n/zh_CN.GB2312/user_webdavauth.po b/l10n/zh_CN.GB2312/user_webdavauth.po index 4c2e6b80abe..e9984fbe007 100644 --- a/l10n/zh_CN.GB2312/user_webdavauth.po +++ b/l10n/zh_CN.GB2312/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/zh_CN/core.po b/l10n/zh_CN/core.po index 2742708ecc6..9b8dcdd8495 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" -"PO-Revision-Date: 2012-12-23 14:31+0000\n" -"Last-Translator: Dianjin Wang <1132321739qq@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,55 +88,55 @@ msgstr "从收藏夹中移除%s时出错。" msgid "Settings" msgstr "设置" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "秒前" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "今天" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "昨天" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "上月" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "月前" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "去年" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "年前" @@ -212,7 +212,6 @@ msgid "Password protect" msgstr "密码保护" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "密码" @@ -557,10 +556,6 @@ msgstr "记住" msgid "Log in" msgstr "登录" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "您已注销。" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "上一页" @@ -569,16 +564,7 @@ msgstr "上一页" msgid "next" msgstr "下一页" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "安全警告!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "请验证您的密码。 <br/>出于安全考虑,你可能偶尔会被要求再次输入密码。" - -#: templates/verify.php:16 -msgid "Verify" -msgstr "验证" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 0493f0631c1..bda2cc9518c 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -5,6 +5,7 @@ # Translators: # <appweb.cn@gmail.com>, 2012. # Dianjin Wang <1132321739qq@gmail.com>, 2012. +# marguerite su <i@marguerite.su>, 2013. # <rainofchaos@gmail.com>, 2012. # <suiy02@gmail.com>, 2012. # <wengxt@gmail.com>, 2011, 2012. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 00:57+0000\n" -"Last-Translator: hanfeng <appweb.cn@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 11:25+0000\n" +"Last-Translator: marguerite su <i@marguerite.su>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,46 +23,72 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "无法移动 %s - 同名文件已存在" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "无法移动 %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "无法重命名文件" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "没有文件被上传。未知错误" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "没有发生错误,文件上传成功。" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件超过了在HTML 表单中指定的MAX_FILE_SIZE" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "只上传了文件的一部分" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "文件没有上传" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "写入磁盘失败" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "没有足够可用空间" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "无效文件夹。" + #: appinfo/app.php:10 msgid "Files" msgstr "文件" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "取消分享" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "删除" @@ -69,122 +96,134 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "替换" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "建议名称" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "取消" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "替换 {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "撤销" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "已将 {old_name}替换成 {new_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "取消了共享 {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "删除了 {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' 是一个无效的文件名。" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "文件名不能为空。" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" -#: js/files.js:183 +#: js/files.js:187 msgid "generating ZIP-file, it may take some time." msgstr "正在生成 ZIP 文件,可能需要一些时间" -#: js/files.js:218 +#: js/files.js:225 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" -#: js/files.js:218 +#: js/files.js:225 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:235 +#: js/files.js:242 msgid "Close" msgstr "关闭" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:261 js/files.js:377 js/files.js:410 msgid "Pending" msgstr "操作等待中" -#: js/files.js:274 +#: js/files.js:281 msgid "1 file uploading" msgstr "1个文件上传中" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:284 js/files.js:339 js/files.js:354 msgid "{count} files uploading" msgstr "{count} 个文件上传中" -#: js/files.js:349 js/files.js:382 +#: js/files.js:358 js/files.js:394 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:451 +#: js/files.js:465 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "无效的文件夹名称。”Shared“ 是 Owncloud 保留字符。" +#: js/files.js:538 +msgid "URL cannot be empty." +msgstr "URL不能为空" + +#: js/files.js:544 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" -#: js/files.js:704 +#: js/files.js:728 msgid "{count} files scanned" msgstr "{count} 个文件已扫描。" -#: js/files.js:712 +#: js/files.js:736 msgid "error while scanning" msgstr "扫描时出错" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:809 templates/index.php:64 msgid "Name" msgstr "名称" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:810 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:811 templates/index.php:77 msgid "Modified" msgstr "修改日期" -#: js/files.js:814 +#: js/files.js:830 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:816 +#: js/files.js:832 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:824 +#: js/files.js:840 msgid "1 file" msgstr "1 个文件" -#: js/files.js:826 +#: js/files.js:842 msgid "{count} files" msgstr "{count} 个文件" @@ -196,27 +235,27 @@ msgstr "文件处理" msgid "Maximum upload size" msgstr "最大上传大小" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "最大允许: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "多文件和文件夹下载需要此项。" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "启用 ZIP 下载" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 为无限制" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP 文件的最大输入大小" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "保存" @@ -236,36 +275,36 @@ msgstr "文件夹" msgid "From link" msgstr "来自链接" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "上传" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "下载" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大容量限制" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index df61cf98da4..8427a53caaf 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 09:58+0000\n" -"Last-Translator: hanfeng <appweb.cn@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "过期所有版本" - #: js/versions.js:16 msgid "History" msgstr "历史" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "版本" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "将会删除您的文件的所有备份版本" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "文件版本" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index aebc5a42f35..7dd9eb38371 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-19 00:01+0100\n" -"PO-Revision-Date: 2012-11-18 16:17+0000\n" -"Last-Translator: hanfeng <appweb.cn@gmail.com>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "帮助" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "个人" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "设置" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "用户" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "应用" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "管理" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "回到文件" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大,无法生成 zip 文件。" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "不需要程序" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "认证错误" @@ -83,55 +87,55 @@ msgstr "文本" msgid "Images" msgstr "图像" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "几秒前" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1分钟前" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d 分钟前" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1小时前" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d小时前" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "今天" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "昨天" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d 天前" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "上月" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d 月前" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "上年" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "几年前" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index a28ef198295..a0a2353d6d4 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -4,7 +4,7 @@ # # Translators: # <appweb.cn@gmail.com>, 2012. -# Dianjin Wang <1132321739qq@gmail.com>, 2012. +# Dianjin Wang <1132321739qq@gmail.com>, 2012-2013. # Phoenix Nemo <>, 2012. # <rainofchaos@gmail.com>, 2012. # <suiy02@gmail.com>, 2012. @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 12:51+0000\n" +"Last-Translator: Dianjin Wang <1132321739qq@gmail.com>\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" @@ -35,7 +35,7 @@ msgstr "已存在该组" msgid "Unable to add group" msgstr "无法添加组" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "无法开启App" @@ -47,14 +47,6 @@ msgstr "电子邮件已保存" msgid "Invalid email" msgstr "无效的电子邮件" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID 已修改" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "非法请求" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "无法删除组" @@ -71,6 +63,10 @@ msgstr "无法删除用户" msgid "Language changed" msgstr "语言已修改" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "非法请求" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "管理员不能将自己移出管理组。" @@ -250,11 +246,11 @@ msgstr "创建" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "默认存储" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "无限" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -266,11 +262,11 @@ msgstr "组管理员" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "存储" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "默认" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index be239585259..b9c039f6bf8 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -4,12 +4,13 @@ # # Translators: # <appweb.cn@gmail.com>, 2012. +# marguerite su <i@marguerite.su>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -23,12 +24,12 @@ msgid "" "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "<b>警告:</b>应用 user_ldap 和 user_webdavauth 不兼容。您可能遭遇未预料的行为。请垂询您的系统管理员禁用其中一个。" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +46,10 @@ msgid "Base DN" msgstr "Base DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "您可以在高级选项卡里为用户和组指定Base DN" @@ -115,10 +120,18 @@ msgstr "端口" msgid "Base User Tree" msgstr "基础用户树" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "基础组树" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "组成员关联" @@ -171,7 +184,7 @@ msgstr "字节数" #: templates/settings.php:36 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "以秒计。修改将清空缓存。" #: templates/settings.php:37 msgid "" diff --git a/l10n/zh_CN/user_webdavauth.po b/l10n/zh_CN/user_webdavauth.po index fc3ccc1393b..507b60d8a07 100644 --- a/l10n/zh_CN/user_webdavauth.po +++ b/l10n/zh_CN/user_webdavauth.po @@ -5,13 +5,14 @@ # Translators: # <appweb.cn@gmail.com>, 2012. # Dianjin Wang <1132321739qq@gmail.com>, 2012. +# marguerite su <i@marguerite.su>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" -"PO-Revision-Date: 2012-12-23 13:55+0000\n" -"Last-Translator: Dianjin Wang <1132321739qq@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +20,17 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "URL:http://" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/zh_HK/core.po b/l10n/zh_HK/core.po index 27fcd9c0a1f..d58ec8a3911 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -175,7 +175,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -203,12 +203,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "" @@ -272,23 +271,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +311,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "" @@ -402,44 +401,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -527,36 +526,32 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "你已登出。" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" @@ -565,16 +560,7 @@ msgstr "" msgid "next" msgstr "" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index c45ea5afdd4..56eb4f59e2b 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,72 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -64,122 +90,134 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -191,27 +229,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" @@ -231,36 +269,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/zh_HK/files_versions.po b/l10n/zh_HK/files_versions.po index 392cfcc9935..4859a33c5a0 100644 --- a/l10n/zh_HK/files_versions.po +++ b/l10n/zh_HK/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: 2012-11-19 00:01+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index e4752fd9c27..f3bc0dc6e13 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-19 00:01+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,51 +17,55 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 0b9bc749d96..db5e3f915b9 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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 24846079f01..8a7d8cdab9c 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" diff --git a/l10n/zh_HK/user_webdavauth.po b/l10n/zh_HK/user_webdavauth.po index c1f1ee6edb2..5a2c43c09ce 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/zh_TW/core.po b/l10n/zh_TW/core.po index 9e9cb515874..a331ba2944f 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -6,12 +6,13 @@ # Donahue Chuang <soshinwu@gmail.com>, 2012. # <dw4dev@gmail.com>, 2012. # Ming Yi Wu <mingi.wu@gmail.com>, 2012. +# <nfsmwlin@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -23,38 +24,38 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "用戶 %s 與您分享了一個檔案" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "用戶 %s 與您分享了一個資料夾" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "用戶 %s 與您分享了檔案 \"%s\" ,您可以從這裡下載它: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "用戶 %s 與您分享了資料夾 \"%s\" ,您可以從這裡下載它: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "未提供分類類型。" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "無分類添加?" +msgstr "沒有可增加的分類?" #: ajax/vcategories/add.php:37 msgid "This category already exists: " -msgstr "此分類已經存在:" +msgstr "此分類已經存在:" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -66,75 +67,75 @@ msgstr "不支援的物件類型" #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "未提供 %s ID 。" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "加入 %s 到最愛時發生錯誤。" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "沒選擇要刪除的分類" +msgstr "沒有選擇要刪除的分類。" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "從最愛移除 %s 時發生錯誤。" #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "設定" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 個小時前" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" -msgstr "{hours} 個小時前" +msgstr "{hours} 小時前" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "今天" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "昨天" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "上個月" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "幾個月前" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "去年" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "幾年前" @@ -161,23 +162,23 @@ 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 "" +msgstr "未指定物件類型。" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "錯誤" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "沒有詳述APP名稱." +msgstr "沒有指定 app 名稱。" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "沒有安裝所需的檔案 {file} !" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -187,11 +188,11 @@ msgstr "取消分享時發生錯誤" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "" +msgstr "修改權限時發生錯誤" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "由 {owner} 分享給您和 {group}" #: js/share.js:153 msgid "Shared with you by {owner}" @@ -199,28 +200,27 @@ msgstr "{owner} 已經和您分享" #: js/share.js:158 msgid "Share with" -msgstr "與分享" +msgstr "與...分享" #: js/share.js:163 msgid "Share with link" msgstr "使用連結分享" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "密碼保護" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "密碼" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "將連結 email 給別人" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "寄出" #: js/share.js:177 msgid "Set expiration date" @@ -232,15 +232,15 @@ msgstr "到期日" #: js/share.js:210 msgid "Share via email:" -msgstr "透過email分享:" +msgstr "透過 email 分享:" #: js/share.js:212 msgid "No people found" -msgstr "" +msgstr "沒有找到任何人" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "" +msgstr "不允許重新分享" #: js/share.js:275 msgid "Shared in {item} with {user}" @@ -274,25 +274,25 @@ msgstr "刪除" msgid "share" msgstr "分享" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" -msgstr "密碼保護" +msgstr "受密碼保護" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "" +msgstr "解除過期日設定失敗" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "錯誤的到期日設定" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "正在寄出..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Email 已寄出" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -300,28 +300,28 @@ msgstr "ownCloud 密碼重設" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "請循以下聯結重設你的密碼: (聯結) " +msgstr "請循以下聯結重設你的密碼: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "重設密碼的連結將會寄到你的電子郵件信箱" +msgstr "重設密碼的連結將會寄到你的電子郵件信箱。" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "重設郵件已送出." +msgstr "重設郵件已送出。" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "請求失敗!" +msgstr "請求失敗!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "使用者名稱" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "要求重設" +msgstr "請求重設" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -361,7 +361,7 @@ msgstr "幫助" #: templates/403.php:12 msgid "Access forbidden" -msgstr "禁止存取" +msgstr "存取被拒" #: templates/404.php:12 msgid "Cloud not found" @@ -373,7 +373,7 @@ msgstr "編輯分類" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "添加" +msgstr "增加" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" @@ -383,13 +383,13 @@ msgstr "安全性警告" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "沒有可用的隨機數字產生器, 請啟用 PHP 中 OpenSSL 擴充功能." +msgstr "沒有可用的亂數產生器,請啟用 PHP 中的 OpenSSL 擴充功能。" #: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "若沒有安全的亂數產生器,攻擊者可能可以預測密碼重設信物,然後控制您的帳戶。" #: templates/installation.php:32 msgid "" @@ -398,50 +398,50 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "建立一個<strong>管理者帳號</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "進階" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "資料夾" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "設定資料庫" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "將會使用" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "資料庫主機" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "完成設定" @@ -523,42 +523,38 @@ msgstr "十二月" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "網路服務已在你控制" +msgstr "網路服務在您控制之下" #: templates/layout.user.php:45 msgid "Log out" msgstr "登出" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "自動登入被拒!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "請更改您的密碼以再次取得您的帳戶的控制權。" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" -msgstr "忘記密碼?" +msgstr "忘記密碼?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "記住" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "登入" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "你已登出" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "上一頁" @@ -567,16 +563,7 @@ msgstr "上一頁" msgid "next" msgstr "下一頁" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "安全性警告!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" -msgstr "驗證" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 4e18f079575..bed97e748a0 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -6,14 +6,15 @@ # Donahue Chuang <soshinwu@gmail.com>, 2012. # <dw4dev@gmail.com>, 2012. # Eddy Chang <taiwanmambo@gmail.com>, 2012. +# <nfsmwlin@gmail.com>, 2013. # ywang <ywang1007@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 06:24+0000\n" +"Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,46 +22,72 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "無法移動 %s - 同名的檔案已經存在" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "無法移動 %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "無法重新命名檔案" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "沒有檔案被上傳。未知的錯誤。" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "無錯誤,檔案上傳成功" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制" +msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" -msgstr "只有部分檔案被上傳" +msgstr "只有檔案的一部分被上傳" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "無已上傳檔案" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "遺失暫存資料夾" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "沒有足夠的可用空間" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "無效的資料夾。" + #: appinfo/app.php:10 msgid "Files" msgstr "檔案" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "取消共享" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "刪除" @@ -68,122 +95,134 @@ msgstr "刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "取代" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" -msgstr "" +msgstr "建議檔名" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "取消" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "已取代 {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "復原" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "使用 {new_name} 取代 {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" -msgstr "" +msgstr "已取消分享 {files}" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" -msgstr "" +msgstr "已刪除 {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' 是不合法的檔名。" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "檔名不能為空。" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." -msgstr "產生壓縮檔, 它可能需要一段時間." +msgstr "產生 ZIP 壓縮檔,這可能需要一段時間。" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "上傳發生錯誤" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "關閉" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" -msgstr "" +msgstr "等候中" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} 個檔案正在上傳" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "上傳取消" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "檔案上傳中. 離開此頁面將會取消上傳." +msgstr "檔案上傳中。離開此頁面將會取消上傳。" + +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL 不能為空白." -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "無效的資料夾名稱. \"Shared\" 名稱已被 Owncloud 所保留使用" +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留" -#: js/files.js:704 +#: js/files.js:727 msgid "{count} files scanned" -msgstr "" +msgstr "{count} 個檔案已掃描" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "掃描時發生錯誤" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名稱" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "修改" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 個檔案" @@ -193,29 +232,29 @@ msgstr "檔案處理" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "最大上傳容量" +msgstr "最大上傳檔案大小" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " -msgstr "最大允許: " +msgstr "最大允許:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "針對多檔案和目錄下載是必填的" +msgstr "針對多檔案和目錄下載是必填的。" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "啟用 Zip 下載" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0代表沒有限制" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "針對ZIP檔案最大輸入大小" +msgstr "針對 ZIP 檔案最大輸入大小" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "儲存" @@ -233,38 +272,38 @@ msgstr "資料夾" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "從連結" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "上傳" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "取消上傳" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" -msgstr "沒有任何東西。請上傳內容!" +msgstr "沒有任何東西。請上傳內容!" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "下載" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "上傳過大" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "你試圖上傳的檔案已超過伺服器的最大容量限制。 " +msgstr "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。 " -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "正在掃描檔案,請稍等。" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "目前掃描" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index de8f1475443..1d41bf764bc 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: 2012-11-29 00:04+0100\n" -"PO-Revision-Date: 2012-11-28 01:33+0000\n" -"Last-Translator: dw4dev <dw4dev@gmail.com>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,10 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "所有逾期的版本" - #: js/versions.js:16 msgid "History" msgstr "歷史" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "版本" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "檔案版本化中..." diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 2bc0c14b6c0..3e708c8a280 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-27 00:10+0100\n" -"PO-Revision-Date: 2012-11-26 09:03+0000\n" -"Last-Translator: sofiasu <sofia168@livemail.tw>\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,55 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "說明" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "個人" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "設定" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "使用者" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "應用程式" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "管理" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP 下載已關閉" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "檔案需要逐一下載" -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "回到檔案列表" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "選擇的檔案太大以致於無法產生壓縮檔" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "應用程式未啟用" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "認證錯誤" @@ -84,55 +88,55 @@ msgstr "文字" msgid "Images" msgstr "圖片" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "幾秒前" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 分鐘前" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d 分鐘前" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1小時之前" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d小時之前" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "今天" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "昨天" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d 天前" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "上個月" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d個月之前" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "去年" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "幾年前" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 6168a8b0d36..36a92e308c2 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -5,6 +5,7 @@ # Translators: # Donahue Chuang <soshinwu@gmail.com>, 2012. # <dw4dev@gmail.com>, 2012. +# <nfsmwlin@gmail.com>, 2013. # <sy6614@yahoo.com.hk>, 2012. # <weiyu871@ms14.url.com.tw>, 2012. # <wu0809@msn.com>, 2012. @@ -13,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -35,7 +36,7 @@ msgstr "群組已存在" msgid "Unable to add group" msgstr "群組增加失敗" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "未能啟動此app" @@ -47,14 +48,6 @@ msgstr "Email已儲存" msgid "Invalid email" msgstr "無效的email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID 已變更" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "無效請求" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "群組刪除錯誤" @@ -71,6 +64,10 @@ msgstr "使用者刪除錯誤" msgid "Language changed" msgstr "語言已變更" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "無效請求" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "管理者帳號無法從管理者群組中移除" @@ -123,27 +120,27 @@ msgstr "<span class=\"licence\"></span>-核准: <span class=\"author\"></span>" #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "用戶說明文件" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "管理者說明文件" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "線上說明文件" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "論壇" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Bugtracker" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "商用支援" #: templates/personal.php:8 #, php-format @@ -156,15 +153,15 @@ msgstr "客戶" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "下載桌面客戶端" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "下載 Android 客戶端" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "下載 iOS 客戶端" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -216,15 +213,15 @@ msgstr "幫助翻譯" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "在您的檔案管理員中使用這個地址來連線到 ownCloud" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "版本" #: templates/personal.php:65 msgid "" @@ -250,11 +247,11 @@ msgstr "創造" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "預設儲存區" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "無限制" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -266,11 +263,11 @@ msgstr "群組 管理員" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "儲存區" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "預設" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 2bf0669ac23..eb47122f1b1 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -45,6 +45,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -115,10 +119,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" diff --git a/l10n/zh_TW/user_webdavauth.po b/l10n/zh_TW/user_webdavauth.po index 0870470a5c2..d99e5ba2a7f 100644 --- a/l10n/zh_TW/user_webdavauth.po +++ b/l10n/zh_TW/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,17 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/zu_ZA/core.po b/l10n/zu_ZA/core.po index 57a6cff9898..c559a642746 100644 --- a/l10n/zu_ZA/core.po +++ b/l10n/zu_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: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:03+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -83,55 +83,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -161,8 +161,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -174,7 +174,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -202,12 +202,11 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 msgid "Password" msgstr "" @@ -271,23 +270,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -311,8 +310,8 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "" @@ -401,44 +400,44 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -526,36 +525,32 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" @@ -564,16 +559,7 @@ msgstr "" msgid "next" msgstr "" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/zu_ZA/files.po b/l10n/zu_ZA/files.po index 078ee8781ef..d9c0a65c13d 100644 --- a/l10n/zu_ZA/files.po +++ b/l10n/zu_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,72 @@ msgstr "" "Language: zu_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -64,122 +90,134 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:224 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:280 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:704 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -191,27 +229,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" @@ -231,36 +269,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/zu_ZA/files_versions.po b/l10n/zu_ZA/files_versions.po index 7bc842be419..190d72f8853 100644 --- a/l10n/zu_ZA/files_versions.po +++ b/l10n/zu_ZA/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: 2012-11-06 00:00+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: zu_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" -msgstr "" - #: js/versions.js:16 msgid "History" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" -msgstr "" - -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" -msgstr "" - #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/zu_ZA/lib.po b/l10n/zu_ZA/lib.po index 248d04871da..f463152bf30 100644 --- a/l10n/zu_ZA/lib.po +++ b/l10n/zu_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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: zu_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/zu_ZA/settings.po b/l10n/zu_ZA/settings.po index c8c1d7fb260..723004ab1e7 100644 --- a/l10n/zu_ZA/settings.po +++ b/l10n/zu_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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/zu_ZA/user_ldap.po b/l10n/zu_ZA/user_ldap.po index 3add8a2631e..e02fa17c60c 100644 --- a/l10n/zu_ZA/user_ldap.po +++ b/l10n/zu_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"PO-Revision-Date: 2013-01-15 23:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgstr "" #: templates/settings.php:11 msgid "" -"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" -" not work. Please ask your system administrator to install it." +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:15 @@ -44,6 +44,10 @@ msgid "Base DN" msgstr "" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" @@ -114,10 +118,18 @@ msgstr "" msgid "Base User Tree" msgstr "" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "" + #: templates/settings.php:27 msgid "Group-Member association" msgstr "" diff --git a/l10n/zu_ZA/user_webdavauth.po b/l10n/zu_ZA/user_webdavauth.po index 3a53e0a85e8..012774040c7 100644 --- a/l10n/zu_ZA/user_webdavauth.po +++ b/l10n/zu_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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"POT-Creation-Date: 2013-01-15 00:03+0100\n" +"PO-Revision-Date: 2013-01-14 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,17 @@ msgstr "" "Language: zu_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + #: templates/settings.php:4 msgid "URL: http://" msgstr "" #: templates/settings.php:6 msgid "" -"ownCloud will send the user credentials to this URL is interpret http 401 " -"and http 403 as credentials wrong and all other codes as credentials " -"correct." +"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/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php index 9839dafbce1..8f057cfb6e8 100644 --- a/lib/MDB2/Driver/sqlite3.php +++ b/lib/MDB2/Driver/sqlite3.php @@ -98,7 +98,7 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common if ($this->connection) { $native_code = $this->connection->lastErrorCode(); } - $native_msg = html_entity_decode($this->_lasterror); + $native_msg = html_entity_decode($this->_lasterror); // PHP 5.2+ prepends the function name to $php_errormsg, so we need // this hack to work around it, per bug #9599. diff --git a/lib/api.php b/lib/api.php index 7d8f6878076..0fce109a423 100644 --- a/lib/api.php +++ b/lib/api.php @@ -42,12 +42,12 @@ class OC_API { private static function init() { self::$server = new OC_OAuth_Server(new OC_OAuth_Store()); } - + /** * api actions */ protected static $actions = array(); - + /** * registers an api call * @param string $method the http method @@ -58,7 +58,7 @@ class OC_API { * @param array $defaults * @param array $requirements */ - public static function register($method, $url, $action, $app, + public static function register($method, $url, $action, $app, $authLevel = OC_API::USER_AUTH, $defaults = array(), $requirements = array()) { @@ -73,7 +73,7 @@ class OC_API { } self::$actions[$name] = array('app' => $app, 'action' => $action, 'authlevel' => $authLevel); } - + /** * handles an api call * @param array $parameters @@ -92,7 +92,7 @@ class OC_API { $response = call_user_func(self::$actions[$name]['action'], $parameters); } else { $response = new OC_OCS_Result(null, 998, 'Api method not found'); - } + } } else { header('WWW-Authenticate: Basic realm="Authorization Required"'); header('HTTP/1.0 401 Unauthorized'); @@ -105,7 +105,7 @@ class OC_API { // logout the user to be stateless OC_User::logout(); } - + /** * authenticate the api call * @param array $action the action details as supplied to OC_API::register() @@ -129,8 +129,7 @@ class OC_API { return false; } else { $subAdmin = OC_SubAdmin::isSubAdmin($user); - $admin = OC_Group::inGroup($user, 'admin'); - if($subAdmin || $admin) { + if($subAdmin) { return true; } else { return false; @@ -143,7 +142,7 @@ class OC_API { if(!$user) { return false; } else { - return OC_Group::inGroup($user, 'admin'); + return OC_User::isAdminUser($user); } break; default: @@ -151,18 +150,18 @@ class OC_API { return false; break; } - } - + } + /** * http basic auth * @return string|false (username, or false on failure) */ - private static function loginUser(){ + private static function loginUser(){ $authUser = isset($_SERVER['PHP_AUTH_USER']) ? $_SERVER['PHP_AUTH_USER'] : ''; $authPw = isset($_SERVER['PHP_AUTH_PW']) ? $_SERVER['PHP_AUTH_PW'] : ''; return OC_User::login($authUser, $authPw) ? $authUser : false; } - + /** * respond to a call * @param int|array $result the result from the api method @@ -198,5 +197,5 @@ class OC_API { } } } - + } diff --git a/lib/app.php b/lib/app.php index 30f76300365..410cb4c12fc 100644 --- a/lib/app.php +++ b/lib/app.php @@ -137,7 +137,7 @@ class OC_App{ OC_Appconfig::setValue($app, 'types', $appTypes); } - + /** * check if app is shipped * @param string $appid the id of the app to check @@ -313,14 +313,14 @@ class OC_App{ $settings[]=array( "id" => "settings", "order" => 1000, "href" => OC_Helper::linkToRoute( "settings_settings" ), "name" => $l->t("Settings"), "icon" => OC_Helper::imagePath( "settings", "settings.svg" )); //SubAdmins are also allowed to access user management - if(OC_SubAdmin::isSubAdmin($_SESSION["user_id"]) || OC_Group::inGroup( $_SESSION["user_id"], "admin" )) { + if(OC_SubAdmin::isSubAdmin(OC_User::getUser())) { // admin users menu $settings[] = array( "id" => "core_users", "order" => 2, "href" => OC_Helper::linkToRoute( "settings_users" ), "name" => $l->t("Users"), "icon" => OC_Helper::imagePath( "settings", "users.svg" )); } // if the user is an admin - if(OC_Group::inGroup( $_SESSION["user_id"], "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" )); @@ -648,12 +648,15 @@ class OC_App{ if ($currentVersion) { $installedVersion = $versions[$app]; if (version_compare($currentVersion, $installedVersion, '>')) { + $info = self::getAppInfo($app); OC_Log::write($app, 'starting app upgrade from '.$installedVersion.' to '.$currentVersion, OC_Log::DEBUG); try { OC_App::updateApp($app); + OC_Hook::emit('update', 'success', 'Updated '.$info['name'].' app'); } catch (Exception $e) { echo 'Failed to upgrade "'.$app.'". Exception="'.$e->getMessage().'"'; + OC_Hook::emit('update', 'failure', 'Failed to update '.$info['name'].' app: '.$e->getMessage()); die; } OC_Appconfig::setValue($app, 'installed_version', OC_App::getAppVersion($app)); @@ -678,6 +681,7 @@ class OC_App{ if(!isset($info['require']) or (($version[0].'.'.$version[1])>$info['require'])) { OC_Log::write('core', 'App "'.$info['name'].'" ('.$app.') can\'t be used because it is not compatible with this version of ownCloud', OC_Log::ERROR); OC_App::disable( $app ); + OC_Hook::emit('update', 'success', 'Disabled '.$info['name'].' app because it is not compatible'); } } } diff --git a/lib/backgroundjob.php b/lib/backgroundjob.php index 28b5ce3af20..9619dcb732c 100644 --- a/lib/backgroundjob.php +++ b/lib/backgroundjob.php @@ -34,7 +34,7 @@ class OC_BackgroundJob{ public static function getExecutionType() { return OC_Appconfig::getValue( 'core', 'backgroundjobs_mode', 'ajax' ); } - + /** * @brief sets the background jobs execution type * @param $type execution type diff --git a/lib/base.php b/lib/base.php index 94fb7979620..1146ce74eb7 100644 --- a/lib/base.php +++ b/lib/base.php @@ -29,729 +29,739 @@ require_once 'public/constants.php'; */ class OC { - /** - * Assoziative array for autoloading. classname => filename - */ - public static $CLASSPATH = array(); - /** - * The installation path for owncloud on the server (e.g. /srv/http/owncloud) - */ - public static $SERVERROOT = ''; - /** - * the current request path relative to the owncloud root (e.g. files/index.php) - */ - private static $SUBURI = ''; - /** - * the owncloud root path for http requests (e.g. owncloud/) - */ - public static $WEBROOT = ''; - /** - * The installation path of the 3rdparty folder on the server (e.g. /srv/http/owncloud/3rdparty) - */ - public static $THIRDPARTYROOT = ''; - /** - * the root path of the 3rdparty folder for http requests (e.g. owncloud/3rdparty) - */ - public static $THIRDPARTYWEBROOT = ''; - /** - * The installation path array of the apps folder on the server (e.g. /srv/http/owncloud) 'path' and - * web path in 'url' - */ - public static $APPSROOTS = array(); - /* - * requested app - */ - public static $REQUESTEDAPP = ''; - /* - * requested file of app - */ - public static $REQUESTEDFILE = ''; - /** - * check if owncloud runs in cli mode - */ - public static $CLI = false; - /* - * OC router - */ - protected static $router = null; - - /** - * SPL autoload - */ - public static function autoload($className) - { - if (array_key_exists($className, OC::$CLASSPATH)) { - $path = OC::$CLASSPATH[$className]; - /** @TODO: Remove this when necessary - Remove "apps/" from inclusion path for smooth migration to mutli app dir - */ - if (strpos($path, 'apps/') === 0) { - OC_Log::write('core', 'include path for class "' . $className . '" starts with "apps/"', OC_Log::DEBUG); - $path = str_replace('apps/', '', $path); - } - } elseif (strpos($className, 'OC_') === 0) { - $path = strtolower(str_replace('_', '/', substr($className, 3)) . '.php'); - } elseif (strpos($className, 'OC\\') === 0) { - $path = strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); - } elseif (strpos($className, 'OCP\\') === 0) { - $path = 'public/' . strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); - } elseif (strpos($className, 'OCA\\') === 0) { - $path = 'apps/' . strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); - } elseif (strpos($className, 'Sabre_') === 0) { - $path = str_replace('_', '/', $className) . '.php'; - } elseif (strpos($className, 'Symfony\\Component\\Routing\\') === 0) { - $path = 'symfony/routing/' . str_replace('\\', '/', $className) . '.php'; - } elseif (strpos($className, 'Sabre\\VObject') === 0) { - $path = str_replace('\\', '/', $className) . '.php'; - } elseif (strpos($className, 'Test_') === 0) { - $path = 'tests/lib/' . strtolower(str_replace('_', '/', substr($className, 5)) . '.php'); - } else { - return false; - } - - if ($fullPath = stream_resolve_include_path($path)) { - require_once $fullPath; - } - return false; - } - - public static function initPaths() - { - // calculate the root directories - OC::$SERVERROOT = str_replace("\\", '/', substr(__DIR__, 0, -4)); - OC::$SUBURI = str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen(OC::$SERVERROOT))); - $scriptName = $_SERVER["SCRIPT_NAME"]; - if (substr($scriptName, -1) == '/') { - $scriptName .= 'index.php'; - //make sure suburi follows the same rules as scriptName - if (substr(OC::$SUBURI, -9) != 'index.php') { - if (substr(OC::$SUBURI, -1) != '/') { - OC::$SUBURI = OC::$SUBURI . '/'; - } - OC::$SUBURI = OC::$SUBURI . 'index.php'; - } - } - - OC::$WEBROOT = substr($scriptName, 0, strlen($scriptName) - strlen(OC::$SUBURI)); - - if (OC::$WEBROOT != '' and OC::$WEBROOT[0] !== '/') { - OC::$WEBROOT = '/' . OC::$WEBROOT; - } - - // ensure we can find OC_Config - set_include_path( - OC::$SERVERROOT . '/lib' . PATH_SEPARATOR . - get_include_path() - ); - - // search the 3rdparty folder - if (OC_Config::getValue('3rdpartyroot', '') <> '' and OC_Config::getValue('3rdpartyurl', '') <> '') { - OC::$THIRDPARTYROOT = OC_Config::getValue('3rdpartyroot', ''); - OC::$THIRDPARTYWEBROOT = OC_Config::getValue('3rdpartyurl', ''); - } elseif (file_exists(OC::$SERVERROOT . '/3rdparty')) { - OC::$THIRDPARTYROOT = OC::$SERVERROOT; - OC::$THIRDPARTYWEBROOT = OC::$WEBROOT; - } elseif (file_exists(OC::$SERVERROOT . '/../3rdparty')) { - OC::$THIRDPARTYWEBROOT = rtrim(dirname(OC::$WEBROOT), '/'); - OC::$THIRDPARTYROOT = rtrim(dirname(OC::$SERVERROOT), '/'); - } else { - echo("3rdparty directory not found! Please put the ownCloud 3rdparty folder in the ownCloud folder or the folder above. You can also configure the location in the config.php file."); - exit; - } - // search the apps folder - $config_paths = OC_Config::getValue('apps_paths', array()); - if (!empty($config_paths)) { - foreach ($config_paths as $paths) { - if (isset($paths['url']) && isset($paths['path'])) { - $paths['url'] = rtrim($paths['url'], '/'); - $paths['path'] = rtrim($paths['path'], '/'); - OC::$APPSROOTS[] = $paths; - } - } - } elseif (file_exists(OC::$SERVERROOT . '/apps')) { - OC::$APPSROOTS[] = array('path' => OC::$SERVERROOT . '/apps', 'url' => '/apps', 'writable' => true); - } elseif (file_exists(OC::$SERVERROOT . '/../apps')) { - OC::$APPSROOTS[] = array('path' => rtrim(dirname(OC::$SERVERROOT), '/') . '/apps', 'url' => '/apps', 'writable' => true); - } - - if (empty(OC::$APPSROOTS)) { - echo("apps directory not found! Please put the ownCloud apps folder in the ownCloud folder or the folder above. You can also configure the location in the config.php file."); - exit; - } - $paths = array(); - foreach (OC::$APPSROOTS as $path) - $paths[] = $path['path']; - - // set the right include path - set_include_path( - OC::$SERVERROOT . '/lib' . PATH_SEPARATOR . - OC::$SERVERROOT . '/config' . PATH_SEPARATOR . - OC::$THIRDPARTYROOT . '/3rdparty' . PATH_SEPARATOR . - implode($paths, PATH_SEPARATOR) . PATH_SEPARATOR . - get_include_path() . PATH_SEPARATOR . - OC::$SERVERROOT - ); - } - - public static function checkInstalled() - { - // Redirect to installer if not installed - if (!OC_Config::getValue('installed', false) && OC::$SUBURI != '/index.php') { - if (!OC::$CLI) { - $url = 'http://' . $_SERVER['SERVER_NAME'] . OC::$WEBROOT . '/index.php'; - header("Location: $url"); - } - exit(); - } - } - - public static function checkSSL() - { - // redirect to https site if configured - if (OC_Config::getValue("forcessl", false)) { - header('Strict-Transport-Security: max-age=31536000'); - ini_set("session.cookie_secure", "on"); - if (OC_Request::serverProtocol() <> 'https' and !OC::$CLI) { - $url = "https://" . OC_Request::serverHost() . $_SERVER['REQUEST_URI']; - header("Location: $url"); - exit(); - } - } - } - - public static function checkUpgrade() - { - if (OC_Config::getValue('installed', false)) { - $installedVersion = OC_Config::getValue('version', '0.0.0'); - $currentVersion = implode('.', OC_Util::getVersion()); - if (version_compare($currentVersion, $installedVersion, '>')) { - // Check if the .htaccess is existing - this is needed for upgrades from really old ownCloud versions - if (isset($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache')) { - if (!OC_Util::ishtaccessworking()) { - if (!file_exists(OC::$SERVERROOT . '/data/.htaccess')) { - OC_Setup::protectDataDirectory(); - } - } - } - OC_Log::write('core', 'starting upgrade from ' . $installedVersion . ' to ' . $currentVersion, OC_Log::DEBUG); - $result = OC_DB::updateDbFromStructure(OC::$SERVERROOT . '/db_structure.xml'); - if (!$result) { - echo 'Error while upgrading the database'; - die(); - } - if (file_exists(OC::$SERVERROOT . "/config/config.php") and !is_writable(OC::$SERVERROOT . "/config/config.php")) { - $tmpl = new OC_Template('', 'error', 'guest'); - $tmpl->assign('errors', array(1 => array('error' => "Can't write into config directory 'config'", 'hint' => "You can usually fix this by giving the webserver user write access to the config directory in owncloud"))); - $tmpl->printPage(); - exit; - } - $minimizerCSS = new OC_Minimizer_CSS(); - $minimizerCSS->clearCache(); - $minimizerJS = new OC_Minimizer_JS(); - $minimizerJS->clearCache(); - OC_Config::setValue('version', implode('.', OC_Util::getVersion())); - OC_App::checkAppsRequirements(); - // load all apps to also upgrade enabled apps - OC_App::loadApps(); - } - } - } - - public static function initTemplateEngine() - { - // Add the stuff we need always - OC_Util::addScript("jquery-1.7.2.min"); - OC_Util::addScript("jquery-ui-1.8.16.custom.min"); - OC_Util::addScript("jquery-showpassword"); - OC_Util::addScript("jquery.infieldlabel"); - OC_Util::addScript("jquery-tipsy"); - OC_Util::addScript("oc-dialogs"); - OC_Util::addScript("js"); - OC_Util::addScript("eventsource"); - OC_Util::addScript("config"); - //OC_Util::addScript( "multiselect" ); - OC_Util::addScript('search', 'result'); - OC_Util::addScript('router'); - - if (OC_Config::getValue('installed', false)) { - if (OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax') == 'ajax') { - OC_Util::addScript('backgroundjobs'); - } - } - - OC_Util::addStyle("styles"); - OC_Util::addStyle("multiselect"); - OC_Util::addStyle("jquery-ui-1.8.16.custom"); - OC_Util::addStyle("jquery-tipsy"); - } - - public static function initSession() - { - // prevents javascript from accessing php session cookies - ini_set('session.cookie_httponly', '1;'); - - // set the session name to the instance id - which is unique - session_name(OC_Util::getInstanceId()); - - // (re)-initialize session - session_start(); - - // regenerate session id periodically to avoid session fixation - if (!isset($_SESSION['SID_CREATED'])) { - $_SESSION['SID_CREATED'] = time(); - } else if (time() - $_SESSION['SID_CREATED'] > 900) { - session_regenerate_id(true); - $_SESSION['SID_CREATED'] = time(); - } - - // session timeout - if (isset($_SESSION['LAST_ACTIVITY']) && (time() - $_SESSION['LAST_ACTIVITY'] > 3600)) { - if (isset($_COOKIE[session_name()])) { - setcookie(session_name(), '', time() - 42000, '/'); - } - session_unset(); - session_destroy(); - session_start(); - } - $_SESSION['LAST_ACTIVITY'] = time(); - } - - public static function getRouter() - { - if (!isset(OC::$router)) { - OC::$router = new OC_Router(); - OC::$router->loadRoutes(); - } - - return OC::$router; - } - - public static function init() - { - // register autoloader - spl_autoload_register(array('OC', 'autoload')); - setlocale(LC_ALL, 'en_US.UTF-8'); - - // set some stuff - //ob_start(); - error_reporting(E_ALL | E_STRICT); - if (defined('DEBUG') && DEBUG) { - ini_set('display_errors', 1); - } - self::$CLI = (php_sapi_name() == 'cli'); - - date_default_timezone_set('UTC'); - ini_set('arg_separator.output', '&'); - - // try to switch magic quotes off. - if (get_magic_quotes_gpc()) { - @set_magic_quotes_runtime(false); - } - - //try to configure php to enable big file uploads. - //this doesn´t work always depending on the webserver and php configuration. - //Let´s try to overwrite some defaults anyways - - //try to set the maximum execution time to 60min - @set_time_limit(3600); - @ini_set('max_execution_time', 3600); - @ini_set('max_input_time', 3600); - - //try to set the maximum filesize to 10G - @ini_set('upload_max_filesize', '10G'); - @ini_set('post_max_size', '10G'); - @ini_set('file_uploads', '50'); - - //try to set the session lifetime to 60min - @ini_set('gc_maxlifetime', '3600'); - - //copy http auth headers for apache+php-fcgid work around - if (isset($_SERVER['HTTP_XAUTHORIZATION']) && !isset($_SERVER['HTTP_AUTHORIZATION'])) { - $_SERVER['HTTP_AUTHORIZATION'] = $_SERVER['HTTP_XAUTHORIZATION']; - } - - //set http auth headers for apache+php-cgi work around - if (isset($_SERVER['HTTP_AUTHORIZATION']) && preg_match('/Basic\s+(.*)$/i', $_SERVER['HTTP_AUTHORIZATION'], $matches)) { - list($name, $password) = explode(':', base64_decode($matches[1]), 2); - $_SERVER['PHP_AUTH_USER'] = strip_tags($name); - $_SERVER['PHP_AUTH_PW'] = strip_tags($password); - } - - //set http auth headers for apache+php-cgi work around if variable gets renamed by apache - if (isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION']) && preg_match('/Basic\s+(.*)$/i', $_SERVER['REDIRECT_HTTP_AUTHORIZATION'], $matches)) { - list($name, $password) = explode(':', base64_decode($matches[1]), 2); - $_SERVER['PHP_AUTH_USER'] = strip_tags($name); - $_SERVER['PHP_AUTH_PW'] = strip_tags($password); - } - - self::initPaths(); - - register_shutdown_function(array('OC_Log', 'onShutdown')); - set_error_handler(array('OC_Log', 'onError')); - set_exception_handler(array('OC_Log', 'onException')); - - // set debug mode if an xdebug session is active - if (!defined('DEBUG') || !DEBUG) { - if (isset($_COOKIE['XDEBUG_SESSION'])) { - define('DEBUG', true); - } - } - - // register the stream wrappers - require_once 'streamwrappers.php'; - stream_wrapper_register("fakedir", "OC_FakeDirStream"); - stream_wrapper_register('static', 'OC_StaticStreamWrapper'); - stream_wrapper_register('close', 'OC_CloseStreamWrapper'); - - self::checkInstalled(); - self::checkSSL(); - self::initSession(); - self::initTemplateEngine(); - self::checkUpgrade(); - - $errors = OC_Util::checkServer(); - if (count($errors) > 0) { - OC_Template::printGuestPage('', 'error', array('errors' => $errors)); - exit; - } - - // User and Groups - if (!OC_Config::getValue("installed", false)) { - $_SESSION['user_id'] = ''; - } - - OC_User::useBackend(new OC_User_Database()); - OC_Group::useBackend(new OC_Group_Database()); - - if (isset($_SERVER['PHP_AUTH_USER']) && isset($_SESSION['user_id']) && $_SERVER['PHP_AUTH_USER'] != $_SESSION['user_id']) { - OC_User::logout(); - } - - // Load Apps - // This includes plugins for users and filesystems as well - global $RUNTIME_NOAPPS; - global $RUNTIME_APPTYPES; - if (!$RUNTIME_NOAPPS) { - if ($RUNTIME_APPTYPES) { - OC_App::loadApps($RUNTIME_APPTYPES); - } else { - OC_App::loadApps(); - } - } - - //setup extra user backends - OC_User::setupBackends(); - - self::registerCacheHooks(); - self::registerFilesystemHooks(); - self::registerShareHooks(); - - //make sure temporary files are cleaned up - register_shutdown_function(array('OC_Helper', 'cleanTmp')); - - //parse the given parameters - self::$REQUESTEDAPP = (isset($_GET['app']) && trim($_GET['app']) != '' && !is_null($_GET['app']) ? str_replace(array('\0', '/', '\\', '..'), '', strip_tags($_GET['app'])) : OC_Config::getValue('defaultapp', 'files')); - if (substr_count(self::$REQUESTEDAPP, '?') != 0) { - $app = substr(self::$REQUESTEDAPP, 0, strpos(self::$REQUESTEDAPP, '?')); - $param = substr($_GET['app'], strpos($_GET['app'], '?') + 1); - parse_str($param, $get); - $_GET = array_merge($_GET, $get); - self::$REQUESTEDAPP = $app; - $_GET['app'] = $app; - } - self::$REQUESTEDFILE = (isset($_GET['getfile']) ? $_GET['getfile'] : null); - if (substr_count(self::$REQUESTEDFILE, '?') != 0) { - $file = substr(self::$REQUESTEDFILE, 0, strpos(self::$REQUESTEDFILE, '?')); - $param = substr(self::$REQUESTEDFILE, strpos(self::$REQUESTEDFILE, '?') + 1); - parse_str($param, $get); - $_GET = array_merge($_GET, $get); - self::$REQUESTEDFILE = $file; - $_GET['getfile'] = $file; - } - if (!is_null(self::$REQUESTEDFILE)) { - $subdir = OC_App::getAppPath(OC::$REQUESTEDAPP) . '/' . self::$REQUESTEDFILE; - $parent = OC_App::getAppPath(OC::$REQUESTEDAPP); - if (!OC_Helper::issubdirectory($subdir, $parent)) { - self::$REQUESTEDFILE = null; - header('HTTP/1.0 404 Not Found'); - exit; - } - } - - // write error into log if locale can't be set - if (OC_Util::issetlocaleworking() == false) { - OC_Log::write('core', 'setting locate to en_US.UTF-8 failed. Support is probably not installed on your system', OC_Log::ERROR); - } - } - - /** - * register hooks for the cache - */ - public static function registerCacheHooks() - { - // register cache cleanup jobs - OC_BackgroundJob_RegularTask::register('OC_Cache_FileGlobal', 'gc'); - OC_Hook::connect('OC_User', 'post_login', 'OC_Cache_File', 'loginListener'); - } - - /** - * register hooks for the filesystem - */ - public static function registerFilesystemHooks() - { - // Check for blacklisted files - OC_Hook::connect('OC_Filesystem', 'write', 'OC_Filesystem', 'isBlacklisted'); - OC_Hook::connect('OC_Filesystem', 'rename', 'OC_Filesystem', 'isBlacklisted'); - } - - /** - * register hooks for sharing - */ - public static function registerShareHooks() - { - OC_Hook::connect('OC_User', 'post_deleteUser', 'OCP\Share', 'post_deleteUser'); - OC_Hook::connect('OC_User', 'post_addToGroup', 'OCP\Share', 'post_addToGroup'); - OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OCP\Share', 'post_removeFromGroup'); - OC_Hook::connect('OC_User', 'post_deleteGroup', 'OCP\Share', 'post_deleteGroup'); - } - - /** - * @brief Handle the request - */ - public static function handleRequest() - { - if (!OC_Config::getValue('installed', false)) { - require_once 'core/setup.php'; - exit(); - } - // Handle redirect URL for logged in users - if (isset($_REQUEST['redirect_url']) && OC_User::isLoggedIn()) { - $location = OC_Helper::makeURLAbsolute(urldecode($_REQUEST['redirect_url'])); - header('Location: ' . $location); - return; - } - // Handle WebDAV - if ($_SERVER['REQUEST_METHOD'] == 'PROPFIND') { - header('location: ' . OC_Helper::linkToRemote('webdav')); - return; - } - try { - OC::getRouter()->match(OC_Request::getPathInfo()); - return; - } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) { - //header('HTTP/1.0 404 Not Found'); - } catch (Symfony\Component\Routing\Exception\MethodNotAllowedException $e) { - OC_Response::setStatus(405); - return; - } - $app = OC::$REQUESTEDAPP; - $file = OC::$REQUESTEDFILE; - $param = array('app' => $app, 'file' => $file); - // Handle app css files - if (substr($file, -3) == 'css') { - self::loadCSSFile($param); - return; - } - // Someone is logged in : - if (OC_User::isLoggedIn()) { - OC_App::loadApps(); - OC_User::setupBackends(); - if (isset($_GET["logout"]) and ($_GET["logout"])) { - OC_Preferences::deleteKey(OC_User::getUser(), 'login_token', $_COOKIE['oc_token']); - OC_User::logout(); - header("Location: " . OC::$WEBROOT . '/'); - } else { - if (is_null($file)) { - $param['file'] = 'index.php'; - } - $file_ext = substr($param['file'], -3); - if ($file_ext != 'php' - || !self::loadAppScriptFile($param) - ) { - header('HTTP/1.0 404 Not Found'); - } - } - return; - } - // Not handled and not logged in - self::handleLogin(); - } - - public static function loadAppScriptFile($param) - { - OC_App::loadApps(); - $app = $param['app']; - $file = $param['file']; - $app_path = OC_App::getAppPath($app); - $file = $app_path . '/' . $file; - unset($app, $app_path); - if (file_exists($file)) { - require_once $file; - return true; - } - return false; - } - - public static function loadCSSFile($param) - { - $app = $param['app']; - $file = $param['file']; - $app_path = OC_App::getAppPath($app); - if (file_exists($app_path . '/' . $file)) { - $app_web_path = OC_App::getAppWebPath($app); - $filepath = $app_web_path . '/' . $file; - $minimizer = new OC_Minimizer_CSS(); - $info = array($app_path, $app_web_path, $file); - $minimizer->output(array($info), $filepath); - } - } - - protected static function handleLogin() - { - OC_App::loadApps(array('prelogin')); - $error = array(); - // remember was checked after last login - if (OC::tryRememberLogin()) { - $error[] = 'invalidcookie'; - - // Someone wants to log in : - } elseif (OC::tryFormLogin()) { - $error[] = 'invalidpassword'; - - // The user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP - } elseif (OC::tryBasicAuthLogin()) { - $error[] = 'invalidpassword'; - } - OC_Util::displayLoginPage(array_unique($error)); - } - - protected static function cleanupLoginTokens($user) - { - $cutoff = time() - OC_Config::getValue('remember_login_cookie_lifetime', 60 * 60 * 24 * 15); - $tokens = OC_Preferences::getKeys($user, 'login_token'); - foreach ($tokens as $token) { - $time = OC_Preferences::getValue($user, 'login_token', $token); - if ($time < $cutoff) { - OC_Preferences::deleteKey($user, 'login_token', $token); - } - } - } - - protected static function tryRememberLogin() - { - if (!isset($_COOKIE["oc_remember_login"]) - || !isset($_COOKIE["oc_token"]) - || !isset($_COOKIE["oc_username"]) - || !$_COOKIE["oc_remember_login"] - ) { - return false; - } - OC_App::loadApps(array('authentication')); - if (defined("DEBUG") && DEBUG) { - OC_Log::write('core', 'Trying to login from cookie', OC_Log::DEBUG); - } - // confirm credentials in cookie - if (isset($_COOKIE['oc_token']) && OC_User::userExists($_COOKIE['oc_username'])) { - // delete outdated cookies - self::cleanupLoginTokens($_COOKIE['oc_username']); - // get stored tokens - $tokens = OC_Preferences::getKeys($_COOKIE['oc_username'], 'login_token'); - // test cookies token against stored tokens - if (in_array($_COOKIE['oc_token'], $tokens, true)) { - // replace successfully used token with a new one - OC_Preferences::deleteKey($_COOKIE['oc_username'], 'login_token', $_COOKIE['oc_token']); - $token = OC_Util::generate_random_bytes(32); - OC_Preferences::setValue($_COOKIE['oc_username'], 'login_token', $token, time()); - OC_User::setMagicInCookie($_COOKIE['oc_username'], $token); - // login - OC_User::setUserId($_COOKIE['oc_username']); - OC_Util::redirectToDefaultPage(); - // doesn't return - } - // if you reach this point you have changed your password - // or you are an attacker - // we can not delete tokens here because users may reach - // this point multiple times after a password change - OC_Log::write('core', 'Authentication cookie rejected for user ' . $_COOKIE['oc_username'], OC_Log::WARN); - } - OC_User::unsetMagicInCookie(); - return true; - } - - protected static function tryFormLogin() - { - if (!isset($_POST["user"]) || !isset($_POST['password'])) { - return false; - } - - OC_App::loadApps(); - - //setup extra user backends - OC_User::setupBackends(); - - if (OC_User::login($_POST["user"], $_POST["password"])) { - // setting up the time zone - if (isset($_POST['timezone-offset'])) { - $_SESSION['timezone'] = $_POST['timezone-offset']; - } - - self::cleanupLoginTokens($_POST['user']); - if (!empty($_POST["remember_login"])) { - if (defined("DEBUG") && DEBUG) { - OC_Log::write('core', 'Setting remember login to cookie', OC_Log::DEBUG); - } - $token = OC_Util::generate_random_bytes(32); - OC_Preferences::setValue($_POST['user'], 'login_token', $token, time()); - OC_User::setMagicInCookie($_POST["user"], $token); - } else { - OC_User::unsetMagicInCookie(); - } - OC_Util::redirectToDefaultPage(); - exit(); - } - return true; - } - - protected static function tryBasicAuthLogin() - { - if (!isset($_SERVER["PHP_AUTH_USER"]) - || !isset($_SERVER["PHP_AUTH_PW"]) - ) { - return false; - } - OC_App::loadApps(array('authentication')); - if (OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) { - //OC_Log::write('core',"Logged in with HTTP Authentication", OC_Log::DEBUG); - OC_User::unsetMagicInCookie(); - $_REQUEST['redirect_url'] = (isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : ''); - OC_Util::redirectToDefaultPage(); - } - return true; - } + /** + * Assoziative array for autoloading. classname => filename + */ + public static $CLASSPATH = array(); + /** + * The installation path for owncloud on the server (e.g. /srv/http/owncloud) + */ + public static $SERVERROOT = ''; + /** + * the current request path relative to the owncloud root (e.g. files/index.php) + */ + private static $SUBURI = ''; + /** + * the owncloud root path for http requests (e.g. owncloud/) + */ + public static $WEBROOT = ''; + /** + * The installation path of the 3rdparty folder on the server (e.g. /srv/http/owncloud/3rdparty) + */ + public static $THIRDPARTYROOT = ''; + /** + * the root path of the 3rdparty folder for http requests (e.g. owncloud/3rdparty) + */ + public static $THIRDPARTYWEBROOT = ''; + /** + * The installation path array of the apps folder on the server (e.g. /srv/http/owncloud) 'path' and + * web path in 'url' + */ + public static $APPSROOTS = array(); + /* + * requested app + */ + public static $REQUESTEDAPP = ''; + /* + * requested file of app + */ + public static $REQUESTEDFILE = ''; + /** + * check if owncloud runs in cli mode + */ + public static $CLI = false; + /* + * OC router + */ + protected static $router = null; + + /** + * SPL autoload + */ + public static function autoload($className) + { + if (array_key_exists($className, OC::$CLASSPATH)) { + $path = OC::$CLASSPATH[$className]; + /** @TODO: Remove this when necessary + Remove "apps/" from inclusion path for smooth migration to mutli app dir + */ + if (strpos($path, 'apps/') === 0) { + OC_Log::write('core', 'include path for class "' . $className . '" starts with "apps/"', OC_Log::DEBUG); + $path = str_replace('apps/', '', $path); + } + } elseif (strpos($className, 'OC_') === 0) { + $path = strtolower(str_replace('_', '/', substr($className, 3)) . '.php'); + } elseif (strpos($className, 'OC\\') === 0) { + $path = strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); + } elseif (strpos($className, 'OCP\\') === 0) { + $path = 'public/' . strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); + } elseif (strpos($className, 'OCA\\') === 0) { + $path = 'apps/' . strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); + } elseif (strpos($className, 'Sabre_') === 0) { + $path = str_replace('_', '/', $className) . '.php'; + } elseif (strpos($className, 'Symfony\\Component\\Routing\\') === 0) { + $path = 'symfony/routing/' . str_replace('\\', '/', $className) . '.php'; + } elseif (strpos($className, 'Sabre\\VObject') === 0) { + $path = str_replace('\\', '/', $className) . '.php'; + } elseif (strpos($className, 'Test_') === 0) { + $path = 'tests/lib/' . strtolower(str_replace('_', '/', substr($className, 5)) . '.php'); + } else { + return false; + } + + if ($fullPath = stream_resolve_include_path($path)) { + require_once $fullPath; + } + return false; + } + + public static function initPaths() + { + // calculate the root directories + OC::$SERVERROOT = str_replace("\\", '/', substr(__DIR__, 0, -4)); + OC::$SUBURI = str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen(OC::$SERVERROOT))); + $scriptName = $_SERVER["SCRIPT_NAME"]; + if (substr($scriptName, -1) == '/') { + $scriptName .= 'index.php'; + //make sure suburi follows the same rules as scriptName + if (substr(OC::$SUBURI, -9) != 'index.php') { + if (substr(OC::$SUBURI, -1) != '/') { + OC::$SUBURI = OC::$SUBURI . '/'; + } + OC::$SUBURI = OC::$SUBURI . 'index.php'; + } + } + + OC::$WEBROOT = substr($scriptName, 0, strlen($scriptName) - strlen(OC::$SUBURI)); + + if (OC::$WEBROOT != '' and OC::$WEBROOT[0] !== '/') { + OC::$WEBROOT = '/' . OC::$WEBROOT; + } + + // ensure we can find OC_Config + set_include_path( + OC::$SERVERROOT . '/lib' . PATH_SEPARATOR . + get_include_path() + ); + + // search the 3rdparty folder + if (OC_Config::getValue('3rdpartyroot', '') <> '' and OC_Config::getValue('3rdpartyurl', '') <> '') { + OC::$THIRDPARTYROOT = OC_Config::getValue('3rdpartyroot', ''); + OC::$THIRDPARTYWEBROOT = OC_Config::getValue('3rdpartyurl', ''); + } elseif (file_exists(OC::$SERVERROOT . '/3rdparty')) { + OC::$THIRDPARTYROOT = OC::$SERVERROOT; + OC::$THIRDPARTYWEBROOT = OC::$WEBROOT; + } elseif (file_exists(OC::$SERVERROOT . '/../3rdparty')) { + OC::$THIRDPARTYWEBROOT = rtrim(dirname(OC::$WEBROOT), '/'); + OC::$THIRDPARTYROOT = rtrim(dirname(OC::$SERVERROOT), '/'); + } else { + echo("3rdparty directory not found! Please put the ownCloud 3rdparty folder in the ownCloud folder or the folder above. You can also configure the location in the config.php file."); + exit; + } + // search the apps folder + $config_paths = OC_Config::getValue('apps_paths', array()); + if (!empty($config_paths)) { + foreach ($config_paths as $paths) { + if (isset($paths['url']) && isset($paths['path'])) { + $paths['url'] = rtrim($paths['url'], '/'); + $paths['path'] = rtrim($paths['path'], '/'); + OC::$APPSROOTS[] = $paths; + } + } + } elseif (file_exists(OC::$SERVERROOT . '/apps')) { + OC::$APPSROOTS[] = array('path' => OC::$SERVERROOT . '/apps', 'url' => '/apps', 'writable' => true); + } elseif (file_exists(OC::$SERVERROOT . '/../apps')) { + OC::$APPSROOTS[] = array('path' => rtrim(dirname(OC::$SERVERROOT), '/') . '/apps', 'url' => '/apps', 'writable' => true); + } + + if (empty(OC::$APPSROOTS)) { + echo("apps directory not found! Please put the ownCloud apps folder in the ownCloud folder or the folder above. You can also configure the location in the config.php file."); + exit; + } + $paths = array(); + foreach (OC::$APPSROOTS as $path) + $paths[] = $path['path']; + + // set the right include path + set_include_path( + OC::$SERVERROOT . '/lib' . PATH_SEPARATOR . + OC::$SERVERROOT . '/config' . PATH_SEPARATOR . + OC::$THIRDPARTYROOT . '/3rdparty' . PATH_SEPARATOR . + implode($paths, PATH_SEPARATOR) . PATH_SEPARATOR . + get_include_path() . PATH_SEPARATOR . + OC::$SERVERROOT + ); + } + + public static function checkConfig() { + if (file_exists(OC::$SERVERROOT . "/config/config.php") and !is_writable(OC::$SERVERROOT . "/config/config.php")) { + $tmpl = new OC_Template('', 'error', 'guest'); + $tmpl->assign('errors', array(1 => array('error' => "Can't write into config directory 'config'", 'hint' => "You can usually fix this by giving the webserver user write access to the config directory in owncloud"))); + $tmpl->printPage(); + exit(); + } + } + + public static function checkInstalled() + { + // Redirect to installer if not installed + if (!OC_Config::getValue('installed', false) && OC::$SUBURI != '/index.php') { + if (!OC::$CLI) { + $url = 'http://' . $_SERVER['SERVER_NAME'] . OC::$WEBROOT . '/index.php'; + header("Location: $url"); + } + exit(); + } + } + + public static function checkSSL() + { + // redirect to https site if configured + if (OC_Config::getValue("forcessl", false)) { + header('Strict-Transport-Security: max-age=31536000'); + ini_set("session.cookie_secure", "on"); + if (OC_Request::serverProtocol() <> 'https' and !OC::$CLI) { + $url = "https://" . OC_Request::serverHost() . $_SERVER['REQUEST_URI']; + header("Location: $url"); + exit(); + } + } + } + + public static function checkMaintenanceMode() { + // Allow ajax update script to execute without being stopped + if (OC_Config::getValue('maintenance', false) && OC::$SUBURI != '/core/ajax/update.php') { + // send http status 503 + header('HTTP/1.1 503 Service Temporarily Unavailable'); + header('Status: 503 Service Temporarily Unavailable'); + header('Retry-After: 120'); + + // render error page + $tmpl = new OC_Template('', 'error', 'guest'); + $tmpl->assign('errors', array(1 => array('error' => 'ownCloud is in maintenance mode'))); + $tmpl->printPage(); + exit(); + } + } + + public static function checkUpgrade($showTemplate = true) { + if (OC_Config::getValue('installed', false)) { + $installedVersion = OC_Config::getValue('version', '0.0.0'); + $currentVersion = implode('.', OC_Util::getVersion()); + if (version_compare($currentVersion, $installedVersion, '>')) { + if ($showTemplate && !OC_Config::getValue('maintenance', false)) { + OC_Config::setValue('maintenance', true); + OC_Log::write('core', 'starting upgrade from ' . $installedVersion . ' to ' . $currentVersion, OC_Log::DEBUG); + $tmpl = new OC_Template('', 'update', 'guest'); + $tmpl->assign('version', OC_Util::getVersionString()); + $tmpl->printPage(); + exit(); + } else { + return true; + } + } + return false; + } + } + + public static function initTemplateEngine() + { + // Add the stuff we need always + OC_Util::addScript("jquery-1.7.2.min"); + OC_Util::addScript("jquery-ui-1.8.16.custom.min"); + OC_Util::addScript("jquery-showpassword"); + OC_Util::addScript("jquery.infieldlabel"); + OC_Util::addScript("jquery-tipsy"); + OC_Util::addScript("oc-dialogs"); + OC_Util::addScript("js"); + OC_Util::addScript("eventsource"); + OC_Util::addScript("config"); + //OC_Util::addScript( "multiselect" ); + OC_Util::addScript('search', 'result'); + OC_Util::addScript('router'); + + OC_Util::addStyle("styles"); + OC_Util::addStyle("multiselect"); + OC_Util::addStyle("jquery-ui-1.8.16.custom"); + OC_Util::addStyle("jquery-tipsy"); + } + + public static function initSession() + { + // prevents javascript from accessing php session cookies + ini_set('session.cookie_httponly', '1;'); + + // set the session name to the instance id - which is unique + session_name(OC_Util::getInstanceId()); + + // (re)-initialize session + session_start(); + + // regenerate session id periodically to avoid session fixation + if (!isset($_SESSION['SID_CREATED'])) { + $_SESSION['SID_CREATED'] = time(); + } else if (time() - $_SESSION['SID_CREATED'] > 900) { + session_regenerate_id(true); + $_SESSION['SID_CREATED'] = time(); + } + + // session timeout + if (isset($_SESSION['LAST_ACTIVITY']) && (time() - $_SESSION['LAST_ACTIVITY'] > 3600)) { + if (isset($_COOKIE[session_name()])) { + setcookie(session_name(), '', time() - 42000, '/'); + } + session_unset(); + session_destroy(); + session_start(); + } + $_SESSION['LAST_ACTIVITY'] = time(); + } + + public static function getRouter() + { + if (!isset(OC::$router)) { + OC::$router = new OC_Router(); + OC::$router->loadRoutes(); + } + + return OC::$router; + } + + public static function init() + { + // register autoloader + spl_autoload_register(array('OC', 'autoload')); + setlocale(LC_ALL, 'en_US.UTF-8'); + + // set some stuff + //ob_start(); + error_reporting(E_ALL | E_STRICT); + if (defined('DEBUG') && DEBUG) { + ini_set('display_errors', 1); + } + self::$CLI = (php_sapi_name() == 'cli'); + + date_default_timezone_set('UTC'); + ini_set('arg_separator.output', '&'); + + // try to switch magic quotes off. + if (get_magic_quotes_gpc()) { + @set_magic_quotes_runtime(false); + } + + //try to configure php to enable big file uploads. + //this doesn´t work always depending on the webserver and php configuration. + //Let´s try to overwrite some defaults anyways + + //try to set the maximum execution time to 60min + @set_time_limit(3600); + @ini_set('max_execution_time', 3600); + @ini_set('max_input_time', 3600); + + //try to set the maximum filesize to 10G + @ini_set('upload_max_filesize', '10G'); + @ini_set('post_max_size', '10G'); + @ini_set('file_uploads', '50'); + + //try to set the session lifetime to 60min + @ini_set('gc_maxlifetime', '3600'); + + //copy http auth headers for apache+php-fcgid work around + if (isset($_SERVER['HTTP_XAUTHORIZATION']) && !isset($_SERVER['HTTP_AUTHORIZATION'])) { + $_SERVER['HTTP_AUTHORIZATION'] = $_SERVER['HTTP_XAUTHORIZATION']; + } + + //set http auth headers for apache+php-cgi work around + if (isset($_SERVER['HTTP_AUTHORIZATION']) && preg_match('/Basic\s+(.*)$/i', $_SERVER['HTTP_AUTHORIZATION'], $matches)) { + list($name, $password) = explode(':', base64_decode($matches[1]), 2); + $_SERVER['PHP_AUTH_USER'] = strip_tags($name); + $_SERVER['PHP_AUTH_PW'] = strip_tags($password); + } + + //set http auth headers for apache+php-cgi work around if variable gets renamed by apache + if (isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION']) && preg_match('/Basic\s+(.*)$/i', $_SERVER['REDIRECT_HTTP_AUTHORIZATION'], $matches)) { + list($name, $password) = explode(':', base64_decode($matches[1]), 2); + $_SERVER['PHP_AUTH_USER'] = strip_tags($name); + $_SERVER['PHP_AUTH_PW'] = strip_tags($password); + } + + self::initPaths(); + + register_shutdown_function(array('OC_Log', 'onShutdown')); + set_error_handler(array('OC_Log', 'onError')); + set_exception_handler(array('OC_Log', 'onException')); + + // set debug mode if an xdebug session is active + if (!defined('DEBUG') || !DEBUG) { + if (isset($_COOKIE['XDEBUG_SESSION'])) { + define('DEBUG', true); + } + } + + // register the stream wrappers + require_once 'streamwrappers.php'; + stream_wrapper_register("fakedir", "OC_FakeDirStream"); + stream_wrapper_register('static', 'OC_StaticStreamWrapper'); + stream_wrapper_register('close', 'OC_CloseStreamWrapper'); + + self::checkConfig(); + self::checkInstalled(); + self::checkSSL(); + self::initSession(); + self::initTemplateEngine(); + self::checkMaintenanceMode(); + self::checkUpgrade(); + + $errors = OC_Util::checkServer(); + if (count($errors) > 0) { + OC_Template::printGuestPage('', 'error', array('errors' => $errors)); + exit; + } + + // User and Groups + if (!OC_Config::getValue("installed", false)) { + $_SESSION['user_id'] = ''; + } + + OC_User::useBackend(new OC_User_Database()); + OC_Group::useBackend(new OC_Group_Database()); + + if (isset($_SERVER['PHP_AUTH_USER']) && isset($_SESSION['user_id']) && $_SERVER['PHP_AUTH_USER'] != $_SESSION['user_id']) { + OC_User::logout(); + } + + // Load Apps + // This includes plugins for users and filesystems as well + global $RUNTIME_NOAPPS; + global $RUNTIME_APPTYPES; + if (!$RUNTIME_NOAPPS) { + if ($RUNTIME_APPTYPES) { + OC_App::loadApps($RUNTIME_APPTYPES); + } else { + OC_App::loadApps(); + } + } + + //setup extra user backends + OC_User::setupBackends(); + + self::registerCacheHooks(); + self::registerFilesystemHooks(); + self::registerShareHooks(); + + //make sure temporary files are cleaned up + register_shutdown_function(array('OC_Helper', 'cleanTmp')); + + //parse the given parameters + self::$REQUESTEDAPP = (isset($_GET['app']) && trim($_GET['app']) != '' && !is_null($_GET['app']) ? str_replace(array('\0', '/', '\\', '..'), '', strip_tags($_GET['app'])) : OC_Config::getValue('defaultapp', 'files')); + if (substr_count(self::$REQUESTEDAPP, '?') != 0) { + $app = substr(self::$REQUESTEDAPP, 0, strpos(self::$REQUESTEDAPP, '?')); + $param = substr($_GET['app'], strpos($_GET['app'], '?') + 1); + parse_str($param, $get); + $_GET = array_merge($_GET, $get); + self::$REQUESTEDAPP = $app; + $_GET['app'] = $app; + } + self::$REQUESTEDFILE = (isset($_GET['getfile']) ? $_GET['getfile'] : null); + if (substr_count(self::$REQUESTEDFILE, '?') != 0) { + $file = substr(self::$REQUESTEDFILE, 0, strpos(self::$REQUESTEDFILE, '?')); + $param = substr(self::$REQUESTEDFILE, strpos(self::$REQUESTEDFILE, '?') + 1); + parse_str($param, $get); + $_GET = array_merge($_GET, $get); + self::$REQUESTEDFILE = $file; + $_GET['getfile'] = $file; + } + if (!is_null(self::$REQUESTEDFILE)) { + $subdir = OC_App::getAppPath(OC::$REQUESTEDAPP) . '/' . self::$REQUESTEDFILE; + $parent = OC_App::getAppPath(OC::$REQUESTEDAPP); + if (!OC_Helper::issubdirectory($subdir, $parent)) { + self::$REQUESTEDFILE = null; + header('HTTP/1.0 404 Not Found'); + exit; + } + } + + // write error into log if locale can't be set + if (OC_Util::issetlocaleworking() == false) { + OC_Log::write('core', 'setting locate to en_US.UTF-8 failed. Support is probably not installed on your system', OC_Log::ERROR); + } + if (OC_Config::getValue('installed', false)) { + if (OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax') == 'ajax') { + OC_Util::addScript('backgroundjobs'); + } + } + } + + /** + * register hooks for the cache + */ + public static function registerCacheHooks() + { + // register cache cleanup jobs + OC_BackgroundJob_RegularTask::register('OC_Cache_FileGlobal', 'gc'); + OC_Hook::connect('OC_User', 'post_login', 'OC_Cache_File', 'loginListener'); + } + + /** + * register hooks for the filesystem + */ + public static function registerFilesystemHooks() + { + // Check for blacklisted files + OC_Hook::connect('OC_Filesystem', 'write', 'OC_Filesystem', 'isBlacklisted'); + OC_Hook::connect('OC_Filesystem', 'rename', 'OC_Filesystem', 'isBlacklisted'); + } + + /** + * register hooks for sharing + */ + public static function registerShareHooks() + { + OC_Hook::connect('OC_User', 'post_deleteUser', 'OCP\Share', 'post_deleteUser'); + OC_Hook::connect('OC_User', 'post_addToGroup', 'OCP\Share', 'post_addToGroup'); + OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OCP\Share', 'post_removeFromGroup'); + OC_Hook::connect('OC_User', 'post_deleteGroup', 'OCP\Share', 'post_deleteGroup'); + } + + /** + * @brief Handle the request + */ + public static function handleRequest() + { + if (!OC_Config::getValue('installed', false)) { + require_once 'core/setup.php'; + exit(); + } + // Handle redirect URL for logged in users + if (isset($_REQUEST['redirect_url']) && OC_User::isLoggedIn()) { + $location = OC_Helper::makeURLAbsolute(urldecode($_REQUEST['redirect_url'])); + header('Location: ' . $location); + return; + } + // Handle WebDAV + if ($_SERVER['REQUEST_METHOD'] == 'PROPFIND') { + header('location: ' . OC_Helper::linkToRemote('webdav')); + return; + } + try { + OC::getRouter()->match(OC_Request::getPathInfo()); + return; + } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) { + //header('HTTP/1.0 404 Not Found'); + } catch (Symfony\Component\Routing\Exception\MethodNotAllowedException $e) { + OC_Response::setStatus(405); + return; + } + $app = OC::$REQUESTEDAPP; + $file = OC::$REQUESTEDFILE; + $param = array('app' => $app, 'file' => $file); + // Handle app css files + if (substr($file, -3) == 'css') { + self::loadCSSFile($param); + return; + } + // Someone is logged in : + if (OC_User::isLoggedIn()) { + OC_App::loadApps(); + OC_User::setupBackends(); + if (isset($_GET["logout"]) and ($_GET["logout"])) { + if (isset($_COOKIE['oc_token'])) { + OC_Preferences::deleteKey(OC_User::getUser(), 'login_token', $_COOKIE['oc_token']); + } + OC_User::logout(); + header("Location: " . OC::$WEBROOT . '/'); + } else { + if (is_null($file)) { + $param['file'] = 'index.php'; + } + $file_ext = substr($param['file'], -3); + if ($file_ext != 'php' + || !self::loadAppScriptFile($param) + ) { + header('HTTP/1.0 404 Not Found'); + } + } + return; + } + // Not handled and not logged in + self::handleLogin(); + } + + public static function loadAppScriptFile($param) + { + OC_App::loadApps(); + $app = $param['app']; + $file = $param['file']; + $app_path = OC_App::getAppPath($app); + $file = $app_path . '/' . $file; + unset($app, $app_path); + if (file_exists($file)) { + require_once $file; + return true; + } + return false; + } + + public static function loadCSSFile($param) + { + $app = $param['app']; + $file = $param['file']; + $app_path = OC_App::getAppPath($app); + if (file_exists($app_path . '/' . $file)) { + $app_web_path = OC_App::getAppWebPath($app); + $filepath = $app_web_path . '/' . $file; + $minimizer = new OC_Minimizer_CSS(); + $info = array($app_path, $app_web_path, $file); + $minimizer->output(array($info), $filepath); + } + } + + protected static function handleLogin() + { + OC_App::loadApps(array('prelogin')); + $error = array(); + // remember was checked after last login + if (OC::tryRememberLogin()) { + $error[] = 'invalidcookie'; + + // Someone wants to log in : + } elseif (OC::tryFormLogin()) { + $error[] = 'invalidpassword'; + + // The user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP + } elseif (OC::tryBasicAuthLogin()) { + $error[] = 'invalidpassword'; + } + OC_Util::displayLoginPage(array_unique($error)); + } + + protected static function cleanupLoginTokens($user) + { + $cutoff = time() - OC_Config::getValue('remember_login_cookie_lifetime', 60 * 60 * 24 * 15); + $tokens = OC_Preferences::getKeys($user, 'login_token'); + foreach ($tokens as $token) { + $time = OC_Preferences::getValue($user, 'login_token', $token); + if ($time < $cutoff) { + OC_Preferences::deleteKey($user, 'login_token', $token); + } + } + } + + protected static function tryRememberLogin() + { + if (!isset($_COOKIE["oc_remember_login"]) + || !isset($_COOKIE["oc_token"]) + || !isset($_COOKIE["oc_username"]) + || !$_COOKIE["oc_remember_login"] + ) { + return false; + } + OC_App::loadApps(array('authentication')); + if (defined("DEBUG") && DEBUG) { + OC_Log::write('core', 'Trying to login from cookie', OC_Log::DEBUG); + } + // confirm credentials in cookie + if (isset($_COOKIE['oc_token']) && OC_User::userExists($_COOKIE['oc_username'])) { + // delete outdated cookies + self::cleanupLoginTokens($_COOKIE['oc_username']); + // get stored tokens + $tokens = OC_Preferences::getKeys($_COOKIE['oc_username'], 'login_token'); + // test cookies token against stored tokens + if (in_array($_COOKIE['oc_token'], $tokens, true)) { + // replace successfully used token with a new one + OC_Preferences::deleteKey($_COOKIE['oc_username'], 'login_token', $_COOKIE['oc_token']); + $token = OC_Util::generate_random_bytes(32); + OC_Preferences::setValue($_COOKIE['oc_username'], 'login_token', $token, time()); + OC_User::setMagicInCookie($_COOKIE['oc_username'], $token); + // login + OC_User::setUserId($_COOKIE['oc_username']); + OC_Util::redirectToDefaultPage(); + // doesn't return + } + // if you reach this point you have changed your password + // or you are an attacker + // we can not delete tokens here because users may reach + // this point multiple times after a password change + OC_Log::write('core', 'Authentication cookie rejected for user ' . $_COOKIE['oc_username'], OC_Log::WARN); + } + OC_User::unsetMagicInCookie(); + return true; + } + + protected static function tryFormLogin() + { + if (!isset($_POST["user"]) || !isset($_POST['password'])) { + return false; + } + + OC_App::loadApps(); + + //setup extra user backends + OC_User::setupBackends(); + + if (OC_User::login($_POST["user"], $_POST["password"])) { + // setting up the time zone + if (isset($_POST['timezone-offset'])) { + $_SESSION['timezone'] = $_POST['timezone-offset']; + } + + self::cleanupLoginTokens($_POST['user']); + if (!empty($_POST["remember_login"])) { + if (defined("DEBUG") && DEBUG) { + OC_Log::write('core', 'Setting remember login to cookie', OC_Log::DEBUG); + } + $token = OC_Util::generate_random_bytes(32); + OC_Preferences::setValue($_POST['user'], 'login_token', $token, time()); + OC_User::setMagicInCookie($_POST["user"], $token); + } else { + OC_User::unsetMagicInCookie(); + } + OC_Util::redirectToDefaultPage(); + exit(); + } + return true; + } + + protected static function tryBasicAuthLogin() + { + if (!isset($_SERVER["PHP_AUTH_USER"]) + || !isset($_SERVER["PHP_AUTH_PW"]) + ) { + return false; + } + OC_App::loadApps(array('authentication')); + if (OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) { + //OC_Log::write('core',"Logged in with HTTP Authentication", OC_Log::DEBUG); + OC_User::unsetMagicInCookie(); + $_REQUEST['redirect_url'] = (isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : ''); + OC_Util::redirectToDefaultPage(); + } + return true; + } } // define runtime variables - unless this already has been done if (!isset($RUNTIME_NOAPPS)) { - $RUNTIME_NOAPPS = false; + $RUNTIME_NOAPPS = false; } if (!function_exists('get_temp_dir')) { - function get_temp_dir() - { - if ($temp = ini_get('upload_tmp_dir')) return $temp; - if ($temp = getenv('TMP')) return $temp; - if ($temp = getenv('TEMP')) return $temp; - if ($temp = getenv('TMPDIR')) return $temp; - $temp = tempnam(__FILE__, ''); - if (file_exists($temp)) { - unlink($temp); - return dirname($temp); - } - if ($temp = sys_get_temp_dir()) return $temp; - - return null; - } + function get_temp_dir() + { + if ($temp = ini_get('upload_tmp_dir')) return $temp; + if ($temp = getenv('TMP')) return $temp; + if ($temp = getenv('TEMP')) return $temp; + if ($temp = getenv('TMPDIR')) return $temp; + $temp = tempnam(__FILE__, ''); + if (file_exists($temp)) { + unlink($temp); + return dirname($temp); + } + if ($temp = sys_get_temp_dir()) return $temp; + + return null; + } } OC::init(); diff --git a/lib/cache/apc.php b/lib/cache/apc.php index 6dda0a0ff8c..895d307ea26 100644 --- a/lib/cache/apc.php +++ b/lib/cache/apc.php @@ -57,7 +57,7 @@ class OC_Cache_APC { if(!function_exists('apc_exists')) { function apc_exists($keys) { - $result; + $result=false; apc_fetch($keys, $result); return $result; } diff --git a/lib/connector/sabre/ServiceUnavailable.php b/lib/connector/sabre/ServiceUnavailable.php new file mode 100644 index 00000000000..c1cc815c989 --- /dev/null +++ b/lib/connector/sabre/ServiceUnavailable.php @@ -0,0 +1,22 @@ +<?php +/** + * ownCloud + * + * @author Thomas Müller + * @copyright 2013 Thomas Müller <thomas.mueller@tmit.eu> + * + * @license AGPL3 + */ + +class Sabre_DAV_Exception_ServiceUnavailable extends Sabre_DAV_Exception { + + /** + * Returns the HTTP statuscode for this exception + * + * @return int + */ + public function getHTTPCode() { + + return 503; + } +} diff --git a/lib/connector/sabre/client.php b/lib/connector/sabre/client.php deleted file mode 100644 index 8df5fb9a9ad..00000000000 --- a/lib/connector/sabre/client.php +++ /dev/null @@ -1,173 +0,0 @@ -<?php - -/** - * ownCloud - * - * @author Bjoern Schiessle - * @copyright 2012 Bjoern Schiessle <schiessle@owncloud.com> - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - * - */ - -class OC_Connector_Sabre_Client extends Sabre_DAV_Client { - - protected $trustedCertificates; - - /** - * Add trusted root certificates to the webdav client. - * - * The parameter certificates should be a absulute path to a file which contains - * all trusted certificates - * - * @param string $certificates - */ - public function addTrustedCertificates($certificates) { - $this->trustedCertificates = $certificates; - } - - /** - * Copied from SabreDAV with some modification to use user defined curlSettings - * Performs an actual HTTP request, and returns the result. - * - * If the specified url is relative, it will be expanded based on the base - * url. - * - * The returned array contains 3 keys: - * * body - the response body - * * httpCode - a HTTP code (200, 404, etc) - * * headers - a list of response http headers. The header names have - * been lowercased. - * - * @param string $method - * @param string $url - * @param string $body - * @param array $headers - * @return array - */ - public function request($method, $url = '', $body = null, $headers = array()) { - - $url = $this->getAbsoluteUrl($url); - - $curlSettings = array( - CURLOPT_RETURNTRANSFER => true, - // Return headers as part of the response - CURLOPT_HEADER => true, - CURLOPT_POSTFIELDS => $body, - // Automatically follow redirects - CURLOPT_FOLLOWLOCATION => true, - CURLOPT_MAXREDIRS => 5, - ); - - if($this->trustedCertificates) { - $curlSettings[CURLOPT_CAINFO] = $this->trustedCertificates; - } - - switch ($method) { - case 'HEAD' : - - // do not read body with HEAD requests (this is neccessary because cURL does not ignore the body with HEAD - // requests when the Content-Length header is given - which in turn is perfectly valid according to HTTP - // specs...) cURL does unfortunately return an error in this case ("transfer closed transfer closed with - // ... bytes remaining to read") this can be circumvented by explicitly telling cURL to ignore the - // response body - $curlSettings[CURLOPT_NOBODY] = true; - $curlSettings[CURLOPT_CUSTOMREQUEST] = 'HEAD'; - break; - - default: - $curlSettings[CURLOPT_CUSTOMREQUEST] = $method; - break; - - } - - // Adding HTTP headers - $nHeaders = array(); - foreach($headers as $key=>$value) { - - $nHeaders[] = $key . ': ' . $value; - - } - $curlSettings[CURLOPT_HTTPHEADER] = $nHeaders; - - if ($this->proxy) { - $curlSettings[CURLOPT_PROXY] = $this->proxy; - } - - if ($this->userName && $this->authType) { - $curlType = 0; - if ($this->authType & self::AUTH_BASIC) { - $curlType |= CURLAUTH_BASIC; - } - if ($this->authType & self::AUTH_DIGEST) { - $curlType |= CURLAUTH_DIGEST; - } - $curlSettings[CURLOPT_HTTPAUTH] = $curlType; - $curlSettings[CURLOPT_USERPWD] = $this->userName . ':' . $this->password; - } - - list( - $response, - $curlInfo, - $curlErrNo, - $curlError - ) = $this->curlRequest($url, $curlSettings); - - $headerBlob = substr($response, 0, $curlInfo['header_size']); - $response = substr($response, $curlInfo['header_size']); - - // In the case of 100 Continue, or redirects we'll have multiple lists - // of headers for each separate HTTP response. We can easily split this - // because they are separated by \r\n\r\n - $headerBlob = explode("\r\n\r\n", trim($headerBlob, "\r\n")); - - // We only care about the last set of headers - $headerBlob = $headerBlob[count($headerBlob)-1]; - - // Splitting headers - $headerBlob = explode("\r\n", $headerBlob); - - $headers = array(); - foreach($headerBlob as $header) { - $parts = explode(':', $header, 2); - if (count($parts)==2) { - $headers[strtolower(trim($parts[0]))] = trim($parts[1]); - } - } - - $response = array( - 'body' => $response, - 'statusCode' => $curlInfo['http_code'], - 'headers' => $headers - ); - - if ($curlErrNo) { - throw new Sabre_DAV_Exception('[CURL] Error while making request: ' . $curlError . ' (error code: ' . $curlErrNo . ')'); - } - - if ($response['statusCode']>=400) { - switch ($response['statusCode']) { - case 404: - throw new Sabre_DAV_Exception_NotFound('Resource ' . $url . ' not found.'); - break; - - default: - throw new Sabre_DAV_Exception('HTTP error response. (errorcode ' . $response['statusCode'] . ')'); - } - } - - return $response; - - } -}
\ No newline at end of file diff --git a/lib/connector/sabre/maintenanceplugin.php b/lib/connector/sabre/maintenanceplugin.php new file mode 100644 index 00000000000..329fa4443ad --- /dev/null +++ b/lib/connector/sabre/maintenanceplugin.php @@ -0,0 +1,56 @@ +<?php + +/** + * ownCloud + * + * @author Thomas Müller + * @copyright 2013 Thomas Müller <thomas.mueller@tmit.eu> + * + * @license AGPL3 + */ + +require 'ServiceUnavailable.php'; + +class OC_Connector_Sabre_MaintenancePlugin extends Sabre_DAV_ServerPlugin +{ + + /** + * Reference to main server object + * + * @var Sabre_DAV_Server + */ + private $server; + + /** + * This initializes the plugin. + * + * This function is called by Sabre_DAV_Server, after + * addPlugin is called. + * + * This method should set up the required event subscriptions. + * + * @param Sabre_DAV_Server $server + * @return void + */ + public function initialize(Sabre_DAV_Server $server) { + + $this->server = $server; + $this->server->subscribeEvent('beforeMethod', array($this, 'checkMaintenanceMode'), 10); + } + + /** + * This method is called before any HTTP method and returns http status code 503 + * in case the system is in maintenance mode. + * + * @throws Sabre_DAV_Exception_ServiceUnavailable + * @internal param string $method + * @return bool + */ + public function checkMaintenanceMode() { + if (OC_Config::getValue('maintenance', false)) { + throw new Sabre_DAV_Exception_ServiceUnavailable(); + } + + return true; + } +} diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index 52350072fb2..026ec9f7ec5 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -176,9 +176,9 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * @brief Returns a list of properties for this nodes.; * @param array $properties * @return array - * @note The properties list is a list of propertynames the client - * requested, encoded as xmlnamespace#tagName, for example: - * http://www.example.org/namespace#author If the array is empty, all + * @note The properties list is a list of propertynames the client + * requested, encoded as xmlnamespace#tagName, for example: + * http://www.example.org/namespace#author If the array is empty, all * properties should be returned */ public function getProperties($properties) { diff --git a/lib/db.php b/lib/db.php index 7e60b41d230..5224d5ee7da 100644 --- a/lib/db.php +++ b/lib/db.php @@ -41,6 +41,8 @@ class OC_DB { const BACKEND_PDO=0; const BACKEND_MDB2=1; + static private $preparedQueries = array(); + /** * @var MDB2_Driver_Common */ @@ -121,6 +123,7 @@ class OC_DB { return true; } } + self::$preparedQueries = array(); // The global data we need $name = OC_Config::getValue( "dbname", "owncloud" ); $host = OC_Config::getValue( "dbhost", "" ); @@ -201,6 +204,7 @@ class OC_DB { return true; } } + self::$preparedQueries = array(); // The global data we need $name = OC_Config::getValue( "dbname", "owncloud" ); $host = OC_Config::getValue( "dbhost", "" ); @@ -321,7 +325,12 @@ class OC_DB { $query.=$limitsql; } } + } else { + if (isset(self::$preparedQueries[$query])) { + return self::$preparedQueries[$query]; + } } + $rawQuery = $query; // Optimize the query $query = self::processQuery( $query ); @@ -343,6 +352,9 @@ class OC_DB { } $result=new PDOStatementWrapper($result); } + if (is_null($limit) || $limit == -1) { + self::$preparedQueries[$rawQuery] = $result; + } return $result; } @@ -495,8 +507,9 @@ class OC_DB { if (PEAR::isError($previousSchema)) { $error = $previousSchema->getMessage(); $detail = $previousSchema->getDebugInfo(); - OC_Log::write('core', 'Failed to get existing database structure for upgrading ('.$error.', '.$detail.')', OC_Log::FATAL); - return false; + $message = 'Failed to get existing database structure for updating ('.$error.', '.$detail.')'; + OC_Log::write('core', $message, OC_Log::FATAL); + throw new Exception($message); } // Make changes and save them to an in-memory file @@ -523,8 +536,9 @@ class OC_DB { if (PEAR::isError($op)) { $error = $op->getMessage(); $detail = $op->getDebugInfo(); - OC_Log::write('core', 'Failed to update database structure ('.$error.', '.$detail.')', OC_Log::FATAL); - return false; + $message = 'Failed to update database structure ('.$error.', '.$detail.')'; + OC_Log::write('core', $message, OC_Log::FATAL); + throw new Exception($message); } return true; } @@ -586,7 +600,7 @@ class OC_DB { error_log('DB error: '.$entry); OC_Template::printErrorPage( $entry ); } - + if($result->numRows() == 0) { $query = 'INSERT INTO "' . $table . '" ("' . implode('","', array_keys($input)) . '") VALUES("' @@ -621,7 +635,7 @@ class OC_DB { return $result->execute(); } - + /** * @brief does minor changes to query * @param string $query Query string diff --git a/lib/filecache.php b/lib/filecache.php index c3256c783e6..bde70757d31 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -59,7 +59,7 @@ class OC_FileCache{ * @param string $path * @param array data * @param string root (optional) - * @note $data is an associative array in the same format as returned + * @note $data is an associative array in the same format as returned * by get */ public static function put($path, $data, $root=false) { @@ -206,7 +206,7 @@ class OC_FileCache{ OC_Cache::remove('fileid/'.$root.$path); } - + /** * return array of filenames matching the querty * @param string $query diff --git a/lib/fileproxy/quota.php b/lib/fileproxy/quota.php index 742e02d471b..503288142aa 100644 --- a/lib/fileproxy/quota.php +++ b/lib/fileproxy/quota.php @@ -76,7 +76,7 @@ class OC_FileProxy_Quota extends OC_FileProxy{ $usedSpace=isset($sharedInfo['size'])?$usedSpace-$sharedInfo['size']:$usedSpace; return $totalSpace-$usedSpace; } - + public function postFree_space($path, $space) { $free=$this->getFreeSpace($path); if($free==-1) { diff --git a/lib/files.php b/lib/files.php index 69097e41074..f4e0f140a44 100644 --- a/lib/files.php +++ b/lib/files.php @@ -141,7 +141,7 @@ class OC_Files { */ public static function get($dir, $files, $only_header = false) { $xsendfile = false; - if (isset($_SERVER['MOD_X_SENDFILE_ENABLED']) || + if (isset($_SERVER['MOD_X_SENDFILE_ENABLED']) || isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) { $xsendfile = true; } diff --git a/lib/filestorage.php b/lib/filestorage.php index dd65f4421b7..2e03c4cb6da 100644 --- a/lib/filestorage.php +++ b/lib/filestorage.php @@ -21,7 +21,7 @@ */ /** - * Provde a common interface to all different storage options + * Provide a common interface to all different storage options */ abstract class OC_Filestorage{ abstract public function __construct($parameters); diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php index 6fe45acf8c5..910b3fa039d 100644 --- a/lib/filestorage/local.php +++ b/lib/filestorage/local.php @@ -29,7 +29,15 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ return is_file($this->datadir.$path); } public function stat($path) { - return stat($this->datadir.$path); + $fullPath = $this->datadir . $path; + $statResult = stat($fullPath); + + if ($statResult['size'] < 0) { + $size = self::getFileSizeFromOS($fullPath); + $statResult['size'] = $size; + $statResult[7] = $size; + } + return $statResult; } public function filetype($path) { $filetype=filetype($this->datadir.$path); @@ -42,7 +50,13 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ if($this->is_dir($path)) { return 0; }else{ - return filesize($this->datadir.$path); + $fullPath = $this->datadir . $path; + $fileSize = filesize($fullPath); + if ($fileSize < 0) { + return self::getFileSizeFromOS($fullPath); + } + + return $fileSize; } } public function isReadable($path) { @@ -156,6 +170,30 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ return $return; } + private static function getFileSizeFromOS($fullPath) { + $name = strtolower(php_uname('s')); + // Windows OS: we use COM to access the filesystem + if (strpos($name, 'win') !== false) { + if (class_exists('COM')) { + $fsobj = new COM("Scripting.FileSystemObject"); + $f = $fsobj->GetFile($fullPath); + return $f->Size; + } + } else if (strpos($name, 'bsd') !== false) { + if (\OC_Helper::is_function_enabled('exec')) { + return (float)exec('stat -f %z ' . escapeshellarg($fullPath)); + } + } else if (strpos($name, 'linux') !== false) { + if (\OC_Helper::is_function_enabled('exec')) { + return (float)exec('stat -c %s ' . escapeshellarg($fullPath)); + } + } else { + OC_Log::write('core', 'Unable to determine file size of "'.$fullPath.'". Unknown OS: '.$name, OC_Log::ERROR); + } + + return 0; + } + public function hash($path, $type, $raw=false) { return hash_file($type, $this->datadir.$path, $raw); } @@ -190,6 +228,7 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ /** * check if a file or folder has been updated since $time + * @param string $path * @param int $time * @return bool */ diff --git a/lib/filesystem.php b/lib/filesystem.php index aa03593908d..f185d777def 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -179,11 +179,11 @@ class OC_Filesystem{ $internalPath=substr($path, strlen($mountPoint)); return $internalPath; } - + static private function mountPointsLoaded($user) { return in_array($user, self::$loadedUsers); } - + /** * get the storage object for a path * @param string path @@ -216,7 +216,7 @@ class OC_Filesystem{ self::mount($options['class'], $options['options'], $mountPoint); } } - + if(isset($mountConfig['group'])) { foreach($mountConfig['group'] as $group=>$mounts) { if(OC_Group::inGroup($user, $group)) { @@ -230,7 +230,7 @@ class OC_Filesystem{ } } } - + if(isset($mountConfig['user'])) { foreach($mountConfig['user'] as $mountUser=>$mounts) { if($user==='all' or strtolower($mountUser)===strtolower($user)) { @@ -244,16 +244,16 @@ class OC_Filesystem{ } } } - + $mtime=filemtime(OC::$SERVERROOT.'/config/mount.php'); $previousMTime=OC_Appconfig::getValue('files', 'mountconfigmtime', 0); if($mtime>$previousMTime) {//mount config has changed, filecache needs to be updated OC_FileCache::triggerUpdate(); OC_Appconfig::setValue('files', 'mountconfigmtime', $mtime); } - } + } } - + static public function init($root, $user = '') { if(self::$defaultInstance) { return false; diff --git a/lib/filesystemview.php b/lib/filesystemview.php index e944ae5045d..ea9cbecee0e 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -430,10 +430,10 @@ class OC_FilesystemView { $target = $this->fopen($path2.$postFix2, 'w'); $result = OC_Helper::streamCopy($source, $target); } - if( $this->fakeRoot==OC_Filesystem::getRoot() ) { - // If the file to be copied originates within + if( $this->fakeRoot==OC_Filesystem::getRoot() ) { + // If the file to be copied originates within // the user's data directory - + OC_Hook::emit( OC_Filesystem::CLASSNAME, OC_Filesystem::signal_post_copy, @@ -454,33 +454,33 @@ class OC_FilesystemView { OC_Filesystem::signal_post_write, array( OC_Filesystem::signal_param_path => $path2) ); - - } else { - // If this is not a normal file copy operation - // and the file originates somewhere else - // (e.g. a version rollback operation), do not + + } else { + // If this is not a normal file copy operation + // and the file originates somewhere else + // (e.g. a version rollback operation), do not // perform all the other post_write actions - + // Update webdav properties OC_Filesystem::removeETagHook(array("path" => $path2), $this->fakeRoot); - + $splitPath2 = explode( '/', $path2 ); - - // Only cache information about files - // that are being copied from within - // the user files directory. Caching + + // Only cache information about files + // that are being copied from within + // the user files directory. Caching // other files, like VCS backup files, // serves no purpose if ( $splitPath2[1] == 'files' ) { - + OC_FileCache_Update::update($path2, $this->fakeRoot); - + } - + } - + return $result; - + } } } diff --git a/lib/helper.php b/lib/helper.php index be4e4e52677..5d7e3fa4894 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -31,8 +31,9 @@ class OC_Helper { /** * @brief Creates an url using a defined route * @param $route - * @param $parameters - * @param $args array with param=>value, will be appended to the returned url + * @param array $parameters + * @return + * @internal param array $args with param=>value, will be appended to the returned url * @returns the url * * Returns a url to the given app and file. @@ -128,6 +129,7 @@ class OC_Helper { /** * @brief Creates an absolute url for remote use * @param string $service id + * @param bool $add_slash * @return string the url * * Returns a absolute url to the given service. @@ -139,6 +141,7 @@ class OC_Helper { /** * @brief Creates an absolute url for public use * @param string $service id + * @param bool $add_slash * @return string the url * * Returns a absolute url to the given service. @@ -220,6 +223,10 @@ class OC_Helper { * Makes 2048 to 2 kB. */ public static function humanFileSize( $bytes ) { + if( $bytes < 0 ) { + $l = OC_L10N::get('lib'); + return $l->t("couldn't be determined"); + } if( $bytes < 1024 ) { return "$bytes B"; } @@ -450,12 +457,14 @@ class OC_Helper { } /** - * detect if a given program is found in the search PATH - * - * @param string $program name - * @param string $optional search path, defaults to $PATH - * @return bool true if executable program found in path - */ + * detect if a given program is found in the search PATH + * + * @param $name + * @param bool $path + * @internal param string $program name + * @internal param string $optional search path, defaults to $PATH + * @return bool true if executable program found in path + */ public static function canExecute($name, $path = false) { // path defaults to PATH from environment if not set if ($path === false) { @@ -544,7 +553,7 @@ class OC_Helper { fclose($fh); return $file; } - + /** * create a temporary folder with an unique filename * @return string @@ -620,37 +629,17 @@ class OC_Helper { return $newpath; } - /* - * checks if $sub is a subdirectory of $parent + /** + * @brief Checks if $sub is a subdirectory of $parent * * @param string $sub * @param string $parent * @return bool */ public static function issubdirectory($sub, $parent) { - if($sub == null || $sub == '' || $parent == null || $parent == '') { - return false; - } - $realpath_sub = realpath($sub); - $realpath_parent = realpath($parent); - if(($realpath_sub == false && substr_count($realpath_sub, './') != 0) || ($realpath_parent == false && substr_count($realpath_parent, './') != 0)) { //it checks for both ./ and ../ - return false; - } - if($realpath_sub && $realpath_sub != '' && $realpath_parent && $realpath_parent != '') { - if(substr($realpath_sub, 0, strlen($realpath_parent)) == $realpath_parent) { - return true; - } - }else{ - if(substr($sub, 0, strlen($parent)) == $parent) { - return true; - } + if (strpos(realpath($sub), realpath($parent)) === 0) { + return true; } - /*echo 'SUB: ' . $sub . "\n"; - echo 'PAR: ' . $parent . "\n"; - echo 'REALSUB: ' . $realpath_sub . "\n"; - echo 'REALPAR: ' . $realpath_parent . "\n"; - echo substr($realpath_sub, 0, strlen($realpath_parent)); - exit;*/ return false; } @@ -676,16 +665,16 @@ class OC_Helper { } /** - * @brief replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement. - * - * @param string $input The input string. .Opposite to the PHP build-in function does not accept an array. - * @param string $replacement The replacement string. - * @param int $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string. - * @param int $length Length of the part to be replaced - * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 - * @return string - * - */ + * @brief replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement. + * + * @param $string + * @param string $replacement The replacement string. + * @param int $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string. + * @param int $length Length of the part to be replaced + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @internal param string $input The input string. .Opposite to the PHP build-in function does not accept an array. + * @return string + */ public static function mb_substr_replace($string, $replacement, $start, $length = null, $encoding = 'UTF-8') { $start = intval($start); $length = intval($length); @@ -758,4 +747,24 @@ class OC_Helper { } return $str; } + + /** + * Checks if a function is available + * @param string $function_name + * @return bool + */ + public static function is_function_enabled($function_name) { + if (!function_exists($function_name)) { + return false; + } + $disabled = explode(', ', ini_get('disable_functions')); + if (in_array($function_name, $disabled)) { + return false; + } + $disabled = explode(', ', ini_get('suhosin.executor.func.blacklist')); + if (in_array($function_name, $disabled)) { + return false; + } + return true; + } } diff --git a/lib/image.php b/lib/image.php index 2043a452541..cfc6d477395 100644 --- a/lib/image.php +++ b/lib/image.php @@ -646,7 +646,7 @@ class OC_Image { fclose($fh); return $im; } - + /** * @brief Resizes the image preserving ratio. * @param $maxsize The maximum size of either the width or height. diff --git a/lib/json.php b/lib/json.php index 204430411c0..f929e958957 100644 --- a/lib/json.php +++ b/lib/json.php @@ -57,9 +57,7 @@ class OC_JSON{ * Check if the user is a admin, send json error msg if not */ public static function checkAdminUser() { - self::checkLoggedIn(); - self::verifyUser(); - if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )) { + if( !OC_User::isAdminUser(OC_User::getUser())) { $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); @@ -70,9 +68,7 @@ class OC_JSON{ * Check if the user is a subadmin, send json error msg if not */ public static function checkSubAdminUser() { - self::checkLoggedIn(); - self::verifyUser(); - if(!OC_Group::inGroup(OC_User::getUser(), 'admin') && !OC_SubAdmin::isSubAdmin(OC_User::getUser())) { + if(!OC_SubAdmin::isSubAdmin(OC_User::getUser())) { $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); @@ -80,19 +76,6 @@ class OC_JSON{ } /** - * Check if the user verified the login with his password - */ - public static function verifyUser() { - if(OC_Config::getValue('enhancedauth', false) === true) { - if(!isset($_SESSION['verifiedLogin']) OR $_SESSION['verifiedLogin'] < time()) { - $l = OC_L10N::get('lib'); - self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); - exit(); - } - } - } - - /** * Send json error msg */ public static function error($data = array()) { diff --git a/lib/l10n.php b/lib/l10n.php index f70dfa5e34e..ca53b3cf65c 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -141,15 +141,15 @@ class OC_L10N{ } } - /** - * @brief Translating - * @param $text String The text we need a translation for - * @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. - */ + /** + * @brief Translating + * @param $text String The text we need a translation for + * @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. + */ public function t($text, $parameters = array()) { return new OC_L10N_String($this, $text, $parameters); } diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index 3eb0660d944..31f37458b81 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -1,4 +1,34 @@ <?php $TRANSLATIONS = array( -"Personal" => "Лично", -"Authentication error" => "Проблем с идентификацията" +"Help" => "Помощ", +"Personal" => "Лични", +"Settings" => "Настройки", +"Users" => "Потребители", +"Apps" => "Приложения", +"Admin" => "Админ", +"ZIP download is turned off." => "Изтеглянето като ZIP е изключено.", +"Files need to be downloaded one by one." => "Файловете трябва да се изтеглят един по един.", +"Back to Files" => "Назад към файловете", +"Selected files too large to generate zip file." => "Избраните файлове са прекалено големи за генерирането на ZIP архив.", +"Application is not enabled" => "Приложението не е включено.", +"Authentication error" => "Възникна проблем с идентификацията", +"Token expired. Please reload page." => "Ключът е изтекъл, моля презаредете страницата", +"Files" => "Файлове", +"Text" => "Текст", +"Images" => "Снимки", +"seconds ago" => "преди секунди", +"1 minute ago" => "преди 1 минута", +"%d minutes ago" => "преди %d минути", +"1 hour ago" => "преди 1 час", +"%d hours ago" => "преди %d часа", +"today" => "днес", +"yesterday" => "вчера", +"%d days ago" => "преди %d дни", +"last month" => "последният месец", +"%d months ago" => "преди %d месеца", +"last year" => "последната година", +"years ago" => "последните години", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s е налична. Получете <a href=\"%s\">повече информация</a>", +"up to date" => "е актуална", +"updates check is disabled" => "проверката за обновления е изключена", +"Could not find category \"%s\"" => "Невъзможно откриване на категорията \"%s\"" ); diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php new file mode 100644 index 00000000000..cb6ff4455a9 --- /dev/null +++ b/lib/l10n/bn_BD.php @@ -0,0 +1,29 @@ +<?php $TRANSLATIONS = array( +"Help" => "সহায়িকা", +"Personal" => "ব্যক্তিগত", +"Settings" => "নিয়ামকসমূহ", +"Users" => "ব্যভহারকারী", +"Apps" => "অ্যাপ", +"Admin" => "প্রশাসক", +"ZIP download is turned off." => "ZIP ডাউনলোড বন্ধ করা আছে।", +"Files need to be downloaded one by one." => "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।", +"Back to Files" => "ফাইলে ফিরে চল", +"Selected files too large to generate zip file." => "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।", +"Application is not enabled" => "অ্যাপ্লিকেসনটি সক্রিয় নয়", +"Authentication error" => "অনুমোদন ঘটিত সমস্যা", +"Token expired. Please reload page." => "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।", +"Files" => "ফাইল", +"seconds ago" => "সেকেন্ড পূর্বে", +"1 minute ago" => "১ মিনিট পূর্বে", +"%d minutes ago" => "%d মিনিট পূর্বে", +"1 hour ago" => "1 ঘন্টা পূর্বে", +"today" => "আজ", +"yesterday" => "গতকাল", +"%d days ago" => "%d দিন পূর্বে", +"last month" => "গত মাস", +"last year" => "গত বছর", +"years ago" => "বছর পূর্বে", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s এখন সুলভ। <a href=\"%s\">আরও জানুন</a>", +"up to date" => "সর্বশেষ", +"updates check is disabled" => "পরিবর্ধন পরীক্ষণ করা বন্ধ রাখা হয়েছে" +); diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index b3321ef82e1..f6401fa39b6 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -9,6 +9,7 @@ "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.", +"couldn't be determined" => "no s'ha pogut determinar", "Application is not enabled" => "L'aplicació no està habilitada", "Authentication error" => "Error d'autenticació", "Token expired. Please reload page." => "El testimoni ha expirat. Torneu a carregar la pàgina.", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index fa11e886774..2c823194b96 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -9,6 +9,7 @@ "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.", +"couldn't be determined" => "nelze zjistit", "Application is not enabled" => "Aplikace není povolena", "Authentication error" => "Chyba ověření", "Token expired. Please reload page." => "Token vypršel. Obnovte prosím stránku.", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index e9f0f34a0e1..625ba2ecf20 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -9,6 +9,7 @@ "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.", +"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.", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 315b995ecc9..cf0be24b432 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Τα αρχεία πρέπει να ληφθούν ένα-ένα.", "Back to Files" => "Πίσω στα Αρχεία", "Selected files too large to generate zip file." => "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip.", +"couldn't be determined" => "δεν μπορούσε να προσδιορισθεί", "Application is not enabled" => "Δεν ενεργοποιήθηκε η εφαρμογή", "Authentication error" => "Σφάλμα πιστοποίησης", "Token expired. Please reload page." => "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα.", diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 6a5734e978d..b8d4b137431 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Tiedostot on ladattava yksittäin.", "Back to Files" => "Takaisin tiedostoihin", "Selected files too large to generate zip file." => "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon.", +"couldn't be determined" => "ei voitu määrittää", "Application is not enabled" => "Sovellusta ei ole otettu käyttöön", "Authentication error" => "Todennusvirhe", "Token expired. Please reload page." => "Valtuutus vanheni. Lataa sivu uudelleen.", diff --git a/lib/l10n/id.php b/lib/l10n/id.php index e31b4caf4f5..8f0e38123b6 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -12,17 +12,23 @@ "Application is not enabled" => "aplikasi tidak diaktifkan", "Authentication error" => "autentikasi bermasalah", "Token expired. Please reload page." => "token kadaluarsa.mohon perbaharui laman.", +"Files" => "Berkas", "Text" => "teks", +"Images" => "Gambar", "seconds ago" => "beberapa detik yang lalu", "1 minute ago" => "1 menit lalu", "%d minutes ago" => "%d menit lalu", +"1 hour ago" => "1 jam yang lalu", +"%d hours ago" => "%d jam yang lalu", "today" => "hari ini", "yesterday" => "kemarin", "%d days ago" => "%d hari lalu", "last month" => "bulan kemarin", +"%d months ago" => "%d bulan yang lalu", "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", "%s is available. Get <a href=\"%s\">more information</a>" => "%s tersedia. dapatkan <a href=\"%s\"> info lebih lanjut</a>", "up to date" => "terbaru", -"updates check is disabled" => "pengecekan pembaharuan sedang non-aktifkan" +"updates check is disabled" => "pengecekan pembaharuan sedang non-aktifkan", +"Could not find category \"%s\"" => "Tidak dapat menemukan kategori \"%s\"" ); diff --git a/lib/l10n/it.php b/lib/l10n/it.php index c0fb0babfb3..eb404db7fb5 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -9,6 +9,7 @@ "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.", +"couldn't be determined" => "non può essere determinato", "Application is not enabled" => "L'applicazione non è abilitata", "Authentication error" => "Errore di autenticazione", "Token expired. Please reload page." => "Token scaduto. Ricarica la pagina.", diff --git a/lib/l10n/lb.php b/lib/l10n/lb.php index baee630e897..a5a9adca187 100644 --- a/lib/l10n/lb.php +++ b/lib/l10n/lb.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( +"Help" => "Hëllef", "Personal" => "Perséinlech", "Settings" => "Astellungen", "Authentication error" => "Authentifikatioun's Fehler", +"Files" => "Dateien", "Text" => "SMS" ); diff --git a/lib/l10n/ms_MY.php b/lib/l10n/ms_MY.php index 86c7e51b486..5afee1cb5a8 100644 --- a/lib/l10n/ms_MY.php +++ b/lib/l10n/ms_MY.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"Help" => "Bantuan", "Personal" => "Peribadi", "Settings" => "Tetapan", "Users" => "Pengguna", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 84867c4c37c..e35bb489c49 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -9,6 +9,7 @@ "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.", +"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", "Token expired. Please reload page." => "O token expirou. Por favor recarregue a página.", diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index f5d52f8682d..053644ddede 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Файли повинні бути завантаженні послідовно.", "Back to Files" => "Повернутися до файлів", "Selected files too large to generate zip file." => "Вибрані фали завеликі для генерування zip файлу.", +"couldn't be determined" => "не може бути визначено", "Application is not enabled" => "Додаток не увімкнений", "Authentication error" => "Помилка автентифікації", "Token expired. Please reload page." => "Строк дії токена скінчився. Будь ласка, перезавантажте сторінку.", diff --git a/lib/log.php b/lib/log.php index e9cededa5c0..e869282e88c 100644 --- a/lib/log.php +++ b/lib/log.php @@ -39,7 +39,7 @@ class OC_Log { $log_class::write($app, $message, $level); } } - + //Fatal errors handler public static function onShutdown() { $error = error_get_last(); @@ -50,7 +50,7 @@ class OC_Log { return true; } } - + // Uncaught exception handler public static function onException($exception) { self::write('PHP', $exception->getMessage() . ' at ' . $exception->getFile() . '#' . $exception->getLine(), self::FATAL); diff --git a/lib/mail.php b/lib/mail.php index c78fcce88d4..4683a1b4eee 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -25,12 +25,18 @@ class OC_Mail { * @param string $mailtext * @param string $fromaddress * @param string $fromname - * @param bool $html + * @param bool|int $html + * @param string $altbody + * @param string $ccaddress + * @param string $ccname + * @param string $bcc + * @throws Exception */ public static function send($toaddress,$toname,$subject,$mailtext,$fromaddress,$fromname,$html=0,$altbody='',$ccaddress='',$ccname='', $bcc='') { $SMTPMODE = OC_Config::getValue( 'mail_smtpmode', 'sendmail' ); $SMTPHOST = OC_Config::getValue( 'mail_smtphost', '127.0.0.1' ); + $SMTPPORT = OC_Config::getValue( 'mail_smtpport', 25 ); $SMTPAUTH = OC_Config::getValue( 'mail_smtpauth', false ); $SMTPUSERNAME = OC_Config::getValue( 'mail_smtpname', '' ); $SMTPPASSWORD = OC_Config::getValue( 'mail_smtppassword', '' ); @@ -49,6 +55,7 @@ class OC_Mail { $mailo->Host = $SMTPHOST; + $mailo->Port = $SMTPPORT; $mailo->SMTPAuth = $SMTPAUTH; $mailo->Username = $SMTPUSERNAME; $mailo->Password = $SMTPPASSWORD; @@ -89,8 +96,6 @@ class OC_Mail { } } - - /** * return the footer for a mail * @@ -103,7 +108,4 @@ class OC_Mail { return($txt); } - - - } diff --git a/lib/migrate.php b/lib/migrate.php index 5ff8e338a44..87bdd016fe4 100644 --- a/lib/migrate.php +++ b/lib/migrate.php @@ -219,7 +219,7 @@ class OC_Migrate{ // We need to be an admin if we are not importing our own data if(($type == 'user' && self::$uid != $currentuser) || $type != 'user' ) { - if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )) { + if( !OC_User::isAdminUser($currentuser)) { // Naughty. OC_Log::write( 'migration', 'Import not permitted.', OC_Log::ERROR ); return json_encode( array( 'success' => false ) ); @@ -655,7 +655,7 @@ class OC_Migrate{ $query = OC_DB::prepare( "INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )" ); $result = $query->execute( array( $uid, $hash)); if( !$result ) { - OC_Log::write('migration', 'Failed to create the new user "'.$uid.""); + OC_Log::write('migration', 'Failed to create the new user "'.$uid."", OC_Log::ERROR); } return $result ? true : false; diff --git a/lib/migration/content.php b/lib/migration/content.php index 00df62f0c7f..e81c8f217ff 100644 --- a/lib/migration/content.php +++ b/lib/migration/content.php @@ -66,7 +66,7 @@ class OC_Migration_Content{ // Die if we have an error (error means: bad query, not 0 results!) if( PEAR::isError( $query ) ) { - $entry = 'DB Error: "'.$result->getMessage().'"<br />'; + $entry = 'DB Error: "'.$query->getMessage().'"<br />'; $entry .= 'Offending command was: '.$query.'<br />'; OC_Log::write( 'migration', $entry, OC_Log::FATAL ); return false; diff --git a/lib/ocs/cloud.php b/lib/ocs/cloud.php index 21095ec91e9..2d18b1db3f2 100644 --- a/lib/ocs/cloud.php +++ b/lib/ocs/cloud.php @@ -24,7 +24,7 @@ class OC_OCS_Cloud { - public static function getSystemWebApps($parameters) { + public static function getSystemWebApps() { OC_Util::checkLoggedIn(); $apps = OC_App::getEnabledApps(); $values = array(); @@ -37,15 +37,15 @@ class OC_OCS_Cloud { } return new OC_OCS_Result($values); } - + public static function getUserQuota($parameters) { $user = OC_User::getUser(); - if(OC_Group::inGroup($user, 'admin') or ($user==$parameters['user'])) { + if(OC_User::isAdminUser($user) or ($user==$parameters['user'])) { if(OC_User::userExists($parameters['user'])) { // calculate the disc space $userDir = '/'.$parameters['user'].'/files'; - OC_Filesystem::init($useDir); + OC_Filesystem::init($userDir); $rootInfo = OC_FileCache::get(''); $sharedInfo = OC_FileCache::get('/Shared'); $used = $rootInfo['size'] - $sharedInfo['size']; @@ -68,7 +68,7 @@ class OC_OCS_Cloud { return new OC_OCS_Result(null, 300); } } - + public static function getUserPublickey($parameters) { if(OC_User::userExists($parameters['user'])) { @@ -79,10 +79,10 @@ class OC_OCS_Cloud { return new OC_OCS_Result(null, 300); } } - + public static function getUserPrivatekey($parameters) { $user = OC_User::getUser(); - if(OC_Group::inGroup($user, 'admin') or ($user==$parameters['user'])) { + if(OC_User::isAdminUser($user) or ($user==$parameters['user'])) { if(OC_User::userExists($user)) { // calculate the disc space diff --git a/lib/ocs/config.php b/lib/ocs/config.php index 03c54aa2314..f19121f4b2b 100644 --- a/lib/ocs/config.php +++ b/lib/ocs/config.php @@ -23,7 +23,7 @@ */ class OC_OCS_Config { - + public static function apiConfig($parameters) { $xml['version'] = '1.7'; $xml['website'] = 'ownCloud'; @@ -32,5 +32,5 @@ class OC_OCS_Config { $xml['ssl'] = 'false'; return new OC_OCS_Result($xml); } - + } diff --git a/lib/ocs/person.php b/lib/ocs/person.php index 169cc8211db..1c8210d0825 100644 --- a/lib/ocs/person.php +++ b/lib/ocs/person.php @@ -38,5 +38,5 @@ class OC_OCS_Person { return new OC_OCS_Result(null, 101); } } - + } diff --git a/lib/ocs/privatedata.php b/lib/ocs/privatedata.php index e01ed5e8b07..311b24269dd 100644 --- a/lib/ocs/privatedata.php +++ b/lib/ocs/privatedata.php @@ -39,7 +39,7 @@ class OC_OCS_Privatedata { return new OC_OCS_Result($xml); //TODO: replace 'privatedata' with 'attribute' once a new libattice has been released that works with it } - + public static function set($parameters) { OC_Util::checkLoggedIn(); $user = OC_User::getUser(); @@ -50,7 +50,7 @@ class OC_OCS_Privatedata { return new OC_OCS_Result(null, 100); } } - + public static function delete($parameters) { OC_Util::checkLoggedIn(); $user = OC_User::getUser(); diff --git a/lib/ocs/result.php b/lib/ocs/result.php index b08d911f785..65b2067fc3f 100644 --- a/lib/ocs/result.php +++ b/lib/ocs/result.php @@ -21,9 +21,9 @@ */ class OC_OCS_Result{ - + private $data, $message, $statusCode, $items, $perPage; - + /** * create the OCS_Result object * @param $data mixed the data to return @@ -33,7 +33,7 @@ class OC_OCS_Result{ $this->statusCode = $code; $this->message = $message; } - + /** * optionally set the total number of items available * @param $items int @@ -41,7 +41,7 @@ class OC_OCS_Result{ public function setTotalItems(int $items) { $this->items = $items; } - + /** * optionally set the the number of items per page * @param $items int @@ -49,7 +49,7 @@ class OC_OCS_Result{ public function setItemsPerPage(int $items) { $this->perPage = $items; } - + /** * returns the data associated with the api result * @return array @@ -70,6 +70,6 @@ class OC_OCS_Result{ // Return the result data. return $return; } - - + + }
\ No newline at end of file diff --git a/lib/ocsclient.php b/lib/ocsclient.php index 24081425f1e..ca0665da436 100644 --- a/lib/ocsclient.php +++ b/lib/ocsclient.php @@ -39,11 +39,11 @@ class OC_OCSClient{ return($url); } - /** - * @brief Get the url of the OCS KB server. - * @returns string of the KB server - * This function returns the url of the OCS knowledge base server. It´s possible to set it in the config file or it will fallback to the default - */ + /** + * @brief Get the url of the OCS KB server. + * @returns string of the KB server + * This function returns the url of the OCS knowledge base server. It´s possible to set it in the config file or it will fallback to the default + */ private static function getKBURL() { $url = OC_Config::getValue('knowledgebaseurl', 'http://api.apps.owncloud.com/v1'); return($url); @@ -59,7 +59,7 @@ class OC_OCSClient{ return($data); } - /** + /** * @brief Get all the categories from the OCS server * @returns array with category ids * @note returns NULL if config value appstoreenabled is set to false @@ -242,7 +242,7 @@ class OC_OCSClient{ } $kbe['totalitems'] = $data->meta->totalitems; } - return $kbe; + return $kbe; } diff --git a/lib/public/api.php b/lib/public/api.php index a85daa1935c..95d333f2165 100644 --- a/lib/public/api.php +++ b/lib/public/api.php @@ -26,7 +26,7 @@ namespace OCP; * This class provides functions to manage apps in ownCloud */ class API { - + /** * registers an api call * @param string $method the http method @@ -40,5 +40,5 @@ class API { public static function register($method, $url, $action, $app, $authLevel = OC_API::USER_AUTH, $defaults = array(), $requirements = array()){ \OC_API::register($method, $url, $action, $app, $authLevel, $defaults, $requirements); } - + } diff --git a/lib/public/app.php b/lib/public/app.php index 809a656f17f..a1ecf524cc8 100644 --- a/lib/public/app.php +++ b/lib/public/app.php @@ -89,7 +89,7 @@ class App { * @param $page string page to be included */ public static function registerPersonal( $app, $page ) { - return \OC_App::registerPersonal( $app, $page ); + \OC_App::registerPersonal( $app, $page ); } /** @@ -98,7 +98,7 @@ class App { * @param $page string page to be included */ public static function registerAdmin( $app, $page ) { - return \OC_App::registerAdmin( $app, $page ); + \OC_App::registerAdmin( $app, $page ); } /** @@ -125,10 +125,9 @@ class App { /** * @brief Check if the app is enabled, redirects to home if not * @param $app app - * @returns true/false */ public static function checkAppEnabled( $app ) { - return \OC_Util::checkAppEnabled( $app ); + \OC_Util::checkAppEnabled( $app ); } /** diff --git a/lib/public/constants.php b/lib/public/constants.php index bc979c9031f..1495c620dc9 100644 --- a/lib/public/constants.php +++ b/lib/public/constants.php @@ -35,4 +35,3 @@ const PERMISSION_UPDATE = 2; const PERMISSION_DELETE = 8; const PERMISSION_SHARE = 16; const PERMISSION_ALL = 31; - diff --git a/lib/public/db.php b/lib/public/db.php index 92ff8f93a22..932e79d9ef1 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -36,8 +36,8 @@ namespace OCP; class DB { /** * @brief Prepare a SQL query - * @param $query Query string - * @returns prepared SQL query + * @param string $query Query string + * @return \MDB2_Statement_Common prepared SQL query * * SQL query via MDB2 prepare(), needs to be execute()'d! */ @@ -49,9 +49,9 @@ class DB { * @brief Insert a row if a matching row doesn't exists. * @param $table string The table name (will replace *PREFIX*) to perform the replace on. * @param $input array - * + * * The input array if in the form: - * + * * array ( 'id' => array ( 'value' => 6, * 'key' => true * ), @@ -59,17 +59,17 @@ class DB { * 'family' => array ('value' => 'Stefanov'), * 'birth_date' => array ('value' => '1975-06-20') * ); - * @returns true/false + * @return bool * */ public static function insertIfNotExist($table, $input) { return(\OC_DB::insertIfNotExist($table, $input)); } - + /** * @brief gets last value of autoincrement * @param $table string The optional table name (will replace *PREFIX*) and add sequence suffix - * @returns id + * @return int * * MDB2 lastInsertID() * diff --git a/lib/public/files.php b/lib/public/files.php index 90889c59ad8..75e1d2fbbc1 100644 --- a/lib/public/files.php +++ b/lib/public/files.php @@ -38,9 +38,10 @@ class Files { * @brief Recusive deletion of folders * @param string $dir path to the folder * + * @return bool */ static function rmdirr( $dir ) { - \OC_Helper::rmdirr( $dir ); + return \OC_Helper::rmdirr( $dir ); } /** diff --git a/lib/public/response.php b/lib/public/response.php index 95e67a85720..de0c3f25347 100644 --- a/lib/public/response.php +++ b/lib/public/response.php @@ -31,27 +31,27 @@ namespace OCP; /** - * This class provides convinient functions to send the correct http response headers + * This class provides convenient functions to send the correct http response headers */ class Response { /** * @brief Enable response caching by sending correct HTTP headers - * @param $cache_time time to cache the response + * @param int $cache_time time to cache the response * >0 cache time in seconds * 0 and <0 enable default browser caching * null cache indefinitly */ static public function enableCaching( $cache_time = null ) { - return(\OC_Response::enableCaching( $cache_time )); + \OC_Response::enableCaching( $cache_time ); } /** * Checks and set Last-Modified header, when the request matches sends a * 'not modified' response - * @param $lastModified time when the reponse was last modified + * @param string $lastModified time when the reponse was last modified */ static public function setLastModifiedHeader( $lastModified ) { - return(\OC_Response::setLastModifiedHeader( $lastModified )); + \OC_Response::setLastModifiedHeader( $lastModified ); } /** @@ -59,41 +59,41 @@ class Response { * @see enableCaching with cache_time = 0 */ static public function disableCaching() { - return(\OC_Response::disableCaching()); + \OC_Response::disableCaching(); } /** * Checks and set ETag header, when the request matches sends a * 'not modified' response - * @param $etag token to use for modification check + * @param string $etag token to use for modification check */ static public function setETagHeader( $etag ) { - return(\OC_Response::setETagHeader( $etag )); + \OC_Response::setETagHeader( $etag ); } /** * @brief Send file as response, checking and setting caching headers - * @param $filepath of file to send + * @param string $filepath of file to send */ static public function sendFile( $filepath ) { - return(\OC_Response::sendFile( $filepath )); + \OC_Response::sendFile( $filepath ); } /** - * @brief Set reponse expire time - * @param $expires date-time when the response expires + * @brief Set response expire time + * @param string|\DateTime $expires date-time when the response expires * string for DateInterval from now * DateTime object when to expire response */ static public function setExpiresHeader( $expires ) { - return(\OC_Response::setExpiresHeader( $expires )); + \OC_Response::setExpiresHeader( $expires ); } /** * @brief Send redirect response - * @param $location to redirect to + * @param string $location to redirect to */ static public function redirect( $location ) { - return(\OC_Response::redirect( $location )); + \OC_Response::redirect( $location ); } -}
\ No newline at end of file +} diff --git a/lib/public/share.php b/lib/public/share.php index d736871d244..cda583aa073 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -37,7 +37,8 @@ class Share { const SHARE_TYPE_REMOTE = 6; /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask - * Construct permissions for share() and setPermissions with Or (|) e.g. Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE + * Construct permissions for share() and setPermissions with Or (|) + * e.g. Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE * Check if permission is granted with And (&) e.g. Check if delete is granted: if ($permissions & PERMISSION_DELETE) * Remove permissions with And (&) and Not (~) e.g. Remove the update permission: $permissions &= ~PERMISSION_UPDATE * Apps are required to handle permissions on their own, this class only stores and manages the permissions of shares @@ -66,14 +67,17 @@ class Share { public static function registerBackend($itemType, $class, $collectionOf = null, $supportedFileExtensions = null) { if (self::isEnabled()) { if (!isset(self::$backendTypes[$itemType])) { - self::$backendTypes[$itemType] = array('class' => $class, 'collectionOf' => $collectionOf, 'supportedFileExtensions' => $supportedFileExtensions); + self::$backendTypes[$itemType] = array('class' => $class, + 'collectionOf' => $collectionOf, + 'supportedFileExtensions' => $supportedFileExtensions); if(count(self::$backendTypes) === 1) { \OC_Util::addScript('core', 'share'); \OC_Util::addStyle('core', 'share'); } return true; } - \OC_Log::write('OCP\Share', 'Sharing backend '.$class.' not registered, '.self::$backendTypes[$itemType]['class'].' is already registered for '.$itemType, \OC_Log::WARN); + \OC_Log::write('OCP\Share', 'Sharing backend '.$class.' not registered, ' + .self::$backendTypes[$itemType]['class'].' is already registered for '.$itemType, \OC_Log::WARN); } return false; } @@ -99,8 +103,20 @@ class Share { * @param int Number of items to return (optional) Returns all by default * @return Return depends on format */ - public static function getItemsSharedWith($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { - return self::getItems($itemType, null, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, $limit, $includeCollections); + public static function getItemsSharedWith($itemType, + $format = self::FORMAT_NONE, + $parameters = null, + $limit = -1, + $includeCollections = false) { + return self::getItems($itemType, + null, + self::$shareTypeUserAndGroups, + \OC_User::getUser(), + null, + $format, + $parameters, + $limit, + $includeCollections); } /** @@ -110,8 +126,20 @@ class Share { * @param int Format (optional) Format type must be defined by the backend * @return Return depends on format */ - public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemTarget, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, 1, $includeCollections); + public static function getItemSharedWith($itemType, + $itemTarget, + $format = self::FORMAT_NONE, + $parameters = null, + $includeCollections = false) { + return self::getItems($itemType, + $itemTarget, + self::$shareTypeUserAndGroups, + \OC_User::getUser(), + null, + $format, + $parameters, + 1, + $includeCollections); } /** @@ -121,8 +149,20 @@ class Share { * @param int Format (optional) Format type must be defined by the backend * @return Return depends on format */ - public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, 1, $includeCollections, true); + public static function getItemSharedWithBySource($itemType, + $itemSource, + $format = self::FORMAT_NONE, + $parameters = null, + $includeCollections = false) { + return self::getItems($itemType, + $itemSource, + self::$shareTypeUserAndGroups, + \OC_User::getUser(), + null, + $format, + $parameters, + 1, + $includeCollections, true); } /** @@ -133,7 +173,14 @@ class Share { * @return Item */ public static function getItemSharedWithByLink($itemType, $itemSource, $uidOwner) { - return self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1); + return self::getItems($itemType, + $itemSource, + self::SHARE_TYPE_LINK, + null, + $uidOwner, + self::FORMAT_NONE, + null, + 1); } /** @@ -142,7 +189,7 @@ class Share { * @return Item */ public static function getShareByToken($token) { - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `token` = ?',1); + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `token` = ?', 1); $result = $query->execute(array($token)); if (\OC_DB::isError($result)) { \OC_Log::write('OCP\Share', \OC_DB::getErrorMessage($result) . ', token=' . $token, \OC_Log::ERROR); @@ -157,8 +204,20 @@ class Share { * @param int Number of items to return (optional) Returns all by default * @return Return depends on format */ - public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { - return self::getItems($itemType, null, null, null, \OC_User::getUser(), $format, $parameters, $limit, $includeCollections); + public static function getItemsShared($itemType, + $format = self::FORMAT_NONE, + $parameters = null, + $limit = -1, + $includeCollections = false) { + return self::getItems($itemType, + null, + null, + null, + \OC_User::getUser(), + $format, + $parameters, + $limit, + $includeCollections); } /** @@ -168,8 +227,20 @@ class Share { * @param int Format (optional) Format type must be defined by the backend * @return Return depends on format */ - public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, $parameters, -1, $includeCollections); + public static function getItemShared($itemType, + $itemSource, + $format = self::FORMAT_NONE, + $parameters = null, + $includeCollections = false) { + return self::getItems($itemType, + $itemSource, + null, + null, + \OC_User::getUser(), + $format, + $parameters, + -1, + $includeCollections); } /** @@ -199,14 +270,26 @@ class Share { if ($sharingPolicy == 'groups_only') { $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith)); if (empty($inGroup)) { - $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of'; + $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is not a member' + .' of any groups that '.$uidOwner.' is a member of'; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } } // Check if the item source is already shared with the user, either from the same owner or a different user - if ($checkExists = self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { - // Only allow the same share to occur again if it is the same owner and is not a user share, this use case is for increasing permissions for a specific user + $checkExists = self::getItems($itemType, + $itemSource, + self::$shareTypeUserAndGroups, + $shareWith, + null, + self::FORMAT_NONE, + null, + 1, + true, + true); + if ($checkExists) { + // Only allow the same share to occur again if it is the same owner and is not a user share, + // this use case is for increasing permissions for a specific user if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { $message = 'Sharing '.$itemSource.' failed, because this item is already shared with '.$shareWith; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); @@ -220,14 +303,26 @@ class Share { throw new \Exception($message); } if ($sharingPolicy == 'groups_only' && !\OC_Group::inGroup($uidOwner, $shareWith)) { - $message = 'Sharing '.$itemSource.' failed, because '.$uidOwner.' is not a member of the group '.$shareWith; + $message = 'Sharing '.$itemSource.' failed, because '.$uidOwner + .' is not a member of the group '.$shareWith; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } // Check if the item source is already shared with the group, either from the same owner or a different user // The check for each user in the group is done inside the put() function - if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_GROUP, $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { - // Only allow the same share to occur again if it is the same owner and is not a group share, this use case is for increasing permissions for a specific user + $checkExists = self::getItems($itemType, + $itemSource, + self::SHARE_TYPE_GROUP, + $shareWith, + null, + self::FORMAT_NONE, + null, + 1, + true, + true); + if ($checkExists) { + // Only allow the same share to occur again if it is the same owner and is not a group share, + // this use case is for increasing permissions for a specific user if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { $message = 'Sharing '.$itemSource.' failed, because this item is already shared with '.$shareWith; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); @@ -242,27 +337,42 @@ class Share { } else if ($shareType === self::SHARE_TYPE_LINK) { if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') { // when updating a link share - if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1)) { + $checkExists = self::getItems($itemType, + $itemSource, + self::SHARE_TYPE_LINK, + null, + $uidOwner, + self::FORMAT_NONE, + null, + 1); + if ($checkExists) { // remember old token $oldToken = $checkExists['token']; //delete the old share self::delete($checkExists['id']); } - + // Generate hash of password - same method as user passwords if (isset($shareWith)) { $forcePortable = (CRYPT_BLOWFISH != 1); $hasher = new \PasswordHash(8, $forcePortable); $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', '')); } - + // Generate token if (isset($oldToken)) { $token = $oldToken; } else { $token = \OC_Util::generate_random_bytes(self::TOKEN_LENGTH); } - $result = self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, null, $token); + $result = self::put($itemType, + $itemSource, + $shareType, + $shareWith, + $uidOwner, + $permissions, + null, + $token); if ($result) { return $token; } else { @@ -305,19 +415,26 @@ class Share { if ($parentFolder && $files = \OC_Files::getDirectoryContent($itemSource)) { for ($i = 0; $i < count($files); $i++) { $name = substr($files[$i]['name'], strpos($files[$i]['name'], $itemSource) - strlen($itemSource)); - if ($files[$i]['mimetype'] == 'httpd/unix-directory' && $children = \OC_Files::getDirectoryContent($name, '/')) { + if ($files[$i]['mimetype'] == 'httpd/unix-directory' + && $children = \OC_Files::getDirectoryContent($name, '/') + ) { // Continue scanning into child folders array_push($files, $children); } else { // Check file extension for an equivalent item type to convert to $extension = strtolower(substr($itemSource, strrpos($itemSource, '.') + 1)); foreach (self::$backends as $type => $backend) { - if (isset($backend->dependsOn) && $backend->dependsOn == 'file' && isset($backend->supportedFileExtensions) && in_array($extension, $backend->supportedFileExtensions)) { + if (isset($backend->dependsOn) + && $backend->dependsOn == 'file' + && isset($backend->supportedFileExtensions) + && in_array($extension, $backend->supportedFileExtensions) + ) { $itemType = $type; break; } } - // Pass on to put() to check if this item should be converted, the item won't be inserted into the database unless it can be converted + // Pass on to put() to check if this item should be converted, + // the item won't be inserted into the database unless it can be converted self::put($itemType, $name, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder); } } @@ -339,7 +456,15 @@ class Share { * @return Returns true on success or false on failure */ public static function unshare($itemType, $itemSource, $shareType, $shareWith) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1)) { + $item = self::getItems($itemType, + $itemSource, + $shareType, + $shareWith, + \OC_User::getUser(), + self::FORMAT_NONE, + null, + 1); + if ($item) { self::delete($item['id']); return true; } @@ -353,7 +478,8 @@ class Share { * @return Returns true on success or false on failure */ public static function unshareAll($itemType, $itemSource) { - if ($shares = self::getItemShared($itemType, $itemSource)) { + $shares = self::getItemShared($itemType, $itemSource); + if ($shares) { foreach ($shares as $share) { self::delete($share['id']); } @@ -372,11 +498,27 @@ class Share { * */ public static function unshareFromSelf($itemType, $itemTarget) { - if ($item = self::getItemSharedWith($itemType, $itemTarget)) { + $item = self::getItemSharedWith($itemType, $itemTarget); + if ($item) { if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { - // Insert an extra row for the group share and set permission to 0 to prevent it from showing up for the user - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); - $query->execute(array($item['item_type'], $item['item_source'], $item['item_target'], $item['id'], self::$shareTypeGroupUserUnique, \OC_User::getUser(), $item['uid_owner'], 0, $item['stime'], $item['file_source'], $item['file_target'])); + // Insert an extra row for the group share and set permission to 0 + // to prevent it from showing up for the user + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (' + .'`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, ' + .'`uid_owner`, `permissions`, `stime`, `file_source`, `file_target`' + .') VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + $query->execute(array( + $item['item_type'], + $item['item_source'], + $item['item_target'], + $item['id'], + self::$shareTypeGroupUserUnique, + \OC_User::getUser(), + $item['uid_owner'], + 0, + $item['stime'], + $item['file_source'], + $item['file_target'])); \OC_DB::insertid('*PREFIX*share'); // Delete all reshares by this user of the group share self::delete($item['id'], true, \OC_User::getUser()); @@ -403,13 +545,24 @@ class Share { * @return Returns true on success or false on failure */ public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { - // Check if this item is a reshare and verify that the permissions granted don't exceed the parent shared item + $item = self::getItems($itemType, + $itemSource, + $shareType, + $shareWith, + \OC_User::getUser(), + self::FORMAT_NONE, + null, + 1, + false); + if ($item) { + // Check if this item is a reshare and + // verify that the permissions granted don't exceed the parent shared item if (isset($item['parent'])) { $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1); $result = $query->execute(array($item['parent']))->fetchRow(); if (~(int)$result['permissions'] & $permissions) { - $message = 'Setting permissions for '.$itemSource.' failed, because the permissions exceed permissions granted to '.\OC_User::getUser(); + $message = 'Setting permissions for '.$itemSource.' failed, ' + .'because the permissions exceed permissions granted to '.\OC_User::getUser(); \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } @@ -426,9 +579,12 @@ class Share { $parents = array($item['id']); while (!empty($parents)) { $parents = "'".implode("','", $parents)."'"; - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); + $query = \OC_DB::prepare('SELECT `id`, `permissions`' + .' FROM `*PREFIX*share`' + .' WHERE `parent` IN ('.$parents.')'); $result = $query->execute(); - // Reset parents array, only go through loop again if items are found that need permissions removed + // Reset parents array, + // only go through loop again if items are found that need permissions removed $parents = array(); while ($item = $result->fetchRow()) { // Check if permissions need to be removed @@ -442,7 +598,9 @@ class Share { // Remove the permissions for all reshares of this item if (!empty($ids)) { $ids = "'".implode("','", $ids)."'"; - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = `permissions` & ? WHERE `id` IN ('.$ids.')'); + $query = \OC_DB::prepare('UPDATE `*PREFIX*share`' + .' SET `permissions` = `permissions` & ?' + .' WHERE `id` IN ('.$ids.')'); $query->execute(array($permissions)); } } @@ -455,7 +613,16 @@ class Share { } public static function setExpirationDate($itemType, $itemSource, $date) { - if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, -1, false)) { + $items = self::getItems($itemType, + $itemSource, + null, + null, + \OC_User::getUser(), + self::FORMAT_NONE, + null, + -1, + false); + if ($items) { if (!empty($items)) { if ($date == '') { $date = null; @@ -517,7 +684,8 @@ class Share { if (!self::getBackend($itemType) instanceof Share_Backend_Collection) { unset($collectionTypes[0]); } - // Return array if collections were found or the item type is a collection itself - collections can be inside collections + // Return array if collections were found or the item type is a collection itself + // - collections can be inside collections if (count($collectionTypes) > 0) { return $collectionTypes; } @@ -528,7 +696,8 @@ class Share { * @brief Get shared items from the database * @param string Item type * @param string Item source or target (optional) - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, + * $shareTypeUserAndGroups, or $shareTypeGroupUserUnique * @param string User or group the item is being shared with * @param string User that is the owner of shared items (optional) * @param int Format to convert items to with formatItems() @@ -540,7 +709,16 @@ class Share { * See public functions getItem(s)... for parameter usage * */ - private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false, $itemShareWithBySource = false) { + private static function getItems($itemType, + $item = null, + $shareType = null, + $shareWith = null, + $uidOwner = null, + $format = self::FORMAT_NONE, + $parameters = null, + $limit = -1, + $includeCollections = false, + $itemShareWithBySource = false) { if (!self::isEnabled()) { if ($limit == 1 || (isset($uidOwner) && isset($item))) { return false; @@ -549,7 +727,8 @@ class Share { } } $backend = self::getBackend($itemType); - // Get filesystem root to add it to the file target and remove from the file source, match file_source with the file cache + // Get filesystem root to add it to the file target and remove from the file source, + // match file_source with the file cache if ($itemType == 'file' || $itemType == 'folder') { $root = \OC_Filesystem::getRoot(); $where = 'INNER JOIN `*PREFIX*fscache` ON `file_source` = `*PREFIX*fscache`.`id`'; @@ -569,7 +748,7 @@ class Share { $itemTypes = $collectionTypes; } $placeholders = join(',', array_fill(0, count($itemTypes), '?')); - $where .= ' WHERE `item_type` IN ('.$placeholders.'))'; + $where = ' WHERE `item_type` IN ('.$placeholders.'))'; $queryArgs = $itemTypes; } else { $where = ' WHERE `item_type` = ?'; @@ -652,7 +831,8 @@ class Share { } if ($limit != -1 && !$includeCollections) { if ($shareType == self::$shareTypeUserAndGroups) { - // Make sure the unique user target is returned if it exists, unique targets should follow the group share in the database + // Make sure the unique user target is returned if it exists, + // unique targets should follow the group share in the database // If the limit is not 1, the filtering can be done later $where .= ' ORDER BY `*PREFIX*share`.`id` DESC'; } @@ -668,23 +848,34 @@ class Share { // TODO Optimize selects if ($format == self::FORMAT_STATUSES) { if ($itemType == 'file' || $itemType == 'folder') { - $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `file_source`, `path`, `expiration`'; + $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, ' + .'`share_type`, `file_source`, `path`, `expiration`'; } else { $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `expiration`'; } } else { if (isset($uidOwner)) { if ($itemType == 'file' || $itemType == 'folder') { - $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`, `expiration`, `token`'; + $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, ' + .'`share_with`, `file_source`, `path`, `permissions`, `stime`, `expiration`, `token`'; } else { - $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`, `stime`, `file_source`, `expiration`, `token`'; + $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, ' + .'`permissions`, `stime`, `file_source`, `expiration`, `token`'; } } else { if ($fileDependent) { - if (($itemType == 'file' || $itemType == 'folder') && $format == \OC_Share_Backend_File::FORMAT_FILE_APP || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT) { - $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `uid_owner`, `share_type`, `share_with`, `file_source`, `path`, `file_target`, `permissions`, `expiration`, `name`, `ctime`, `mtime`, `mimetype`, `size`, `encrypted`, `versioned`, `writable`'; + if (($itemType == 'file' || $itemType == 'folder') + && $format == \OC_Share_Backend_File::FORMAT_FILE_APP + || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT + ) { + $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `uid_owner`, ' + .'`share_type`, `share_with`, `file_source`, `path`, `file_target`, `permissions`, ' + .'`expiration`, `name`, `ctime`, `mtime`, `mimetype`, `size`, `encrypted`, ' + .'`versioned`, `writable`'; } else { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`'; + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, ' + .'`*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, `file_source`, ' + .'`path`, `file_target`, `permissions`, `stime`, `expiration`, `token`'; } } else { $select = '*'; @@ -695,7 +886,9 @@ class Share { $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit); $result = $query->execute($queryArgs); if (\OC_DB::isError($result)) { - \OC_Log::write('OCP\Share', \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, \OC_Log::ERROR); + \OC_Log::write('OCP\Share', \OC_DB::getErrorMessage($result) + . ', select=' . $select + . ' where=' . $where, \OC_Log::ERROR); } $items = array(); $targets = array(); @@ -712,7 +905,8 @@ class Share { } else if (!isset($uidOwner)) { // Check if the same target already exists if (isset($targets[$row[$column]])) { - // Check if the same owner shared with the user twice through a group and user share - this is allowed + // Check if the same owner shared with the user twice through a group and user share + // - this is allowed $id = $targets[$row[$column]]; if ($items[$id]['uid_owner'] == $row['uid_owner']) { // Switch to group share type to ensure resharing conditions aren't bypassed @@ -720,8 +914,11 @@ class Share { $items[$id]['share_type'] = self::SHARE_TYPE_GROUP; $items[$id]['share_with'] = $row['share_with']; } - // Switch ids if sharing permission is granted on only one share to ensure correct parent is used if resharing - if (~(int)$items[$id]['permissions'] & PERMISSION_SHARE && (int)$row['permissions'] & PERMISSION_SHARE) { + // Switch ids if sharing permission is granted on only one share + // to ensure correct parent is used if resharing + if (~(int)$items[$id]['permissions'] & PERMISSION_SHARE + && (int)$row['permissions'] & PERMISSION_SHARE + ) { $items[$row['id']] = $items[$id]; unset($items[$id]); $id = $row['id']; @@ -764,7 +961,9 @@ class Share { } // Check if this is a collection of the requested item type if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) { - if (($collectionBackend = self::getBackend($row['item_type'])) && $collectionBackend instanceof Share_Backend_Collection) { + if (($collectionBackend = self::getBackend($row['item_type'])) + && $collectionBackend instanceof Share_Backend_Collection + ) { // Collections can be inside collections, check if the item is a collection if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) { $collectionItems[] = $row; @@ -856,10 +1055,18 @@ class Share { * @param bool|array Parent folder target (optional) * @return bool Returns true on success or false on failure */ - private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder = null, $token = null) { + private static function put($itemType, + $itemSource, + $shareType, + $shareWith, + $uidOwner, + $permissions, + $parentFolder = null, + $token = null) { $backend = self::getBackend($itemType); // Check if this is a reshare - if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { + $checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true); + if ($checkReshare) { // Check if attempting to share back to owner if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) { $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is the original sharer'; @@ -869,7 +1076,8 @@ class Share { // Check if share permissions is granted if ((int)$checkReshare['permissions'] & PERMISSION_SHARE) { if (~(int)$checkReshare['permissions'] & $permissions) { - $message = 'Sharing '.$itemSource.' failed, because the permissions exceed permissions granted to '.$uidOwner; + $message = 'Sharing '.$itemSource.' failed, ' + .'because the permissions exceed permissions granted to '.$uidOwner; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } else { @@ -891,7 +1099,8 @@ class Share { $suggestedItemTarget = null; $suggestedFileTarget = null; if (!$backend->isValidSource($itemSource, $uidOwner)) { - $message = 'Sharing '.$itemSource.' failed, because the sharing backend for '.$itemType.' could not find its source'; + $message = 'Sharing '.$itemSource.' failed, ' + .'because the sharing backend for '.$itemType.' could not find its source'; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } @@ -913,14 +1122,27 @@ class Share { $fileSource = null; } } - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`, `token`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`,' + .' `share_type`, `share_with`, `uid_owner`, `permissions`,' + .' `stime`, `file_source`, `file_target`, `token`' + .') VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); // Share with a group if ($shareType == self::SHARE_TYPE_GROUP) { - $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], $uidOwner, $suggestedItemTarget); + $groupItemTarget = self::generateTarget($itemType, + $itemSource, + $shareType, + $shareWith['group'], + $uidOwner, + $suggestedItemTarget); if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); + $groupFileTarget = self::generateTarget('file', + $filePath, + $shareType, + $shareWith['group'], + $uidOwner, + $suggestedFileTarget); // Set group default file target for future use $parentFolders[0]['folder'] = $groupFileTarget; } else { @@ -929,21 +1151,50 @@ class Share { $parent = $parentFolder[0]['id']; } } else { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); + $groupFileTarget = self::generateTarget('file', + $filePath, + $shareType, + $shareWith['group'], + $uidOwner, + $suggestedFileTarget); } } else { $groupFileTarget = null; } - $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget, $token)); + $query->execute(array( + $itemType, + $itemSource, + $groupItemTarget, + $parent, + $shareType, + $shareWith['group'], + $uidOwner, + $permissions, + time(), + $fileSource, + $groupFileTarget, + $token)); // Save this id, any extra rows for this group share will need to reference it $parent = \OC_DB::insertid('*PREFIX*share'); // Loop through all users of this group in case we need to add an extra row foreach ($shareWith['users'] as $uid) { - $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedItemTarget, $parent); + $itemTarget = self::generateTarget($itemType, + $itemSource, + self::SHARE_TYPE_USER, + $uid, + $uidOwner, + $suggestedItemTarget, + $parent); if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); + $fileTarget = self::generateTarget('file', + $filePath, + self::SHARE_TYPE_USER, + $uid, + $uidOwner, + $suggestedFileTarget, + $parent); if ($fileTarget != $groupFileTarget) { $parentFolders[$uid]['folder'] = $fileTarget; } @@ -952,7 +1203,13 @@ class Share { $parent = $parentFolder[$uid]['id']; } } else { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); + $fileTarget = self::generateTarget('file', + $filePath, + self::SHARE_TYPE_USER, + $uid, + $uidOwner, + $suggestedFileTarget, + $parent); } } else { $fileTarget = null; @@ -973,7 +1230,19 @@ class Share { )); // Insert an extra row for the group share if the item or file target is unique for this user if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), $fileSource, $fileTarget, $token)); + $query->execute(array( + $itemType, + $itemSource, + $itemTarget, + $parent, + self::$shareTypeGroupUserUnique, + $uid, + $uidOwner, + $permissions, + time(), + $fileSource, + $fileTarget, + $token)); $id = \OC_DB::insertid('*PREFIX*share'); } } @@ -982,23 +1251,50 @@ class Share { return $parentFolders; } } else { - $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedItemTarget); + $itemTarget = self::generateTarget($itemType, + $itemSource, + $shareType, + $shareWith, + $uidOwner, + $suggestedItemTarget); if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); + $fileTarget = self::generateTarget('file', + $filePath, + $shareType, + $shareWith, + $uidOwner, + $suggestedFileTarget); $parentFolders['folder'] = $fileTarget; } else { $fileTarget = $parentFolder['folder'].$itemSource; $parent = $parentFolder['id']; } } else { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); + $fileTarget = self::generateTarget('file', + $filePath, + $shareType, + $shareWith, + $uidOwner, + $suggestedFileTarget); } } else { $fileTarget = null; } - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, $permissions, time(), $fileSource, $fileTarget, $token)); + $query->execute(array( + $itemType, + $itemSource, + $itemTarget, + $parent, + $shareType, + $shareWith, + $uidOwner, + $permissions, + time(), + $fileSource, + $fileTarget, + $token)); $id = \OC_DB::insertid('*PREFIX*share'); \OC_Hook::emit('OCP\Share', 'post_shared', array( 'itemType' => $itemType, @@ -1033,7 +1329,13 @@ class Share { * @param int The id of the parent group share (optional) * @return string Item target */ - private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedTarget = null, $groupParent = null) { + private static function generateTarget($itemType, + $itemSource, + $shareType, + $shareWith, + $uidOwner, + $suggestedTarget = null, + $groupParent = null) { $backend = self::getBackend($itemType); if ($shareType == self::SHARE_TYPE_LINK) { if (isset($suggestedTarget)) { @@ -1099,18 +1401,43 @@ class Share { // Find similar targets to improve backend's chances to generate a unqiue target if ($userAndGroups) { if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` IN (\'file\', \'folder\') AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'`' + .' FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with`' + .' IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array( + self::SHARE_TYPE_USER, + self::SHARE_TYPE_GROUP, + self::$shareTypeGroupUserUnique)); } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` = ? AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'`' + .' FROM `*PREFIX*share`' + .' WHERE `item_type` = ?' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with`' + .' IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array( + $itemType, + self::SHARE_TYPE_USER, + self::SHARE_TYPE_GROUP, + self::$shareTypeGroupUserUnique)); } } else { if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` IN (\'file\', \'folder\') AND `share_type` = ? AND `share_with` = ?'); + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'`' + .' FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` = ?' + .' AND `share_with` = ?'); $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'`' + .' FROM `*PREFIX*share`' + .' WHERE `item_type` = ?' + .' AND `share_type` = ?' + .' AND `share_with` = ?'); $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); } } @@ -1138,21 +1465,43 @@ class Share { $parents = array($parent); while (!empty($parents)) { $parents = "'".implode("','", $parents)."'"; - // Check the owner on the first search of reshares, useful for finding and deleting the reshares by a single user of a group share + // Check the owner on the first search of reshares, + // useful for finding and deleting the reshares by a single user of a group share if (count($ids) == 1 && isset($uidOwner)) { - $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); + $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent`' + .' FROM `*PREFIX*share`' + .' WHERE `parent` IN ('.$parents.')' + .' AND `uid_owner` = ?'); $result = $query->execute(array($uidOwner)); } else { - $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); + $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner`' + .' FROM `*PREFIX*share`' + .' WHERE `parent` IN ('.$parents.')'); $result = $query->execute(); } // Reset parents array, only go through loop again if items are found $parents = array(); while ($item = $result->fetchRow()) { - // Search for a duplicate parent share, this occurs when an item is shared to the same user through a group and user or the same item is shared by different users + // Search for a duplicate parent share, + // this occurs when an item is shared to the same user through a group and user + // or the same item is shared by different users $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share` WHERE `item_type` = ? AND `item_target` = ? AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\') AND `uid_owner` != ? AND `id` != ?'); - $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, $item['uid_owner'], $item['parent']))->fetchRow(); + $query = \OC_DB::prepare('SELECT `id`, `permissions`' + .' FROM `*PREFIX*share`' + .' WHERE `item_type` = ?' + .' AND `item_target` = ?' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')' + .' AND `uid_owner` != ?' + .' AND `id` != ?'); + $duplicateParent = $query->execute(array( + $item['item_type'], + $item['item_target'], + self::SHARE_TYPE_USER, + self::SHARE_TYPE_GROUP, + self::$shareTypeGroupUserUnique, + $item['uid_owner'], + $item['parent']))->fetchRow(); if ($duplicateParent) { // Change the parent to the other item id if share permission is granted if ($duplicateParent['permissions'] & PERMISSION_SHARE) { @@ -1181,7 +1530,10 @@ class Share { public static function post_deleteUser($arguments) { // Delete any items shared with the deleted user - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`' + .' WHERE `share_with` = ?' + .' AND `share_type` = ?' + .' OR `share_type` = ?'); $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); // Delete any items the deleted user shared $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); @@ -1195,21 +1547,46 @@ class Share { // Find the group shares and check if the user needs a unique target $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`,' + .' `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' + .' `file_target`)' + .' VALUES (?,?,?,?,?,?,?,?,?,?,?)'); while ($item = $result->fetchRow()) { if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { $itemTarget = null; } else { - $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); + $itemTarget = self::generateTarget($item['item_type'], + $item['item_source'], + self::SHARE_TYPE_USER, + $arguments['uid'], + $item['uid_owner'], + $item['item_target'], + $item['id']); } if (isset($item['file_source'])) { - $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); + $fileTarget = self::generateTarget($item['item_type'], + $item['item_source'], + self::SHARE_TYPE_USER, + $arguments['uid'], + $item['uid_owner'], + $item['file_target'], + $item['id']); } else { $fileTarget = null; } // Insert an extra row for the group share if the item or file target is unique for this user if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { - $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], $item['stime'], $item['file_source'], $fileTarget)); + $query->execute(array($item['item_type'], + $item['item_source'], + $itemTarget, + $item['id'], + self::$shareTypeGroupUserUnique, + $arguments['uid'], + $item['uid_owner'], + $item['permissions'], + $item['stime'], + $item['file_source'], + $fileTarget)); \OC_DB::insertid('*PREFIX*share'); } } @@ -1217,8 +1594,15 @@ class Share { public static function post_removeFromGroup($arguments) { // TODO Don't call if user deleted? - $query = \OC_DB::prepare('SELECT `id`, `share_type` FROM `*PREFIX*share` WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'); - $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'], self::$shareTypeGroupUserUnique, $arguments['uid'])); + $query = \OC_DB::prepare('SELECT `id`, `share_type`' + .' FROM `*PREFIX*share`' + .' WHERE (`share_type` = ? AND `share_with` = ?)' + .' OR (`share_type` = ? AND `share_with` = ?)'); + $result = $query->execute(array( + self::SHARE_TYPE_GROUP, + $arguments['gid'], + self::$shareTypeGroupUserUnique, + $arguments['uid'])); while ($item = $result->fetchRow()) { if ($item['share_type'] == self::SHARE_TYPE_GROUP) { // Delete all reshares by this user of the group share @@ -1275,10 +1659,13 @@ interface Share_Backend { * @param int Format * @return ? * - * The items array is a 3-dimensional array with the item_source as the first key and the share id as the second key to an array with the share info. + * The items array is a 3-dimensional array with the item_source as the first key + * and the share id as the second key to an array with the share info. * The key/value pairs included in the share info depend on the function originally called: - * If called by getItem(s)Shared: id, item_type, item, item_source, share_type, share_with, permissions, stime, file_source - * If called by getItem(s)SharedWith: id, item_type, item, item_source, item_target, share_type, share_with, permissions, stime, file_source, file_target + * If called by getItem(s)Shared: id, item_type, item, item_source, + * share_type, share_with, permissions, stime, file_source + * If called by getItem(s)SharedWith: id, item_type, item, item_source, + * item_target, share_type, share_with, permissions, stime, file_source, file_target * This function allows the backend to control the output of shared items with custom formats. * It is only called through calls to the public getItem(s)Shared(With) functions. */ @@ -1311,7 +1698,8 @@ interface Share_Backend_Collection extends Share_Backend { /** * @brief Get the sources of the children of the item * @param string Item source - * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable + * @return array Returns an array of children each inside an array with the keys: + * source, target, and file_path if applicable */ public function getChildren($itemSource); diff --git a/lib/public/user.php b/lib/public/user.php index 9e50115ab70..204d8e4c0f1 100644 --- a/lib/public/user.php +++ b/lib/public/user.php @@ -65,7 +65,7 @@ class User { /** * @brief check if a user exists * @param string $uid the username - * @param string $excludingBackend (default none) + * @param string $excludingBackend (default none) * @return boolean */ public static function userExists( $uid, $excludingBackend = null ) { @@ -73,12 +73,10 @@ class User { } /** * @brief Loggs the user out including all the session data - * @returns true - * * Logout, destroys session */ public static function logout() { - return \OC_USER::logout(); + \OC_USER::logout(); } /** diff --git a/lib/public/util.php b/lib/public/util.php index af782b01483..8197482c0dd 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -68,7 +68,7 @@ class Util { * @brief write a message in the log * @param string $app * @param string $message - * @param int level + * @param int $level */ public static function writeLog( $app, $message, $level ) { // call the internal log class @@ -77,7 +77,7 @@ class Util { /** * @brief add a css file - * @param url $url + * @param string $url */ public static function addStyle( $application, $file = null ) { \OC_Util::addStyle( $application, $file ); @@ -85,8 +85,8 @@ class Util { /** * @brief add a javascript file - * @param appid $application - * @param filename $file + * @param string $application + * @param string $file */ public static function addScript( $application, $file = null ) { \OC_Util::addScript( $application, $file ); @@ -94,7 +94,7 @@ class Util { /** * @brief Add a custom element to the header - * @param string tag tag name of the element + * @param string $tag tag name of the element * @param array $attributes array of attributes for the element * @param string $text the text content for the element */ @@ -104,8 +104,8 @@ class Util { /** * @brief formats a timestamp in the "right" way - * @param int timestamp $timestamp - * @param bool dateOnly option to ommit time from the result + * @param int $timestamp $timestamp + * @param bool $dateOnly option to omit time from the result */ public static function formatDate( $timestamp, $dateOnly=false) { return(\OC_Util::formatDate( $timestamp, $dateOnly )); @@ -113,11 +113,11 @@ class Util { /** * @brief Creates an absolute url - * @param $app app - * @param $file file - * @param $args array with param=>value, will be appended to the returned url + * @param string $app app + * @param string $file file + * @param array $args array with param=>value, will be appended to the returned url * The value of $args will be urlencoded - * @returns the url + * @returns string the url * * Returns a absolute url to the given app and file. */ @@ -127,8 +127,8 @@ class Util { /** * @brief Creates an absolute url for remote use - * @param $service id - * @returns the url + * @param string $service id + * @returns string the url * * Returns a absolute url to the given app and file. */ @@ -138,8 +138,8 @@ class Util { /** * @brief Creates an absolute url for public use - * @param $service id - * @returns the url + * @param string $service id + * @returns string the url * * Returns a absolute url to the given app and file. */ @@ -149,11 +149,11 @@ class Util { /** * @brief Creates an url - * @param $app app - * @param $file file - * @param $args array with param=>value, will be appended to the returned url + * @param string $app app + * @param string $file file + * @param array $args array with param=>value, will be appended to the returned url * The value of $args will be urlencoded - * @returns the url + * @returns string the url * * Returns a url to the given app and file. */ @@ -163,7 +163,7 @@ class Util { /** * @brief Returns the server host - * @returns the server host + * @returns string the server host * * Returns the server host, even if the website uses one or more * reverse proxies @@ -174,7 +174,7 @@ class Util { /** * @brief returns the server hostname - * @returns the server hostname + * @returns string the server hostname * * Returns the server host name without an eventual port number */ @@ -190,8 +190,8 @@ class Util { /** * @brief Returns the default email address - * @param $user_part the user part of the address - * @returns the default email address + * @param string $user_part the user part of the address + * @returns string the default email address * * Assembles a default email address (using the server hostname * and the given user part, and returns it @@ -203,14 +203,14 @@ class Util { $host_name = self::getServerHostName(); // handle localhost installations if ($host_name === 'localhost') { - $host_name = "example.com"; + $host_name = "example.com"; } return $user_part.'@'.$host_name; } /** * @brief Returns the server protocol - * @returns the server protocol + * @returns string the server protocol * * Returns the server protocol. It respects reverse proxy servers and load balancers */ @@ -220,9 +220,9 @@ class Util { /** * @brief Creates path to an image - * @param $app app - * @param $image image name - * @returns the url + * @param string $app app + * @param string $image image name + * @returns string the url * * Returns the path to the image. */ @@ -232,8 +232,8 @@ class Util { /** * @brief Make a human file size - * @param $bytes file size in bytes - * @returns a human readable file size + * @param int $bytes file size in bytes + * @returns string a human readable file size * * Makes 2048 to 2 kB. */ @@ -243,8 +243,8 @@ class Util { /** * @brief Make a computer file size - * @param $str file size in a fancy format - * @returns a file size in bytes + * @param string $str file size in a fancy format + * @returns int a file size in bytes * * Makes 2kB to 2048. * @@ -256,11 +256,11 @@ class Util { /** * @brief connects a function to a hook - * @param $signalclass class name of emitter - * @param $signalname name of signal - * @param $slotclass class name of slot - * @param $slotname name of slot - * @returns true/false + * @param string $signalclass class name of emitter + * @param string $signalname name of signal + * @param string $slotclass class name of slot + * @param string $slotname name of slot + * @returns bool * * This function makes it very easy to connect to use hooks. * @@ -272,10 +272,10 @@ class Util { /** * @brief emitts a signal - * @param $signalclass class name of emitter - * @param $signalname name of signal - * @param $params defautl: array() array with additional data - * @returns true if slots exists or false if not + * @param string $signalclass class name of emitter + * @param string $signalname name of signal + * @param string $params defautl: array() array with additional data + * @returns bool true if slots exists or false if not * * Emits a signal. To get data from the slot use references! * @@ -298,7 +298,7 @@ class Util { * Todo: Write howto */ public static function callCheck() { - return(\OC_Util::callCheck()); + \OC_Util::callCheck(); } /** @@ -306,7 +306,7 @@ class Util { * * This function is used to sanitize HTML and should be applied on any string or array of strings before displaying it on a web page. * - * @param string or array of strings + * @param string|array of strings * @return array with sanitized strings or a single sinitized string, depends on the input parameter. */ public static function sanitizeHTML( $value ) { @@ -316,9 +316,9 @@ class Util { /** * @brief Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is. * - * @param $input The array to work on - * @param $case Either MB_CASE_UPPER or MB_CASE_LOWER (default) - * @param $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @param array $input The array to work on + * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default) + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 * @return array * * @@ -330,11 +330,11 @@ class Util { /** * @brief replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement. * - * @param $input The input string. .Opposite to the PHP build-in function does not accept an array. - * @param $replacement The replacement string. - * @param $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string. - * @param $length Length of the part to be replaced - * @param $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @param string $input The input string. .Opposite to the PHP build-in function does not accept an array. + * @param string $replacement The replacement string. + * @param int $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string. + * @param int $length Length of the part to be replaced + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 * @return string * */ @@ -345,11 +345,11 @@ class Util { /** * @brief Replace all occurrences of the search string with the replacement string * - * @param $search The value being searched for, otherwise known as the needle. String. - * @param $replace The replacement string. - * @param $subject The string or array being searched and replaced on, otherwise known as the haystack. - * @param $encoding The encoding parameter is the character encoding. Defaults to UTF-8 - * @param $count If passed, this will be set to the number of replacements performed. + * @param string $search The value being searched for, otherwise known as the needle. String. + * @param string $replace The replacement string. + * @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 * */ @@ -359,10 +359,10 @@ class Util { /** * @brief performs a search in a nested array - * @param haystack the array to be searched - * @param needle the search string - * @param $index optional, only search this key name - * @return the key of the matching field, otherwise false + * @param array $haystack the array to be searched + * @param string $needle the search string + * @param int $index optional, only search this key name + * @return mixed the key of the matching field, otherwise false */ public static function recursiveArraySearch($haystack, $needle, $index = null) { return(\OC_Helper::recursiveArraySearch($haystack, $needle, $index)); diff --git a/lib/request.php b/lib/request.php index 99a77e1b59e..f2f15c21103 100755 --- a/lib/request.php +++ b/lib/request.php @@ -19,7 +19,7 @@ class OC_Request { return 'localhost'; } if(OC_Config::getValue('overwritehost', '')<>'') { - return OC_Config::getValue('overwritehost'); + return OC_Config::getValue('overwritehost'); } if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) { if (strpos($_SERVER['HTTP_X_FORWARDED_HOST'], ",") !== false) { @@ -44,7 +44,7 @@ class OC_Request { */ public static function serverProtocol() { if(OC_Config::getValue('overwriteprotocol', '')<>'') { - return OC_Config::getValue('overwriteprotocol'); + return OC_Config::getValue('overwriteprotocol'); } if (isset($_SERVER['HTTP_X_FORWARDED_PROTO'])) { $proto = strtolower($_SERVER['HTTP_X_FORWARDED_PROTO']); diff --git a/lib/router.php b/lib/router.php index 27e14c38abf..746b68c2c0c 100644 --- a/lib/router.php +++ b/lib/router.php @@ -49,6 +49,7 @@ class OC_Router { $files = $this->getRoutingFiles(); $files[] = 'settings/routes.php'; $files[] = 'core/routes.php'; + $files[] = 'ocs/routes.php'; $this->cache_key = OC_Cache::generateCacheKeyFromFiles($files); } return $this->cache_key; @@ -58,23 +59,6 @@ class OC_Router { * loads the api routes */ public function loadRoutes() { - - // TODO cache - $this->root = $this->getCollection('root'); - foreach(OC_APP::getEnabledApps() as $app){ - $file = OC_App::getAppPath($app).'/appinfo/routes.php'; - if(file_exists($file)){ - $this->useCollection($app); - require_once($file); - $collection = $this->getCollection($app); - $this->root->addCollection($collection, '/apps/'.$app); - } - } - // include ocs routes - require_once(OC::$SERVERROOT.'/ocs/routes.php'); - $collection = $this->getCollection('ocs'); - $this->root->addCollection($collection, '/ocs'); - foreach($this->getRoutingFiles() as $app => $file) { $this->useCollection($app); require_once $file; @@ -85,6 +69,10 @@ class OC_Router { require_once 'settings/routes.php'; require_once 'core/routes.php'; + // include ocs routes + require_once 'ocs/routes.php'; + $collection = $this->getCollection('ocs'); + $this->root->addCollection($collection, '/ocs'); } protected function getCollection($name) { diff --git a/lib/setup.php b/lib/setup.php index fdd10be6824..28882b6bede 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -1,5 +1,23 @@ <?php +class DatabaseSetupException extends Exception +{ + private $hint; + + public function __construct($message, $hint, $code = 0, Exception $previous = null) { + $this->hint = $hint; + parent::__construct($message, $code, $previous); + } + + public function __toString() { + return __CLASS__ . ": [{$this->code}]: {$this->message} ({$this->hint})\n"; + } + + public function getHint() { + return $this->hint; + } +} + class OC_Setup { public static function install($options) { $error = array(); @@ -19,9 +37,9 @@ class OC_Setup { if($dbtype=='mysql') $dbprettyname = 'MySQL'; else if($dbtype=='pgsql') - $dbprettyname = 'PostgreSQL'; + $dbprettyname = 'PostgreSQL'; else - $dbprettyname = 'Oracle'; + $dbprettyname = 'Oracle'; if(empty($options['dbuser'])) { @@ -69,10 +87,16 @@ class OC_Setup { try { self::setupMySQLDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $username); + } catch (DatabaseSetupException $e) { + $error[] = array( + 'error' => $e->getMessage(), + 'hint' => $e->getHint() + ); + return($error); } catch (Exception $e) { $error[] = array( - 'error' => 'MySQL username and/or password not valid', - 'hint' => 'You need to enter either an existing account or the administrator.' + 'error' => $e->getMessage(), + 'hint' => '' ); return($error); } @@ -153,7 +177,7 @@ class OC_Setup { if (isset($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache')) { self::createHtaccess(); } - + //and we are done OC_Config::setValue('installed', true); } @@ -166,7 +190,7 @@ class OC_Setup { //check if the database user has admin right $connection = @mysql_connect($dbhost, $dbuser, $dbpass); if(!$connection) { - throw new Exception('MySQL username and/or password not valid'); + throw new DatabaseSetupException('MySQL username and/or password not valid','You need to enter either an existing account or the administrator.'); } $oldUser=OC_Config::getValue('dbuser', false); @@ -229,8 +253,14 @@ class OC_Setup { // the anonymous user would take precedence when there is one. $query = "CREATE USER '$name'@'localhost' IDENTIFIED BY '$password'"; $result = mysql_query($query, $connection); + if (!$result) { + throw new DatabaseSetupException("MySQL user '" . "$name" . "'@'localhost' already exists","Delete this user from MySQL."); + } $query = "CREATE USER '$name'@'%' IDENTIFIED BY '$password'"; $result = mysql_query($query, $connection); + if (!$result) { + throw new DatabaseSetupException("MySQL user '" . "$name" . "'@'%' already exists","Delete this user from MySQL."); + } } private static function setupPostgreSQLDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $username) { diff --git a/lib/subadmin.php b/lib/subadmin.php index 9e83e6da430..8cda7240ac9 100644 --- a/lib/subadmin.php +++ b/lib/subadmin.php @@ -122,6 +122,11 @@ class OC_SubAdmin{ * @return bool */ public static function isSubAdmin($uid) { + // Check if the user is already an admin + if(OC_Group::inGroup($uid, 'admin' )) { + return true; + } + $stmt = OC_DB::prepare('SELECT COUNT(*) AS `count` FROM `*PREFIX*group_admin` WHERE `uid` = ?'); $result = $stmt->execute(array($uid)); $result = $result->fetchRow(); @@ -141,7 +146,7 @@ class OC_SubAdmin{ if(!self::isSubAdmin($subadmin)) { return false; } - if(OC_Group::inGroup($user, 'admin')) { + if(OC_User::isAdminUser($user)) { return false; } $accessiblegroups = self::getSubAdminsGroups($subadmin); diff --git a/lib/template.php b/lib/template.php index 04667d73a2c..f7124ebc09c 100644 --- a/lib/template.php +++ b/lib/template.php @@ -85,15 +85,25 @@ function human_file_size( $bytes ) { } function simple_file_size($bytes) { - $mbytes = round($bytes/(1024*1024), 1); - if($bytes == 0) { return '0'; } - else if($mbytes < 0.1) { return '< 0.1'; } - else if($mbytes > 1000) { return '> 1000'; } - else { return number_format($mbytes, 1); } + if ($bytes < 0) { + return '?'; + } + $mbytes = round($bytes / (1024 * 1024), 1); + if ($bytes == 0) { + return '0'; + } + if ($mbytes < 0.1) { + return '< 0.1'; + } + if ($mbytes > 1000) { + return '> 1000'; + } else { + return number_format($mbytes, 1); + } } function relative_modified_date($timestamp) { - $l=OC_L10N::get('lib'); + $l=OC_L10N::get('lib'); $timediff = time() - $timestamp; $diffminutes = round($timediff/60); $diffhours = round($diffminutes/60); diff --git a/lib/user.php b/lib/user.php index 80f88ca7052..fd0ed6ecd3a 100644 --- a/lib/user.php +++ b/lib/user.php @@ -260,17 +260,13 @@ class OC_User { /** * @brief Sets user id for session and triggers emit - * @returns true - * */ public static function setUserId($uid) { $_SESSION['user_id'] = $uid; - return true; } /** * @brief Logs the current user out and kills all the session data - * @returns true * * Logout, destroys session */ @@ -279,7 +275,6 @@ class OC_User { session_unset(); session_destroy(); OC_User::unsetMagicInCookie(); - return true; } /** @@ -300,6 +295,19 @@ class OC_User { } /** + * @brief Check if the user is an admin user + * @param $uid uid of the admin + * @returns bool + */ + public static function isAdminUser($uid) { + if(OC_Group::inGroup($uid, 'admin' )) { + return true; + } + return false; + } + + + /** * @brief get the user id of the user currently logged in. * @return string uid or false */ diff --git a/lib/util.php b/lib/util.php index 4170de2125a..374baa43dbe 100755 --- a/lib/util.php +++ b/lib/util.php @@ -111,7 +111,7 @@ class OC_Util { * @return string */ public static function getEditionString() { - return ''; + return ''; } /** @@ -311,14 +311,14 @@ class OC_Util { if (isset($_REQUEST['redirect_url'])) { $redirect_url = OC_Util::sanitizeHTML($_REQUEST['redirect_url']); $parameters['redirect_url'] = urlencode($redirect_url); - } + } OC_Template::printGuestPage("", "login", $parameters); } /** - * Check if the app is enabled, redirects to home if not - */ + * Check if the app is enabled, redirects to home if not + */ public static function checkAppEnabled($app) { if( !OC_App::isEnabled($app)) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' )); @@ -327,9 +327,9 @@ class OC_Util { } /** - * Check if the user is logged in, redirects to home if not. With - * redirect URL parameter to the request URI. - */ + * Check if the user is logged in, redirects to home if not. With + * redirect URL parameter to the request URI. + */ public static function checkLoggedIn() { // Check if we are a user if( !OC_User::isLoggedIn()) { @@ -339,29 +339,20 @@ class OC_Util { } /** - * Check if the user is a admin, redirects to home if not - */ + * Check if the user is a admin, redirects to home if not + */ public static function checkAdminUser() { - // Check if we are a user - self::checkLoggedIn(); - self::verifyUser(); - if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )) { + if( !OC_User::isAdminUser(OC_User::getUser())) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' )); exit(); } } /** - * Check if the user is a subadmin, redirects to home if not - * @return array $groups where the current user is subadmin - */ + * Check if the user is a subadmin, redirects to home if not + * @return array $groups where the current user is subadmin + */ public static function checkSubAdminUser() { - // Check if we are a user - self::checkLoggedIn(); - self::verifyUser(); - if(OC_Group::inGroup(OC_User::getUser(), 'admin')) { - return true; - } if(!OC_SubAdmin::isSubAdmin(OC_User::getUser())) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' )); exit(); @@ -370,42 +361,8 @@ class OC_Util { } /** - * Check if the user verified the login with his password in the last 15 minutes - * If not, the user will be shown a password verification page - */ - public static function verifyUser() { - if(OC_Config::getValue('enhancedauth', false) === true) { - // Check password to set session - if(isset($_POST['password'])) { - if (OC_User::login(OC_User::getUser(), $_POST["password"] ) === true) { - $_SESSION['verifiedLogin']=time() + OC_Config::getValue('enhancedauthtime', 15 * 60); - } - } - - // Check if the user verified his password - if(!isset($_SESSION['verifiedLogin']) OR $_SESSION['verifiedLogin'] < time()) { - OC_Template::printGuestPage("", "verify", array('username' => OC_User::getUser())); - exit(); - } - } - } - - /** - * Check if the user verified the login with his password - * @return bool - */ - public static function isUserVerified() { - if(OC_Config::getValue('enhancedauth', false) === true) { - if(!isset($_SESSION['verifiedLogin']) OR $_SESSION['verifiedLogin'] < time()) { - return false; - } - } - return true; - } - - /** - * Redirect to the user default page - */ + * Redirect to the user default page + */ public static function redirectToDefaultPage() { if(isset($_REQUEST['redirect_url'])) { $location = OC_Helper::makeURLAbsolute(urldecode($_REQUEST['redirect_url'])); @@ -510,8 +467,11 @@ class OC_Util { * @return array with sanitized strings or a single sanitized string, depends on the input parameter. */ public static function sanitizeHTML( &$value ) { - if (is_array($value) || is_object($value)) array_walk_recursive($value, 'OC_Util::sanitizeHTML'); - else $value = htmlentities($value, ENT_QUOTES, 'UTF-8'); //Specify encoding for PHP<5.4 + if (is_array($value) || is_object($value)) { + array_walk_recursive($value, 'OC_Util::sanitizeHTML'); + } else { + $value = htmlentities($value, ENT_QUOTES, 'UTF-8'); //Specify encoding for PHP<5.4 + } return $value; } @@ -553,9 +513,9 @@ class OC_Util { } - /** - * Check if the setlocal call doesn't work. This can happen if the right local packages are not available on the server. - */ + /** + * Check if the setlocal call doesn't work. This can happen if the right local packages are not available on the server. + */ public static function issetlocaleworking() { $result=setlocale(LC_ALL, 'en_US.UTF-8'); if($result==false) { @@ -565,20 +525,20 @@ class OC_Util { } } - /** - * Check if the ownCloud server can connect to the internet - */ + /** + * Check if the ownCloud server can connect to the internet + */ public static function isinternetconnectionworking() { // try to connect to owncloud.org to see if http connections to the internet are possible. - $connected = @fsockopen("www.owncloud.org", 80); + $connected = @fsockopen("www.owncloud.org", 80); if ($connected) { fclose($connected); return true; }else{ // second try in case one server is down - $connected = @fsockopen("apps.owncloud.com", 80); + $connected = @fsockopen("apps.owncloud.com", 80); if ($connected) { fclose($connected); return true; @@ -601,11 +561,11 @@ class OC_Util { /** - * @brief Generates a cryptographical secure pseudorandom string - * @param Int with the length of the random string - * @return String - * Please also update secureRNG_available if you change something here - */ + * @brief Generates a cryptographical secure pseudorandom string + * @param Int with the length of the random string + * @return String + * Please also update secureRNG_available if you change something here + */ public static function generate_random_bytes($length = 30) { // Try to use openssl_random_pseudo_bytes @@ -637,9 +597,9 @@ class OC_Util { } /** - * @brief Checks if a secure random number generator is available - * @return bool - */ + * @brief Checks if a secure random number generator is available + * @return bool + */ public static function secureRNG_available() { // Check openssl_random_pseudo_bytes @@ -658,48 +618,61 @@ class OC_Util { return false; } - - /** - * @Brief Get file content via curl. - * @param string $url Url to get content - * @return string of the response or false on error - * This function get the content of a page via curl, if curl is enabled. - * If not, file_get_element is used. - */ - - public static function getUrlContent($url){ - - if (function_exists('curl_init')) { - - $curl = curl_init(); - - curl_setopt($curl, CURLOPT_HEADER, 0); - curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); - curl_setopt($curl, CURLOPT_URL, $url); - curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); - if(OC_Config::getValue('proxy','')<>'') { - curl_setopt($curl, CURLOPT_PROXY, OC_Config::getValue('proxy')); - } - if(OC_Config::getValue('proxyuserpwd','')<>'') { - curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('proxyuserpwd')); - } - $data = curl_exec($curl); - curl_close($curl); - - } else { - - $ctx = stream_context_create( - array( - 'http' => array( - 'timeout' => 10 - ) - ) - ); - $data=@file_get_contents($url, 0, $ctx); - - } - return $data; + + /** + * @Brief Get file content via curl. + * @param string $url Url to get content + * @return string of the response or false on error + * This function get the content of a page via curl, if curl is enabled. + * If not, file_get_element is used. + */ + + public static function getUrlContent($url){ + + if (function_exists('curl_init')) { + + $curl = curl_init(); + + curl_setopt($curl, CURLOPT_HEADER, 0); + curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); + curl_setopt($curl, CURLOPT_URL, $url); + curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); + if(OC_Config::getValue('proxy','')<>'') { + curl_setopt($curl, CURLOPT_PROXY, OC_Config::getValue('proxy')); + } + if(OC_Config::getValue('proxyuserpwd','')<>'') { + curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('proxyuserpwd')); + } + $data = curl_exec($curl); + curl_close($curl); + + } else { + $contextArray = null; + + if(OC_Config::getValue('proxy','')<>'') { + $contextArray = array( + 'http' => array( + 'timeout' => 10, + 'proxy' => OC_Config::getValue('proxy') + ) + ); + } else { + $contextArray = array( + 'http' => array( + 'timeout' => 10 + ) + ); + } + + + $ctx = stream_context_create( + $contextArray + ); + $data=@file_get_contents($url, 0, $ctx); + + } + return $data; } - + } diff --git a/lib/vcategories.php b/lib/vcategories.php index 406a4eb1074..1700870f91f 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -763,4 +763,3 @@ class OC_VCategories { return array_search(strtolower($needle), array_map('strtolower', $haystack)); } } - diff --git a/ocs/routes.php b/ocs/routes.php index d77b96fc145..d6ee589df6f 100644 --- a/ocs/routes.php +++ b/ocs/routes.php @@ -17,4 +17,4 @@ OC_API::register('get', '/privatedata/getattribute/{app}', array('OC_OCS_Private OC_API::register('get', '/privatedata/getattribute/{app}/{key}', array('OC_OCS_Privatedata', 'get'), 'ocs', OC_API::USER_AUTH); OC_API::register('post', '/privatedata/setattribute/{app}/{key}', array('OC_OCS_Privatedata', 'set'), 'ocs', OC_API::USER_AUTH); OC_API::register('post', '/privatedata/deleteattribute/{app}/{key}', array('OC_OCS_Privatedata', 'delete'), 'ocs', OC_API::USER_AUTH); -?> + diff --git a/settings/admin.php b/settings/admin.php index 04905391138..4d9685ab920 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -33,6 +33,16 @@ $tmpl->assign('internetconnectionworking', OC_Util::isinternetconnectionworking( $tmpl->assign('islocaleworking', OC_Util::issetlocaleworking()); $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax')); $tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes')); + +// Check if connected using HTTPS +if (OC_Request::serverProtocol() == 'https') { + $connectedHTTPS = true; +} else { + $connectedHTTPS = false; +} +$tmpl->assign('isConnectedViaHTTPS', $connectedHTTPS); +$tmpl->assign('enforceHTTPSEnabled', OC_Config::getValue( "forcessl", false)); + $tmpl->assign('allowLinks', OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes')); $tmpl->assign('allowResharing', OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes')); $tmpl->assign('sharePolicy', OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global')); diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index b2db2611518..8d45e62e4d8 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -9,7 +9,7 @@ $password = $_POST["password"]; $oldPassword=isset($_POST["oldpassword"])?$_POST["oldpassword"]:''; $userstatus = null; -if(OC_Group::inGroup(OC_User::getUser(), 'admin')) { +if(OC_User::isAdminUser(OC_User::getUser())) { $userstatus = 'admin'; } if(OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { @@ -30,10 +30,6 @@ if(is_null($userstatus)) { exit(); } -if($userstatus === 'admin' || $userstatus === 'subadmin') { - OC_JSON::verifyUser(); -} - // Return Success story if( OC_User::setPassword( $username, $password )) { OC_JSON::success(array("data" => array( "username" => $username ))); diff --git a/settings/ajax/createuser.php b/settings/ajax/createuser.php index addae78517a..09ef25d92fa 100644 --- a/settings/ajax/createuser.php +++ b/settings/ajax/createuser.php @@ -3,9 +3,7 @@ OCP\JSON::callCheck(); OC_JSON::checkSubAdminUser(); -$isadmin = OC_Group::inGroup(OC_User::getUser(), 'admin')?true:false; - -if($isadmin) { +if(OC_User::isAdminUser(OC_User::getUser())) { $groups = array(); if( isset( $_POST["groups"] )) { $groups = $_POST["groups"]; diff --git a/settings/ajax/disableapp.php b/settings/ajax/disableapp.php index a39b06b9c7d..e89de928eac 100644 --- a/settings/ajax/disableapp.php +++ b/settings/ajax/disableapp.php @@ -1,7 +1,6 @@ <?php OC_JSON::checkAdminUser(); OCP\JSON::callCheck(); -OC_JSON::setContentTypeHeader(); OC_App::disable($_POST['appid']); diff --git a/settings/ajax/enableapp.php b/settings/ajax/enableapp.php index f4d5c53adef..18202dc39e9 100644 --- a/settings/ajax/enableapp.php +++ b/settings/ajax/enableapp.php @@ -2,7 +2,6 @@ OC_JSON::checkAdminUser(); OCP\JSON::callCheck(); -OC_JSON::setContentTypeHeader(); $appid = OC_App::enable($_POST['appid']); if($appid !== false) { diff --git a/settings/ajax/openid.php b/settings/ajax/openid.php deleted file mode 100644 index 23c43c3c48e..00000000000 --- a/settings/ajax/openid.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -$l=OC_L10N::get('settings'); - -OC_JSON::checkLoggedIn(); -OCP\JSON::callCheck(); -OC_JSON::checkAppEnabled('user_openid'); - -// Get data -if( isset( $_POST['identity'] ) ) { - $identity=$_POST['identity']; - OC_Preferences::setValue(OC_User::getUser(), 'user_openid', 'identity', $identity); - OC_JSON::success(array("data" => array( "message" => $l->t("OpenID Changed") ))); -}else{ - OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") ))); -} diff --git a/settings/ajax/removeuser.php b/settings/ajax/removeuser.php index 9ffb32a0b23..bf3a34f1472 100644 --- a/settings/ajax/removeuser.php +++ b/settings/ajax/removeuser.php @@ -10,7 +10,7 @@ if(OC_User::getUser() === $username) { exit; } -if(!OC_Group::inGroup(OC_User::getUser(), 'admin') && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { +if(!OC_User::isAdminUser(OC_User::getUser()) && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { $l = OC_L10N::get('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); diff --git a/settings/ajax/setquota.php b/settings/ajax/setquota.php index 845f8ea408c..356466c0c00 100644 --- a/settings/ajax/setquota.php +++ b/settings/ajax/setquota.php @@ -10,7 +10,7 @@ OCP\JSON::callCheck(); $username = isset($_POST["username"])?$_POST["username"]:''; -if(($username == '' && !OC_Group::inGroup(OC_User::getUser(), 'admin')) || (!OC_Group::inGroup(OC_User::getUser(), 'admin') && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username))) { +if(($username == '' && !OC_User::isAdminUser(OC_User::getUser()))|| (!OC_User::isAdminUser(OC_User::getUser()) && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username))) { $l = OC_L10N::get('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); diff --git a/settings/ajax/setsecurity.php b/settings/ajax/setsecurity.php new file mode 100644 index 00000000000..16a85aade81 --- /dev/null +++ b/settings/ajax/setsecurity.php @@ -0,0 +1,13 @@ +<?php +/** + * Copyright (c) 2013, Lukas Reschke <lukas@statuscode.ch> + * This file is licensed under the Affero General Public License version 3 or later. + * See the COPYING-README file. + */ + +OC_Util::checkAdminUser(); +OCP\JSON::callCheck(); + +OC_Config::setValue( 'forcessl', filter_var($_POST['enforceHTTPS'], FILTER_VALIDATE_BOOLEAN)); + +echo 'true';
\ No newline at end of file diff --git a/settings/ajax/togglegroups.php b/settings/ajax/togglegroups.php index 83d455550ae..9bba9c5269d 100644 --- a/settings/ajax/togglegroups.php +++ b/settings/ajax/togglegroups.php @@ -7,13 +7,13 @@ $success = true; $username = $_POST["username"]; $group = $_POST["group"]; -if($username == OC_User::getUser() && $group == "admin" && OC_Group::inGroup($username, 'admin')) { +if($username == OC_User::getUser() && $group == "admin" && OC_User::isAdminUser($username)) { $l = OC_L10N::get('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Admins can\'t remove themself from the admin group')))); exit(); } -if(!OC_Group::inGroup(OC_User::getUser(), 'admin') && (!OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username) || !OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group))) { +if(!OC_User::isAdminUser(OC_User::getUser()) && (!OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username) || !OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group))) { $l = OC_L10N::get('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); @@ -31,8 +31,8 @@ $action = "add"; // Toggle group if( OC_Group::inGroup( $username, $group )) { $action = "remove"; - $error = $l->t("Unable to remove user from group %s", $group); - $success = OC_Group::removeFromGroup( $username, $group ); + $error = $l->t("Unable to remove user from group %s", $group); + $success = OC_Group::removeFromGroup( $username, $group ); $usersInGroup=OC_Group::usersInGroup($group); if(count($usersInGroup)==0) { OC_Group::deleteGroup($group); diff --git a/settings/ajax/userlist.php b/settings/ajax/userlist.php index eaeade60a39..9bbff80ea0c 100644 --- a/settings/ajax/userlist.php +++ b/settings/ajax/userlist.php @@ -28,7 +28,7 @@ if (isset($_GET['offset'])) { $offset = 0; } $users = array(); -if (OC_Group::inGroup(OC_User::getUser(), 'admin')) { +if (OC_User::isAdminUser(OC_User::getUser())) { $batch = OC_User::getUsers('', 10, $offset); foreach ($batch as $user) { $users[] = array( diff --git a/settings/help.php b/settings/help.php index cd3d615425c..a5ac11ec9a3 100644 --- a/settings/help.php +++ b/settings/help.php @@ -27,7 +27,7 @@ $url1=OC_Helper::linkToRoute( "settings_help" ).'?mode=user'; $url2=OC_Helper::linkToRoute( "settings_help" ).'?mode=admin'; $tmpl = new OC_Template( "settings", "help", "user" ); -$tmpl->assign( "admin", OC_Group::inGroup(OC_User::getUser(), 'admin') ); +$tmpl->assign( "admin", OC_User::isAdminUser(OC_User::getUser())); $tmpl->assign( "url", $url ); $tmpl->assign( "url1", $url1 ); $tmpl->assign( "url2", $url2 ); diff --git a/settings/js/admin.js b/settings/js/admin.js index 95b7a503c27..ab218377fb3 100644 --- a/settings/js/admin.js +++ b/settings/js/admin.js @@ -30,4 +30,8 @@ $(document).ready(function(){ } OC.AppConfig.setValue('core', $(this).attr('name'), value); }); + + $('#security').change(function(){ + $.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#enforceHTTPSEnabled').val() },function(){} ); + }); }); diff --git a/settings/js/users.js b/settings/js/users.js index b0e30feb80c..fa6f058d923 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -177,9 +177,9 @@ var UserList = { } else { checkHandeler = false; } - var addGroup = function (group) { + var addGroup = function (select, group) { $('select[multiple]').each(function (index, element) { - if ($(element).find('option[value="' + group + '"]').length == 0) { + if ($(element).find('option[value="' + group + '"]').length === 0 && select.data('msid') !== $(element).data('msid')) { $(element).append('<option value="' + group + '">' + group + '</option>'); } }) @@ -193,6 +193,7 @@ var UserList = { element.multiSelect({ createCallback:addGroup, createText:label, + selectedFirst:true, checked:checked, oncheck:checkHandeler, onuncheck:checkHandeler, diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index d16e6ad10ea..20d4cced233 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -5,12 +5,11 @@ "Could not enable app. " => "فشل عملية تفعيل التطبيق", "Email saved" => "تم حفظ البريد الإلكتروني", "Invalid email" => "البريد الإلكتروني غير صالح", -"OpenID Changed" => "تم تغيير ال OpenID", -"Invalid request" => "طلبك غير مفهوم", "Unable to delete group" => "فشل إزالة المجموعة", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Unable to delete user" => "فشل إزالة المستخدم", "Language changed" => "تم تغيير اللغة", +"Invalid request" => "طلبك غير مفهوم", "Admins can't remove themself from the admin group" => "لا يستطيع المدير إزالة حسابه من مجموعة المديرين", "Unable to add user to group %s" => "فشل إضافة المستخدم الى المجموعة %s", "Unable to remove user from group %s" => "فشل إزالة المستخدم من المجموعة %s", diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 89066d2baa9..dc4c1cf6431 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -1,29 +1,10 @@ <?php $TRANSLATIONS = array( -"Email saved" => "Е-пощата е записана", -"Invalid email" => "Неправилна е-поща", -"OpenID Changed" => "OpenID е сменено", +"Authentication error" => "Възникна проблем с идентификацията", "Invalid request" => "Невалидна заявка", -"Authentication error" => "Проблем с идентификацията", -"Language changed" => "Езика е сменен", -"Disable" => "Изключване", -"Enable" => "Включване", -"Saving..." => "Записване...", -"Select an App" => "Изберете програма", -"Clients" => "Клиенти", +"Enable" => "Включено", "Password" => "Парола", -"Unable to change your password" => "Невъзможна промяна на паролата", -"Current password" => "Текуща парола", -"New password" => "Нова парола", -"show" => "показва", -"Change password" => "Промяна на парола", -"Email" => "Е-поща", -"Your email address" => "Адресът на е-пощата ви", -"Fill in an email address to enable password recovery" => "Въведете е-поща за възстановяване на паролата", -"Language" => "Език", -"Help translate" => "Помощ за превода", +"Email" => "E-mail", "Name" => "Име", "Groups" => "Групи", -"Create" => "Ново", -"Other" => "Друго", "Delete" => "Изтриване" ); diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php new file mode 100644 index 00000000000..bab6d9ec19c --- /dev/null +++ b/settings/l10n/bn_BD.php @@ -0,0 +1,62 @@ +<?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়", +"Group already exists" => "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান", +"Unable to add group" => "গোষ্ঠী যোগ করা সম্ভব হলো না", +"Could not enable app. " => "অ্যপটি সক্রিয় করতে সক্ষম নয়।", +"Email saved" => "ই-মেইল সংরক্ষন করা হয়েছে", +"Invalid email" => "ই-মেইলটি সঠিক নয়", +"Unable to delete group" => "গোষ্ঠী মুছে ফেলা সম্ভব হলো না ", +"Authentication error" => "অনুমোদন ঘটিত সমস্যা", +"Unable to delete user" => "ব্যবহারকারী মুছে ফেলা সম্ভব হলো না ", +"Language changed" => "ভাষা পরিবর্তন করা হয়েছে", +"Invalid request" => "অনুরোধটি যথাযথ নয়", +"Admins can't remove themself from the admin group" => "প্রশাসকবৃন্দ তাদেরকে প্রশাসক গোষ্ঠী থেকে মুছে ফেলতে পারবেন না", +"Unable to add user to group %s" => " %s গোষ্ঠীতে ব্যবহারকারী যোগ করা সম্ভব হলো না ", +"Unable to remove user from group %s" => "%s গোষ্ঠী থেকে ব্যবহারকারীকে অপসারণ করা সম্ভব হলো না", +"Disable" => "নিষ্ক্রিয়", +"Enable" => "সক্রিয় ", +"Saving..." => "সংরক্ষণ করা হচ্ছে..", +"__language_name__" => "__language_name__", +"Add your App" => "আপনার অ্যাপটি যোগ করুন", +"More Apps" => "আরও অ্যাপ", +"Select an App" => "অ্যাপ নির্বাচন করুন", +"See application page at apps.owncloud.com" => "apps.owncloud.com এ অ্যাপ্লিকেসন পৃষ্ঠা দেখুন", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-লাইসেন্সধারী <span class=\"author\"></span>", +"User Documentation" => "ব্যবহারকারী সহায়িকা", +"Administrator Documentation" => "প্রশাসক সহায়িকা", +"Online Documentation" => "অনলাইন সহায়িকা", +"Forum" => "ফোরাম", +"Bugtracker" => "বাগট্র্যাকার", +"Commercial Support" => "বাণিজ্যিক সাপোর্ট", +"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "আপনি ব্যবহার করছেন <strong>%s</strong>, সুলভ <strong>%s</strong> এর মধ্যে।", +"Clients" => "ক্লায়েন্ট", +"Download Desktop Clients" => "ডেস্কটপ ক্লায়েন্ট ডাউনলোড করুন", +"Download Android Client" => "অ্যান্ড্রয়েড ক্লায়েন্ট ডাউনলোড করুন", +"Download iOS Client" => "iOS ক্লায়েন্ট ডাউনলোড করুন", +"Password" => "কূটশব্দ", +"Your password was changed" => "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে ", +"Unable to change your password" => "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়", +"Current password" => "বর্তমান কূটশব্দ", +"New password" => "নতুন কূটশব্দ", +"show" => "প্রদর্শন", +"Change password" => "কূটশব্দ পরিবর্তন করুন", +"Email" => "ই-মেইল ", +"Your email address" => "আপনার ই-মেইল ঠিকানা", +"Fill in an email address to enable password recovery" => "কূটশব্দ পূনরূদ্ধার সক্রিয় করার জন্য ই-মেইল ঠিকানাটি পূরণ করুন", +"Language" => "ভাষা", +"Help translate" => "অনুবাদ করতে সহায়তা করুন", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন", +"Version" => "ভার্সন", +"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "তৈলী করেছেন <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud সম্প্রদায়</a>, যার <a href=\"https://github.com/owncloud\" target=\"_blank\"> উৎস কোডটি <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> এর অধীনে লাইসেন্সকৃত।", +"Name" => "রাম", +"Groups" => "গোষ্ঠীসমূহ", +"Create" => "তৈরী কর", +"Default Storage" => "পূর্বনির্ধারিত সংরক্ষণাগার", +"Unlimited" => "অসীম", +"Other" => "অন্যান্য", +"Group Admin" => "গোষ্ঠী প্রশাসক", +"Storage" => "সংরক্ষণাগার", +"Default" => "পূর্বনির্ধারিত", +"Delete" => "মুছে ফেল" +); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 6a354211254..35952475254 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -5,12 +5,11 @@ "Could not enable app. " => "No s'ha pogut activar l'apliació", "Email saved" => "S'ha desat el correu electrònic", "Invalid email" => "El correu electrònic no és vàlid", -"OpenID Changed" => "OpenID ha canviat", -"Invalid request" => "Sol.licitud no vàlida", "Unable to delete group" => "No es pot eliminar el grup", "Authentication error" => "Error d'autenticació", "Unable to delete user" => "No es pot eliminar l'usuari", "Language changed" => "S'ha canviat l'idioma", +"Invalid request" => "Sol.licitud no vàlida", "Admins can't remove themself from the admin group" => "Els administradors no es poden eliminar del grup admin", "Unable to add user to group %s" => "No es pot afegir l'usuari al grup %s", "Unable to remove user from group %s" => "No es pot eliminar l'usuari del grup %s", @@ -53,7 +52,11 @@ "Name" => "Nom", "Groups" => "Grups", "Create" => "Crea", -"Other" => "Altre", +"Default Storage" => "Emmagatzemament per defecte", +"Unlimited" => "Il·limitat", +"Other" => "Un altre", "Group Admin" => "Grup Admin", +"Storage" => "Emmagatzemament", +"Default" => "Per defecte", "Delete" => "Suprimeix" ); diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index d86376d5672..d20861764a9 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Nelze povolit aplikaci.", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", -"OpenID Changed" => "OpenID změněno", -"Invalid request" => "Neplatný požadavek", "Unable to delete group" => "Nelze smazat skupinu", "Authentication error" => "Chyba ověření", "Unable to delete user" => "Nelze smazat uživatele", "Language changed" => "Jazyk byl změněn", +"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", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 2300b98a2bf..021d7f814bb 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Applikationen kunne ikke aktiveres.", "Email saved" => "Email adresse gemt", "Invalid email" => "Ugyldig email adresse", -"OpenID Changed" => "OpenID ændret", -"Invalid request" => "Ugyldig forespørgsel", "Unable to delete group" => "Gruppen kan ikke slettes", "Authentication error" => "Adgangsfejl", "Unable to delete user" => "Bruger kan ikke slettes", "Language changed" => "Sprog ændret", +"Invalid request" => "Ugyldig forespørgsel", "Admins can't remove themself from the admin group" => "Administratorer kan ikke fjerne dem selv fra admin gruppen", "Unable to add user to group %s" => "Brugeren kan ikke tilføjes til gruppen %s", "Unable to remove user from group %s" => "Brugeren kan ikke fjernes fra gruppen %s", @@ -53,7 +52,11 @@ "Name" => "Navn", "Groups" => "Grupper", "Create" => "Ny", +"Default Storage" => "Standard opbevaring", +"Unlimited" => "Ubegrænset", "Other" => "Andet", "Group Admin" => "Gruppe Administrator", +"Storage" => "Opbevaring", +"Default" => "Standard", "Delete" => "Slet" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 6434d23a5ba..3bb53f99b2e 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -5,12 +5,11 @@ "Could not enable app. " => "App konnte nicht aktiviert werden.", "Email saved" => "E-Mail Adresse gespeichert", "Invalid email" => "Ungültige E-Mail Adresse", -"OpenID Changed" => "OpenID geändert", -"Invalid request" => "Ungültige Anfrage", "Unable to delete group" => "Gruppe konnte nicht gelöscht werden", "Authentication error" => "Fehler bei der Anmeldung", "Unable to delete user" => "Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", +"Invalid request" => "Ungültige Anfrage", "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", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 10914350d74..dd129fc59eb 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Die Anwendung konnte nicht aktiviert werden.", "Email saved" => "E-Mail-Adresse gespeichert", "Invalid email" => "Ungültige E-Mail-Adresse", -"OpenID Changed" => "OpenID geändert", -"Invalid request" => "Ungültige Anfrage", "Unable to delete group" => "Die Gruppe konnte nicht gelöscht werden", "Authentication error" => "Fehler bei der Anmeldung", "Unable to delete user" => "Der Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", +"Invalid request" => "Ungültige Anfrage", "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", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 1ecd2e269ff..ffd6d2a60bf 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Αδυναμία ενεργοποίησης εφαρμογής ", "Email saved" => "Το email αποθηκεύτηκε ", "Invalid email" => "Μη έγκυρο email", -"OpenID Changed" => "Το OpenID άλλαξε", -"Invalid request" => "Μη έγκυρο αίτημα", "Unable to delete group" => "Αδυναμία διαγραφής ομάδας", "Authentication error" => "Σφάλμα πιστοποίησης", "Unable to delete user" => "Αδυναμία διαγραφής χρήστη", "Language changed" => "Η γλώσσα άλλαξε", +"Invalid request" => "Μη έγκυρο αίτημα", "Admins can't remove themself from the admin group" => "Οι διαχειριστές δεν μπορούν να αφαιρέσουν τους εαυτούς τους από την ομάδα των διαχειριστών", "Unable to add user to group %s" => "Αδυναμία προσθήκη χρήστη στην ομάδα %s", "Unable to remove user from group %s" => "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s", @@ -53,7 +52,11 @@ "Name" => "Όνομα", "Groups" => "Ομάδες", "Create" => "Δημιουργία", +"Default Storage" => "Προκαθορισμένη Αποθήκευση ", +"Unlimited" => "Απεριόριστο", "Other" => "Άλλα", "Group Admin" => "Ομάδα Διαχειριστών", +"Storage" => "Αποθήκευση", +"Default" => "Προκαθορισμένο", "Delete" => "Διαγραφή" ); diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index 4f8d58b1bb7..651403be68c 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Ne eblis kapabligi la aplikaĵon.", "Email saved" => "La retpoŝtadreso konserviĝis", "Invalid email" => "Nevalida retpoŝtadreso", -"OpenID Changed" => "La agordo de OpenID estas ŝanĝita", -"Invalid request" => "Nevalida peto", "Unable to delete group" => "Ne eblis forigi la grupon", "Authentication error" => "Aŭtentiga eraro", "Unable to delete user" => "Ne eblis forigi la uzanton", "Language changed" => "La lingvo estas ŝanĝita", +"Invalid request" => "Nevalida peto", "Admins can't remove themself from the admin group" => "Administrantoj ne povas forigi sin mem el la administra grupo.", "Unable to add user to group %s" => "Ne eblis aldoni la uzanton al la grupo %s", "Unable to remove user from group %s" => "Ne eblis forigi la uzantan el la grupo %s", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index bd7d2866601..5434da7f981 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -5,12 +5,11 @@ "Could not enable app. " => "No puedo habilitar la app.", "Email saved" => "Correo guardado", "Invalid email" => "Correo no válido", -"OpenID Changed" => "OpenID cambiado", -"Invalid request" => "Solicitud no válida", "Unable to delete group" => "No se pudo eliminar el grupo", "Authentication error" => "Error de autenticación", "Unable to delete user" => "No se pudo eliminar el usuario", "Language changed" => "Idioma cambiado", +"Invalid request" => "Solicitud no válida", "Admins can't remove themself from the admin group" => "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", "Unable to add user to group %s" => "Imposible añadir el usuario al grupo %s", "Unable to remove user from group %s" => "Imposible eliminar al usuario del grupo %s", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 03f6c5593d4..a652ee13103 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -5,12 +5,11 @@ "Could not enable app. " => "No se puede habilitar la aplicación.", "Email saved" => "e-mail guardado", "Invalid email" => "el e-mail no es válido ", -"OpenID Changed" => "OpenID cambiado", -"Invalid request" => "Solicitud no válida", "Unable to delete group" => "No fue posible eliminar el grupo", "Authentication error" => "Error al autenticar", "Unable to delete user" => "No fue posible eliminar el usuario", "Language changed" => "Idioma cambiado", +"Invalid request" => "Solicitud no válida", "Admins can't remove themself from the admin group" => "Los administradores no se pueden quitar a ellos mismos del grupo administrador. ", "Unable to add user to group %s" => "No fue posible añadir el usuario al grupo %s", "Unable to remove user from group %s" => "No es posible eliminar al usuario del grupo %s", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index fdf9e35dfe2..53f61717282 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Rakenduse sisselülitamine ebaõnnestus.", "Email saved" => "Kiri on salvestatud", "Invalid email" => "Vigane e-post", -"OpenID Changed" => "OpenID on muudetud", -"Invalid request" => "Vigane päring", "Unable to delete group" => "Keela grupi kustutamine", "Authentication error" => "Autentimise viga", "Unable to delete user" => "Keela kasutaja kustutamine", "Language changed" => "Keel on muudetud", +"Invalid request" => "Vigane päring", "Unable to add user to group %s" => "Kasutajat ei saa lisada gruppi %s", "Unable to remove user from group %s" => "Kasutajat ei saa eemaldada grupist %s", "Disable" => "Lülita välja", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index bcf80da33c1..78e3cc62488 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Ezin izan da aplikazioa gaitu.", "Email saved" => "Eposta gorde da", "Invalid email" => "Baliogabeko eposta", -"OpenID Changed" => "OpenID aldatuta", -"Invalid request" => "Baliogabeko eskaria", "Unable to delete group" => "Ezin izan da taldea ezabatu", "Authentication error" => "Autentifikazio errorea", "Unable to delete user" => "Ezin izan da erabiltzailea ezabatu", "Language changed" => "Hizkuntza aldatuta", +"Invalid request" => "Baliogabeko eskaria", "Admins can't remove themself from the admin group" => "Kudeatzaileak ezin du bere burua kendu kudeatzaile taldetik", "Unable to add user to group %s" => "Ezin izan da erabiltzailea %s taldera gehitu", "Unable to remove user from group %s" => "Ezin izan da erabiltzailea %s taldetik ezabatu", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 293a50ff291..44872e28f05 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -2,10 +2,9 @@ "Unable to load list from App Store" => "قادر به بارگذاری لیست از فروشگاه اپ نیستم", "Email saved" => "ایمیل ذخیره شد", "Invalid email" => "ایمیل غیر قابل قبول", -"OpenID Changed" => "OpenID تغییر کرد", -"Invalid request" => "درخواست غیر قابل قبول", "Authentication error" => "خطا در اعتبار سنجی", "Language changed" => "زبان تغییر کرد", +"Invalid request" => "درخواست غیر قابل قبول", "Disable" => "غیرفعال", "Enable" => "فعال", "Saving..." => "درحال ذخیره ...", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 5700f86036f..dbab88b97a0 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Sovelluksen käyttöönotto epäonnistui.", "Email saved" => "Sähköposti tallennettu", "Invalid email" => "Virheellinen sähköposti", -"OpenID Changed" => "OpenID on vaihdettu", -"Invalid request" => "Virheellinen pyyntö", "Unable to delete group" => "Ryhmän poisto epäonnistui", "Authentication error" => "Todennusvirhe", "Unable to delete user" => "Käyttäjän poisto epäonnistui", "Language changed" => "Kieli on vaihdettu", +"Invalid request" => "Virheellinen pyyntö", "Admins can't remove themself from the admin group" => "Ylläpitäjät eivät poistaa omia tunnuksiaan ylläpitäjien ryhmästä", "Unable to add user to group %s" => "Käyttäjän tai ryhmän %s lisääminen ei onnistu", "Unable to remove user from group %s" => "Käyttäjän poistaminen ryhmästä %s ei onnistu", @@ -53,7 +52,9 @@ "Name" => "Nimi", "Groups" => "Ryhmät", "Create" => "Luo", +"Unlimited" => "Rajoittamaton", "Other" => "Muu", "Group Admin" => "Ryhmän ylläpitäjä", +"Default" => "Oletus", "Delete" => "Poista" ); diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index a8367ef458d..03a61c69cf8 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Impossible d'activer l'Application", "Email saved" => "E-mail sauvegardé", "Invalid email" => "E-mail invalide", -"OpenID Changed" => "Identifiant OpenID changé", -"Invalid request" => "Requête invalide", "Unable to delete group" => "Impossible de supprimer le groupe", "Authentication error" => "Erreur d'authentification", "Unable to delete user" => "Impossible de supprimer l'utilisateur", "Language changed" => "Langue changée", +"Invalid request" => "Requête invalide", "Admins can't remove themself from the admin group" => "Les administrateurs ne peuvent pas se retirer eux-mêmes du groupe admin", "Unable to add user to group %s" => "Impossible d'ajouter l'utilisateur au groupe %s", "Unable to remove user from group %s" => "Impossible de supprimer l'utilisateur du groupe %s", @@ -31,7 +30,7 @@ "Commercial Support" => "Support commercial", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Vous avez utilisé <strong>%s</strong> des <strong>%s<strong> disponibles", "Clients" => "Clients", -"Download Desktop Clients" => "Télécharger des clients de bureau", +"Download Desktop Clients" => "Télécharger le client de synchronisation pour votre ordinateur", "Download Android Client" => "Télécharger le client Android", "Download iOS Client" => "Télécharger le client iOS", "Password" => "Mot de passe", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 2853b6fed7d..ddd5661fe72 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -1,47 +1,62 @@ <?php $TRANSLATIONS = array( -"Unable to load list from App Store" => "Non se puido cargar a lista desde a App Store", +"Unable to load list from App Store" => "Non foi posíbel cargar a lista desde a App Store", "Group already exists" => "O grupo xa existe", -"Unable to add group" => "Non se pode engadir o grupo", -"Could not enable app. " => "Con se puido activar o aplicativo.", -"Email saved" => "Correo electrónico gardado", -"Invalid email" => "correo electrónico non válido", -"OpenID Changed" => "Mudou o OpenID", +"Unable to add group" => "Non é posíbel engadir o grupo", +"Could not enable app. " => "Non é posíbel activar o aplicativo.", +"Email saved" => "Correo gardado", +"Invalid email" => "correo incorrecto", +"Unable to delete group" => "Non é posíbel eliminar o grupo.", +"Authentication error" => "Produciuse un erro de autenticación", +"Unable to delete user" => "Non é posíbel eliminar o usuario", +"Language changed" => "O idioma cambiou", "Invalid request" => "Petición incorrecta", -"Unable to delete group" => "Non se pode eliminar o grupo.", -"Authentication error" => "Erro na autenticación", -"Unable to delete user" => "Non se pode eliminar o usuario", -"Language changed" => "O idioma mudou", "Admins can't remove themself from the admin group" => "Os administradores non se pode eliminar a si mesmos do grupo admin", -"Unable to add user to group %s" => "Non se puido engadir o usuario ao grupo %s", -"Unable to remove user from group %s" => "Non se puido eliminar o usuario do grupo %s", +"Unable to add user to group %s" => "Non é posíbel engadir o usuario ao grupo %s", +"Unable to remove user from group %s" => "Non é posíbel eliminar o usuario do grupo %s", "Disable" => "Desactivar", "Enable" => "Activar", "Saving..." => "Gardando...", "__language_name__" => "Galego", -"Add your App" => "Engade o teu aplicativo", +"Add your App" => "Engada o seu aplicativo", "More Apps" => "Máis aplicativos", -"Select an App" => "Escolla un Aplicativo", -"See application page at apps.owncloud.com" => "Vexa a páxina do aplicativo en apps.owncloud.com", +"Select an App" => "Escolla un aplicativo", +"See application page at apps.owncloud.com" => "Consulte a páxina do aplicativo en apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenciado por<span class=\"author\"></span>", -"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Tes usados <strong>%s</strong> do total dispoñíbel de <strong>%s</strong>", +"User Documentation" => "Documentación do usuario", +"Administrator Documentation" => "Documentación do administrador", +"Online Documentation" => "Documentación na Rede", +"Forum" => "Foro", +"Bugtracker" => "Seguemento de fallos", +"Commercial Support" => "Asistencia comercial", +"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Te en uso <strong>%s</strong> do total dispoñíbel de <strong>%s</strong>", "Clients" => "Clientes", +"Download Desktop Clients" => "Descargar clientes para escritorio", +"Download Android Client" => "Descargar clientes para Android", +"Download iOS Client" => "Descargar clientes ra iOS", "Password" => "Contrasinal", "Your password was changed" => "O seu contrasinal foi cambiado", -"Unable to change your password" => "Incapaz de trocar o seu contrasinal", +"Unable to change your password" => "Non é posíbel cambiar o seu contrasinal", "Current password" => "Contrasinal actual", "New password" => "Novo contrasinal", "show" => "amosar", -"Change password" => "Mudar contrasinal", -"Email" => "Correo electrónico", -"Your email address" => "O seu enderezo de correo electrónico", -"Fill in an email address to enable password recovery" => "Escriba un enderezo de correo electrónico para habilitar a recuperación do contrasinal", +"Change password" => "Cambiar o contrasinal", +"Email" => "Correo", +"Your email address" => "O seu enderezo de correo", +"Fill in an email address to enable password recovery" => "Escriba un enderezo de correo para activar a recuperación do contrasinal", "Language" => "Idioma", "Help translate" => "Axude na tradución", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros", +"Version" => "Versión", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Desenvolvido pola <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidade ownCloud</a>, o <a href=\"https://github.com/owncloud\" target=\"_blank\">código fonte</a> está baixo a licenza <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "Name" => "Nome", "Groups" => "Grupos", "Create" => "Crear", +"Default Storage" => "Almacenamento predeterminado", +"Unlimited" => "Sen límites", "Other" => "Outro", "Group Admin" => "Grupo Admin", -"Delete" => "Borrar" +"Storage" => "Almacenamento", +"Default" => "Predeterminado", +"Delete" => "Eliminar" ); diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 1d7a91ee523..bbfe437ba30 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -5,12 +5,11 @@ "Could not enable app. " => "לא ניתן להפעיל את היישום", "Email saved" => "הדוא״ל נשמר", "Invalid email" => "דוא״ל לא חוקי", -"OpenID Changed" => "OpenID השתנה", -"Invalid request" => "בקשה לא חוקית", "Unable to delete group" => "לא ניתן למחוק את הקבוצה", "Authentication error" => "שגיאת הזדהות", "Unable to delete user" => "לא ניתן למחוק את המשתמש", "Language changed" => "שפה השתנתה", +"Invalid request" => "בקשה לא חוקית", "Admins can't remove themself from the admin group" => "מנהלים לא יכולים להסיר את עצמם מקבוצת המנהלים", "Unable to add user to group %s" => "לא ניתן להוסיף משתמש לקבוצה %s", "Unable to remove user from group %s" => "לא ניתן להסיר משתמש מהקבוצה %s", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index b6f7133f13f..14053cb98a4 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -2,10 +2,9 @@ "Unable to load list from App Store" => "Nemogićnost učitavanja liste sa Apps Stora", "Email saved" => "Email spremljen", "Invalid email" => "Neispravan email", -"OpenID Changed" => "OpenID promijenjen", -"Invalid request" => "Neispravan zahtjev", "Authentication error" => "Greška kod autorizacije", "Language changed" => "Jezik promijenjen", +"Invalid request" => "Neispravan zahtjev", "Disable" => "Isključi", "Enable" => "Uključi", "Saving..." => "Spremanje...", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 5fdc11e44f9..35c59bdb2d6 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -5,12 +5,11 @@ "Could not enable app. " => "A program nem aktiválható.", "Email saved" => "Email mentve", "Invalid email" => "Hibás email", -"OpenID Changed" => "OpenID megváltozott", -"Invalid request" => "Érvénytelen kérés", "Unable to delete group" => "A csoport nem törölhető", "Authentication error" => "Azonosítási hiba", "Unable to delete user" => "A felhasználó nem törölhető", "Language changed" => "A nyelv megváltozott", +"Invalid request" => "Érvénytelen kérés", "Admins can't remove themself from the admin group" => "Adminisztrátorok nem távolíthatják el magukat az admin csoportból.", "Unable to add user to group %s" => "A felhasználó nem adható hozzá ehhez a csoporthoz: %s", "Unable to remove user from group %s" => "A felhasználó nem távolítható el ebből a csoportból: %s", @@ -53,7 +52,11 @@ "Name" => "Név", "Groups" => "Csoportok", "Create" => "Létrehozás", +"Default Storage" => "Alapértelmezett tárhely", +"Unlimited" => "Korlátlan", "Other" => "Más", "Group Admin" => "Csoportadminisztrátor", +"Storage" => "Tárhely", +"Default" => "Alapértelmezett", "Delete" => "Törlés" ); diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index d5057275d2b..18428709098 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -1,7 +1,6 @@ <?php $TRANSLATIONS = array( -"OpenID Changed" => "OpenID cambiate", -"Invalid request" => "Requesta invalide", "Language changed" => "Linguage cambiate", +"Invalid request" => "Requesta invalide", "__language_name__" => "Interlingua", "Add your App" => "Adder tu application", "Select an App" => "Selectionar un app", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 575b0a233dd..132920a7a04 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -1,10 +1,9 @@ <?php $TRANSLATIONS = array( "Email saved" => "Email tersimpan", "Invalid email" => "Email tidak sah", -"OpenID Changed" => "OpenID telah dirubah", -"Invalid request" => "Permintaan tidak valid", "Authentication error" => "autentikasi bermasalah", "Language changed" => "Bahasa telah diganti", +"Invalid request" => "Permintaan tidak valid", "Disable" => "NonAktifkan", "Enable" => "Aktifkan", "Saving..." => "Menyimpan...", diff --git a/settings/l10n/is.php b/settings/l10n/is.php index 2056dfc5b72..d978957ab48 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Gat ekki virkjað forrit", "Email saved" => "Netfang vistað", "Invalid email" => "Ógilt netfang", -"OpenID Changed" => "OpenID breytt", -"Invalid request" => "Ógild fyrirspurn", "Unable to delete group" => "Ekki tókst að eyða hóp", "Authentication error" => "Villa við auðkenningu", "Unable to delete user" => "Ekki tókst að eyða notenda", "Language changed" => "Tungumáli breytt", +"Invalid request" => "Ógild fyrirspurn", "Admins can't remove themself from the admin group" => "Stjórnendur geta ekki fjarlægt sjálfa sig úr stjórnendahóp", "Unable to add user to group %s" => "Ekki tókst að bæta notenda við hópinn %s", "Unable to remove user from group %s" => "Ekki tókst að fjarlægja notanda úr hópnum %s", @@ -21,7 +20,8 @@ "Add your App" => "Bæta við forriti", "More Apps" => "Fleiri forrit", "Select an App" => "Veldu forrit", -"See application page at apps.owncloud.com" => "Skoða forrita síðuna hjá apps.owncloud.com", +"See application page at apps.owncloud.com" => "Skoða síðu forrits hjá apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-leyfi skráð af <span class=\"author\"></span>", "User Documentation" => "Notenda handbók", "Administrator Documentation" => "Stjórnenda handbók", "Online Documentation" => "Handbók á netinu", @@ -55,7 +55,7 @@ "Default Storage" => "Sjálfgefin gagnageymsla", "Unlimited" => "Ótakmarkað", "Other" => "Annað", -"Group Admin" => "Hópa stjóri", +"Group Admin" => "Hópstjóri", "Storage" => "gagnapláss", "Default" => "Sjálfgefið", "Delete" => "Eyða" diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 043f1a2db9d..4980d585441 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Impossibile abilitare l'applicazione.", "Email saved" => "Email salvata", "Invalid email" => "Email non valida", -"OpenID Changed" => "OpenID modificato", -"Invalid request" => "Richiesta non valida", "Unable to delete group" => "Impossibile eliminare il gruppo", "Authentication error" => "Errore di autenticazione", "Unable to delete user" => "Impossibile eliminare l'utente", "Language changed" => "Lingua modificata", +"Invalid request" => "Richiesta non valida", "Admins can't remove themself from the admin group" => "Gli amministratori non possono rimuovere se stessi dal gruppo di amministrazione", "Unable to add user to group %s" => "Impossibile aggiungere l'utente al gruppo %s", "Unable to remove user from group %s" => "Impossibile rimuovere l'utente dal gruppo %s", @@ -56,7 +55,7 @@ "Default Storage" => "Archiviazione predefinita", "Unlimited" => "Illimitata", "Other" => "Altro", -"Group Admin" => "Gruppo di amministrazione", +"Group Admin" => "Gruppi amministrati", "Storage" => "Archiviazione", "Default" => "Predefinito", "Delete" => "Elimina" diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 29c38827566..a660d21c780 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -5,12 +5,11 @@ "Could not enable app. " => "アプリを有効にできませんでした。", "Email saved" => "メールアドレスを保存しました", "Invalid email" => "無効なメールアドレス", -"OpenID Changed" => "OpenIDが変更されました", -"Invalid request" => "無効なリクエストです", "Unable to delete group" => "グループを削除できません", "Authentication error" => "認証エラー", "Unable to delete user" => "ユーザを削除できません", "Language changed" => "言語が変更されました", +"Invalid request" => "無効なリクエストです", "Admins can't remove themself from the admin group" => "管理者は自身を管理者グループから削除できません。", "Unable to add user to group %s" => "ユーザをグループ %s に追加できません", "Unable to remove user from group %s" => "ユーザをグループ %s から削除できません", @@ -53,7 +52,11 @@ "Name" => "名前", "Groups" => "グループ", "Create" => "作成", +"Default Storage" => "デフォルトストレージ", +"Unlimited" => "無制限", "Other" => "その他", "Group Admin" => "グループ管理者", +"Storage" => "ストレージ", +"Default" => "デフォルト", "Delete" => "削除" ); diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index a9d994f87c6..68dbc736dcd 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -5,12 +5,11 @@ "Could not enable app. " => "ვერ მოხერხდა აპლიკაციის ჩართვა.", "Email saved" => "იმეილი შენახულია", "Invalid email" => "არასწორი იმეილი", -"OpenID Changed" => "OpenID შეცვლილია", -"Invalid request" => "არასწორი მოთხოვნა", "Unable to delete group" => "ჯგუფის წაშლა ვერ მოხერხდა", "Authentication error" => "ავთენტიფიკაციის შეცდომა", "Unable to delete user" => "მომხმარებლის წაშლა ვერ მოხერხდა", "Language changed" => "ენა შეცვლილია", +"Invalid request" => "არასწორი მოთხოვნა", "Unable to add user to group %s" => "მომხმარებლის დამატება ვერ მოხეხდა ჯგუფში %s", "Unable to remove user from group %s" => "მომხმარებლის წაშლა ვერ მოხეხდა ჯგუფიდან %s", "Disable" => "გამორთვა", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 6556e1b93b8..4a7817b8401 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -5,12 +5,11 @@ "Could not enable app. " => "앱을 활성화할 수 없습니다.", "Email saved" => "이메일 저장됨", "Invalid email" => "잘못된 이메일 주소", -"OpenID Changed" => "OpenID 변경됨", -"Invalid request" => "잘못된 요청", "Unable to delete group" => "그룹을 삭제할 수 없습니다.", "Authentication error" => "인증 오류", "Unable to delete user" => "사용자를 삭제할 수 없습니다.", "Language changed" => "언어가 변경되었습니다", +"Invalid request" => "잘못된 요청", "Admins can't remove themself from the admin group" => "관리자 자신을 관리자 그룹에서 삭제할 수 없습니다", "Unable to add user to group %s" => "그룹 %s에 사용자를 추가할 수 없습니다.", "Unable to remove user from group %s" => "그룹 %s에서 사용자를 삭제할 수 없습니다.", @@ -23,8 +22,17 @@ "Select an App" => "앱 선택", "See application page at apps.owncloud.com" => "apps.owncloud.com에 있는 앱 페이지를 참고하십시오", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-라이선스 보유자 <span class=\"author\"></span>", +"User Documentation" => "유저 문서", +"Administrator Documentation" => "관리자 문서", +"Online Documentation" => "온라인 문서", +"Forum" => "포럼", +"Bugtracker" => "버그트래커", +"Commercial Support" => "상업용 지원", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "현재 공간 <strong>%s</strong>/<strong>%s</strong>을(를) 사용 중입니다", "Clients" => "고객", +"Download Desktop Clients" => "데스크탑 클라이언트 다운로드", +"Download Android Client" => "안드로이드 클라이언트 다운로드", +"Download iOS Client" => "iOS 클라이언트 다운로드", "Password" => "암호", "Your password was changed" => "암호가 변경되었습니다", "Unable to change your password" => "암호를 변경할 수 없음", @@ -37,11 +45,18 @@ "Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오.", "Language" => "언어", "Help translate" => "번역 돕기", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "파일 매니저에서 사용자의 ownCloud에 접속하기 위해 이 주소를 사용하십시요.", +"Version" => "버젼", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud 커뮤니티</a>에 의해서 개발되었습니다. <a href=\"https://github.com/owncloud\" target=\"_blank\">원본 코드</a>는 <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>에 따라 사용이 허가됩니다.", "Name" => "이름", "Groups" => "그룹", "Create" => "만들기", +"Default Storage" => "기본 저장소", +"Unlimited" => "무제한", "Other" => "기타", "Group Admin" => "그룹 관리자", +"Storage" => "저장소", +"Default" => "기본값", "Delete" => "삭제" ); diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index db09bdc1280..1f9ea35e885 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -2,10 +2,9 @@ "Unable to load list from App Store" => "Konnt Lescht net vum App Store lueden", "Email saved" => "E-mail gespäichert", "Invalid email" => "Ongülteg e-mail", -"OpenID Changed" => "OpenID huet geännert", -"Invalid request" => "Ongülteg Requête", "Authentication error" => "Authentifikatioun's Fehler", "Language changed" => "Sprooch huet geännert", +"Invalid request" => "Ongülteg Requête", "Disable" => "Ofschalten", "Enable" => "Aschalten", "Saving..." => "Speicheren...", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 0430fface00..73af4f3b27b 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -3,10 +3,9 @@ "Could not enable app. " => "Nepavyksta įjungti aplikacijos.", "Email saved" => "El. paštas išsaugotas", "Invalid email" => "Netinkamas el. paštas", -"OpenID Changed" => "OpenID pakeistas", -"Invalid request" => "Klaidinga užklausa", "Authentication error" => "Autentikacijos klaida", "Language changed" => "Kalba pakeista", +"Invalid request" => "Klaidinga užklausa", "Disable" => "Išjungti", "Enable" => "Įjungti", "Saving..." => "Saugoma..", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 5ae9be48e4f..ba44fdbb3e2 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Nevar ieslēgt aplikāciju.", "Email saved" => "Epasts tika saglabāts", "Invalid email" => "Nepareizs epasts", -"OpenID Changed" => "OpenID nomainīts", -"Invalid request" => "Nepareizs vaicājums", "Unable to delete group" => "Nevar izdzēst grupu", "Authentication error" => "Ielogošanās kļūme", "Unable to delete user" => "Nevar izdzēst lietotāju", "Language changed" => "Valoda tika nomainīta", +"Invalid request" => "Nepareizs vaicājums", "Unable to add user to group %s" => "Nevar pievienot lietotāju grupai %s", "Unable to remove user from group %s" => "Nevar noņemt lietotāju no grupas %s", "Disable" => "Atvienot", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 4c5f7bf549b..52fafc56479 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Неможе да овозможам апликација.", "Email saved" => "Електронската пошта е снимена", "Invalid email" => "Неисправна електронска пошта", -"OpenID Changed" => "OpenID сменето", -"Invalid request" => "неправилно барање", "Unable to delete group" => "Неможе да избришам група", "Authentication error" => "Грешка во автентикација", "Unable to delete user" => "Неможам да избришам корисник", "Language changed" => "Јазикот е сменет", +"Invalid request" => "неправилно барање", "Admins can't remove themself from the admin group" => "Администраторите неможе да се избришат себеси од админ групата", "Unable to add user to group %s" => "Неможе да додадам корисник во група %s", "Unable to remove user from group %s" => "Неможе да избришам корисник од група %s", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index 27eb4c2df9f..87f45d3c9a0 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -1,10 +1,9 @@ <?php $TRANSLATIONS = array( "Email saved" => "Emel disimpan", "Invalid email" => "Emel tidak sah", -"OpenID Changed" => "OpenID diubah", -"Invalid request" => "Permintaan tidak sah", "Authentication error" => "Ralat pengesahan", "Language changed" => "Bahasa diubah", +"Invalid request" => "Permintaan tidak sah", "Disable" => "Nyahaktif", "Enable" => "Aktif", "Saving..." => "Simpan...", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 24a6085b024..52cfc92040b 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Kan ikke aktivere app.", "Email saved" => "Epost lagret", "Invalid email" => "Ugyldig epost", -"OpenID Changed" => "OpenID endret", -"Invalid request" => "Ugyldig forespørsel", "Unable to delete group" => "Kan ikke slette gruppe", "Authentication error" => "Autentikasjonsfeil", "Unable to delete user" => "Kan ikke slette bruker", "Language changed" => "Språk endret", +"Invalid request" => "Ugyldig forespørsel", "Unable to add user to group %s" => "Kan ikke legge bruker til gruppen %s", "Unable to remove user from group %s" => "Kan ikke slette bruker fra gruppen %s", "Disable" => "Slå avBehandle ", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 583c044ba47..2b6fdbd6082 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Kan de app. niet activeren", "Email saved" => "E-mail bewaard", "Invalid email" => "Ongeldige e-mail", -"OpenID Changed" => "OpenID is aangepast", -"Invalid request" => "Ongeldig verzoek", "Unable to delete group" => "Niet in staat om groep te verwijderen", "Authentication error" => "Authenticatie fout", "Unable to delete user" => "Niet in staat om gebruiker te verwijderen", "Language changed" => "Taal aangepast", +"Invalid request" => "Ongeldig verzoek", "Admins can't remove themself from the admin group" => "Admins kunnen zichzelf niet uit de admin groep verwijderen", "Unable to add user to group %s" => "Niet in staat om gebruiker toe te voegen aan groep %s", "Unable to remove user from group %s" => "Niet in staat om gebruiker te verwijderen uit groep %s", @@ -53,7 +52,11 @@ "Name" => "Naam", "Groups" => "Groepen", "Create" => "Creëer", +"Default Storage" => "Default opslag", +"Unlimited" => "Ongelimiteerd", "Other" => "Andere", "Group Admin" => "Groep beheerder", +"Storage" => "Opslag", +"Default" => "Default", "Delete" => "verwijderen" ); diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 9f54fc9ee5f..923f5481d5a 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -2,10 +2,9 @@ "Unable to load list from App Store" => "Klarer ikkje å laste inn liste fra App Store", "Email saved" => "E-postadresse lagra", "Invalid email" => "Ugyldig e-postadresse", -"OpenID Changed" => "OpenID endra", -"Invalid request" => "Ugyldig førespurnad", "Authentication error" => "Feil i autentisering", "Language changed" => "Språk endra", +"Invalid request" => "Ugyldig førespurnad", "Disable" => "Slå av", "Enable" => "Slå på", "__language_name__" => "Nynorsk", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index 358b44bbec3..39445570fdb 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Pòt pas activar app. ", "Email saved" => "Corrièl enregistrat", "Invalid email" => "Corrièl incorrècte", -"OpenID Changed" => "OpenID cambiat", -"Invalid request" => "Demanda invalida", "Unable to delete group" => "Pas capable d'escafar un grop", "Authentication error" => "Error d'autentificacion", "Unable to delete user" => "Pas capable d'escafar un usancièr", "Language changed" => "Lengas cambiadas", +"Invalid request" => "Demanda invalida", "Unable to add user to group %s" => "Pas capable d'apondre un usancièr al grop %s", "Unable to remove user from group %s" => "Pas capable de tira un usancièr del grop %s", "Disable" => "Desactiva", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 1008726d36e..c9e49f57a3e 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Nie można włączyć aplikacji.", "Email saved" => "Email zapisany", "Invalid email" => "Niepoprawny email", -"OpenID Changed" => "Zmieniono OpenID", -"Invalid request" => "Nieprawidłowe żądanie", "Unable to delete group" => "Nie można usunąć grupy", "Authentication error" => "Błąd uwierzytelniania", "Unable to delete user" => "Nie można usunąć użytkownika", "Language changed" => "Język zmieniony", +"Invalid request" => "Nieprawidłowe żądanie", "Admins can't remove themself from the admin group" => "Administratorzy nie mogą usunąć się sami z grupy administratorów.", "Unable to add user to group %s" => "Nie można dodać użytkownika do grupy %s", "Unable to remove user from group %s" => "Nie można usunąć użytkownika z grupy %s", @@ -23,8 +22,17 @@ "Select an App" => "Zaznacz aplikacje", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencjonowane przez <span class=\"author\"></span>", +"User Documentation" => "Dokumentacja użytkownika", +"Administrator Documentation" => "Dokumentacja Administratora", +"Online Documentation" => "Dokumentacja Online", +"Forum" => "Forum", +"Bugtracker" => "Zgłaszanie błędów", +"Commercial Support" => "Wsparcie komercyjne", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Korzystasz z <strong>%s</strong> z dostępnych <strong>%s</strong>", "Clients" => "Klienci", +"Download Desktop Clients" => "Pobierz klienta dla Komputera", +"Download Android Client" => "Pobierz klienta dla Androida", +"Download iOS Client" => "Pobierz klienta dla iOS", "Password" => "Hasło", "Your password was changed" => "Twoje hasło zostało zmienione", "Unable to change your password" => "Nie można zmienić hasła", @@ -37,11 +45,18 @@ "Fill in an email address to enable password recovery" => "Proszę wprowadzić adres e-mail, aby uzyskać możliwość odzyskania hasła", "Language" => "Język", "Help translate" => "Pomóż w tłumaczeniu", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików", +"Version" => "Wersja", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Stwirzone przez <a href=\"http://ownCloud.org/contact\" target=\"_blank\"> społeczność ownCloud</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">kod źródłowy</a> na licencji <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "Name" => "Nazwa", "Groups" => "Grupy", "Create" => "Utwórz", +"Default Storage" => "Domyślny magazyn", +"Unlimited" => "Bez limitu", "Other" => "Inne", "Group Admin" => "Grupa Admin", +"Storage" => "Magazyn", +"Default" => "Domyślny", "Delete" => "Usuń" ); diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index a731d142ce3..3a1e6b86357 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Não pôde habilitar aplicação", "Email saved" => "Email gravado", "Invalid email" => "Email inválido", -"OpenID Changed" => "Mudou OpenID", -"Invalid request" => "Pedido inválido", "Unable to delete group" => "Não foi possivel remover grupo", "Authentication error" => "erro de autenticação", "Unable to delete user" => "Não foi possivel remover usuário", "Language changed" => "Mudou Idioma", +"Invalid request" => "Pedido inválido", "Admins can't remove themself from the admin group" => "Admins não podem se remover do grupo admin", "Unable to add user to group %s" => "Não foi possivel adicionar usuário ao grupo %s", "Unable to remove user from group %s" => "Não foi possivel remover usuário ao grupo %s", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 1cfa991464f..6bccb49d649 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Não foi possível activar a app.", "Email saved" => "Email guardado", "Invalid email" => "Email inválido", -"OpenID Changed" => "OpenID alterado", -"Invalid request" => "Pedido inválido", "Unable to delete group" => "Impossível apagar grupo", "Authentication error" => "Erro de autenticação", "Unable to delete user" => "Impossível apagar utilizador", "Language changed" => "Idioma alterado", +"Invalid request" => "Pedido inválido", "Admins can't remove themself from the admin group" => "Os administradores não se podem remover a eles mesmos do grupo admin.", "Unable to add user to group %s" => "Impossível acrescentar utilizador ao grupo %s", "Unable to remove user from group %s" => "Impossível apagar utilizador do grupo %s", @@ -53,7 +52,11 @@ "Name" => "Nome", "Groups" => "Grupos", "Create" => "Criar", +"Default Storage" => "Armazenamento Padrão", +"Unlimited" => "Ilimitado", "Other" => "Outro", "Group Admin" => "Grupo Administrador", +"Storage" => "Armazenamento", +"Default" => "Padrão", "Delete" => "Apagar" ); diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 4c8b1ac420a..a96a7368499 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Nu s-a putut activa aplicația.", "Email saved" => "E-mail salvat", "Invalid email" => "E-mail nevalid", -"OpenID Changed" => "OpenID schimbat", -"Invalid request" => "Cerere eronată", "Unable to delete group" => "Nu s-a putut șterge grupul", "Authentication error" => "Eroare de autentificare", "Unable to delete user" => "Nu s-a putut șterge utilizatorul", "Language changed" => "Limba a fost schimbată", +"Invalid request" => "Cerere eronată", "Unable to add user to group %s" => "Nu s-a putut adăuga utilizatorul la grupul %s", "Unable to remove user from group %s" => "Nu s-a putut elimina utilizatorul din grupul %s", "Disable" => "Dezactivați", @@ -18,10 +17,20 @@ "Saving..." => "Salvez...", "__language_name__" => "_language_name_", "Add your App" => "Adaugă aplicația ta", +"More Apps" => "Mai multe aplicații", "Select an App" => "Selectează o aplicație", "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licențiat <span class=\"author\"></span>", +"User Documentation" => "Documentație utilizator", +"Administrator Documentation" => "Documentație administrator", +"Online Documentation" => "Documentație online", +"Forum" => "Forum", +"Bugtracker" => "Urmărire bug-uri", +"Commercial Support" => "Suport comercial", "Clients" => "Clienți", +"Download Desktop Clients" => "Descarcă client desktop", +"Download Android Client" => "Descarcă client Android", +"Download iOS Client" => "Descarcă client iOS", "Password" => "Parolă", "Your password was changed" => "Parola a fost modificată", "Unable to change your password" => "Imposibil de-ați schimbat parola", @@ -34,11 +43,17 @@ "Fill in an email address to enable password recovery" => "Completează o adresă de mail pentru a-ți putea recupera parola", "Language" => "Limba", "Help translate" => "Ajută la traducere", +"WebDAV" => "WebDAV", +"Version" => "Versiunea", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Dezvoltat de the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunitatea ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">codul sursă</a> este licențiat sub <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "Name" => "Nume", "Groups" => "Grupuri", "Create" => "Crează", +"Default Storage" => "Stocare implicită", +"Unlimited" => "Nelimitată", "Other" => "Altele", "Group Admin" => "Grupul Admin ", +"Storage" => "Stocare", +"Default" => "Implicită", "Delete" => "Șterge" ); diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 48965f9a684..5c05f32636a 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Не удалось включить приложение.", "Email saved" => "Email сохранен", "Invalid email" => "Неправильный Email", -"OpenID Changed" => "OpenID изменён", -"Invalid request" => "Неверный запрос", "Unable to delete group" => "Невозможно удалить группу", "Authentication error" => "Ошибка авторизации", "Unable to delete user" => "Невозможно удалить пользователя", "Language changed" => "Язык изменён", +"Invalid request" => "Неверный запрос", "Admins can't remove themself from the admin group" => "Администратор не может удалить сам себя из группы admin", "Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s", "Unable to remove user from group %s" => "Невозможно удалить пользователя из группы %s", @@ -23,7 +22,12 @@ "Select an App" => "Выберите приложение", "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span> лицензия. Автор <span class=\"author\"></span>", +"User Documentation" => "Пользовательская документация", +"Administrator Documentation" => "Документация администратора", +"Online Documentation" => "Online документация", "Forum" => "Форум", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Коммерческая поддержка", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Вы использовали <strong>%s</strong> из доступных <strong>%s</strong>", "Clients" => "Клиенты", "Download Desktop Clients" => "Загрузка приложений для компьютера", @@ -48,7 +52,11 @@ "Name" => "Имя", "Groups" => "Группы", "Create" => "Создать", +"Default Storage" => "Хранилище по-умолчанию", +"Unlimited" => "Неограниченно", "Other" => "Другое", "Group Admin" => "Группа Администраторы", +"Storage" => "Хранилище", +"Default" => "По-умолчанию", "Delete" => "Удалить" ); diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 38b736a5c18..26179eeb329 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Не удалось запустить приложение", "Email saved" => "Email сохранен", "Invalid email" => "Неверный email", -"OpenID Changed" => "OpenID изменен", -"Invalid request" => "Неверный запрос", "Unable to delete group" => "Невозможно удалить группу", "Authentication error" => "Ошибка авторизации", "Unable to delete user" => "Невозможно удалить пользователя", "Language changed" => "Язык изменен", +"Invalid request" => "Неверный запрос", "Admins can't remove themself from the admin group" => "Администраторы не могут удалить сами себя из группы администраторов", "Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s", "Unable to remove user from group %s" => "Невозможно удалить пользователя из группы %s", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 4f4834921e9..45cb9a4a4fb 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -4,12 +4,11 @@ "Could not enable app. " => "යෙදුම සක්රීය කළ නොහැකි විය.", "Email saved" => "වි-තැපෑල සුරකින ලදී", "Invalid email" => "අවලංගු වි-තැපෑල", -"OpenID Changed" => "විවෘත හැඳුනුම නැතහොත් OpenID වෙනස්විය.", -"Invalid request" => "අවලංගු අයදුම", "Unable to delete group" => "කණ්ඩායම මැකීමට නොහැක", "Authentication error" => "සත්යාපන දෝෂයක්", "Unable to delete user" => "පරිශීලකයා මැකීමට නොහැක", "Language changed" => "භාෂාව ාවනස් කිරීම", +"Invalid request" => "අවලංගු අයදුම", "Unable to add user to group %s" => "පරිශීලකයා %s කණ්ඩායමට එකතු කළ නොහැක", "Unable to remove user from group %s" => "පරිශීලකයා %s කණ්ඩායමින් ඉවත් කළ නොහැක", "Disable" => "අක්රිය කරන්න", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index c3cf84f1fe8..ecf1a905008 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Nie je možné zapnúť aplikáciu.", "Email saved" => "Email uložený", "Invalid email" => "Neplatný email", -"OpenID Changed" => "OpenID zmenené", -"Invalid request" => "Neplatná požiadavka", "Unable to delete group" => "Nie je možné odstrániť skupinu", "Authentication error" => "Chyba pri autentifikácii", "Unable to delete user" => "Nie je možné odstrániť používateľa", "Language changed" => "Jazyk zmenený", +"Invalid request" => "Neplatná požiadavka", "Admins can't remove themself from the admin group" => "Administrátori nesmú odstrániť sami seba zo skupiny admin", "Unable to add user to group %s" => "Nie je možné pridať užívateľa do skupiny %s", "Unable to remove user from group %s" => "Nie je možné odstrániť používateľa zo skupiny %s", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index ce12b4e3e22..24bea147993 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Programa ni mogoče omogočiti.", "Email saved" => "Elektronski naslov je shranjen", "Invalid email" => "Neveljaven elektronski naslov", -"OpenID Changed" => "OpenID je bil spremenjen", -"Invalid request" => "Neveljavna zahteva", "Unable to delete group" => "Ni mogoče izbrisati skupine", "Authentication error" => "Napaka overitve", "Unable to delete user" => "Ni mogoče izbrisati uporabnika", "Language changed" => "Jezik je bil spremenjen", +"Invalid request" => "Neveljavna zahteva", "Admins can't remove themself from the admin group" => "Administratorji sebe ne morejo odstraniti iz skupine admin", "Unable to add user to group %s" => "Uporabnika ni mogoče dodati k skupini %s", "Unable to remove user from group %s" => "Uporabnika ni mogoče odstraniti iz skupine %s", @@ -23,8 +22,17 @@ "Select an App" => "Izberite program", "See application page at apps.owncloud.com" => "Obiščite spletno stran programa na apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-z dovoljenjem s strani <span class=\"author\"></span>", +"User Documentation" => "Uporabniška dokumentacija", +"Administrator Documentation" => "Administratorjeva dokumentacija", +"Online Documentation" => "Spletna dokumentacija", +"Forum" => "Forum", +"Bugtracker" => "Sistem za sledenje napakam", +"Commercial Support" => "Komercialna podpora", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Uporabljate <strong>%s</strong> od razpoložljivih <strong>%s</strong>", "Clients" => "Stranka", +"Download Desktop Clients" => "Prenesi namizne odjemalce", +"Download Android Client" => "Prenesi Android odjemalec", +"Download iOS Client" => "Prenesi iOS odjemalec", "Password" => "Geslo", "Your password was changed" => "Vaše geslo je spremenjeno", "Unable to change your password" => "Gesla ni mogoče spremeniti.", @@ -37,11 +45,18 @@ "Fill in an email address to enable password recovery" => "Vpišite vaš elektronski naslov in s tem omogočite obnovitev gesla", "Language" => "Jezik", "Help translate" => "Pomagajte pri prevajanju", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Uporabite ta naslov za povezavo do ownCloud v vašem upravljalniku datotek.", +"Version" => "Različica", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Programski paket razvija <a href=\"http://ownCloud.org/contact\" target=\"_blank\">skupnost ownCloud</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Izvorna koda</a> je objavljena pod pogoji dovoljenja <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Splošno javno dovoljenje Affero\">AGPL</abbr></a>.", "Name" => "Ime", "Groups" => "Skupine", "Create" => "Ustvari", +"Default Storage" => "Privzeta shramba", +"Unlimited" => "Neomejeno", "Other" => "Drugo", "Group Admin" => "Skrbnik skupine", +"Storage" => "Shramba", +"Default" => "Privzeto", "Delete" => "Izbriši" ); diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 9fb495a9ebb..d230adb9275 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Не могу да укључим програм", "Email saved" => "Е-порука сачувана", "Invalid email" => "Неисправна е-адреса", -"OpenID Changed" => "OpenID је измењен", -"Invalid request" => "Неисправан захтев", "Unable to delete group" => "Не могу да уклоним групу", "Authentication error" => "Грешка при аутентификацији", "Unable to delete user" => "Не могу да уклоним корисника", "Language changed" => "Језик је промењен", +"Invalid request" => "Неисправан захтев", "Admins can't remove themself from the admin group" => "Управници не могу себе уклонити из админ групе", "Unable to add user to group %s" => "Не могу да додам корисника у групу %s", "Unable to remove user from group %s" => "Не могу да уклоним корисника из групе %s", diff --git a/settings/l10n/sr@latin.php b/settings/l10n/sr@latin.php index 9ee84bc255a..7677fbcf33c 100644 --- a/settings/l10n/sr@latin.php +++ b/settings/l10n/sr@latin.php @@ -1,8 +1,7 @@ <?php $TRANSLATIONS = array( -"OpenID Changed" => "OpenID je izmenjen", -"Invalid request" => "Neispravan zahtev", "Authentication error" => "Greška pri autentifikaciji", "Language changed" => "Jezik je izmenjen", +"Invalid request" => "Neispravan zahtev", "Select an App" => "Izaberite program", "Clients" => "Klijenti", "Password" => "Lozinka", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 681db2099a1..e99fad96172 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Kunde inte aktivera appen.", "Email saved" => "E-post sparad", "Invalid email" => "Ogiltig e-post", -"OpenID Changed" => "OpenID ändrat", -"Invalid request" => "Ogiltig begäran", "Unable to delete group" => "Kan inte radera grupp", "Authentication error" => "Autentiseringsfel", "Unable to delete user" => "Kan inte radera användare", "Language changed" => "Språk ändrades", +"Invalid request" => "Ogiltig begäran", "Admins can't remove themself from the admin group" => "Administratörer kan inte ta bort sig själva från admingruppen", "Unable to add user to group %s" => "Kan inte lägga till användare i gruppen %s", "Unable to remove user from group %s" => "Kan inte radera användare från gruppen %s", diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index 3b3b1f8dddf..9771e167e4b 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -5,12 +5,11 @@ "Could not enable app. " => "செயலியை இயலுமைப்படுத்த முடியாது", "Email saved" => "மின்னஞ்சல் சேமிக்கப்பட்டது", "Invalid email" => "செல்லுபடியற்ற மின்னஞ்சல்", -"OpenID Changed" => "OpenID மாற்றப்பட்டது", -"Invalid request" => "செல்லுபடியற்ற வேண்டுகோள்", "Unable to delete group" => "குழுவை நீக்க முடியாது", "Authentication error" => "அத்தாட்சிப்படுத்தலில் வழு", "Unable to delete user" => "பயனாளரை நீக்க முடியாது", "Language changed" => "மொழி மாற்றப்பட்டது", +"Invalid request" => "செல்லுபடியற்ற வேண்டுகோள்", "Unable to add user to group %s" => "குழு %s இல் பயனாளரை சேர்க்க முடியாது", "Unable to remove user from group %s" => "குழு %s இலிருந்து பயனாளரை நீக்கமுடியாது", "Disable" => "இயலுமைப்ப", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 558af48df14..f4e6398ae21 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -5,12 +5,11 @@ "Could not enable app. " => "ไม่สามารถเปิดใช้งานแอปได้", "Email saved" => "อีเมลถูกบันทึกแล้ว", "Invalid email" => "อีเมลไม่ถูกต้อง", -"OpenID Changed" => "เปลี่ยนชื่อบัญชี OpenID แล้ว", -"Invalid request" => "คำร้องขอไม่ถูกต้อง", "Unable to delete group" => "ไม่สามารถลบกลุ่มได้", "Authentication error" => "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน", "Unable to delete user" => "ไม่สามารถลบผู้ใช้งานได้", "Language changed" => "เปลี่ยนภาษาเรียบร้อยแล้ว", +"Invalid request" => "คำร้องขอไม่ถูกต้อง", "Unable to add user to group %s" => "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้", "Unable to remove user from group %s" => "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้", "Disable" => "ปิดใช้งาน", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 295dbfab584..f754bb90fcf 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Uygulama devreye alınamadı", "Email saved" => "Eposta kaydedildi", "Invalid email" => "Geçersiz eposta", -"OpenID Changed" => "OpenID Değiştirildi", -"Invalid request" => "Geçersiz istek", "Unable to delete group" => "Grup silinemiyor", "Authentication error" => "Eşleşme hata", "Unable to delete user" => "Kullanıcı silinemiyor", "Language changed" => "Dil değiştirildi", +"Invalid request" => "Geçersiz istek", "Unable to add user to group %s" => "Kullanıcı %s grubuna eklenemiyor", "Disable" => "Etkin değil", "Enable" => "Etkin", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index d6a9e9fa491..19b84edfc78 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Не вдалося активувати програму. ", "Email saved" => "Адресу збережено", "Invalid email" => "Невірна адреса", -"OpenID Changed" => "OpenID змінено", -"Invalid request" => "Помилковий запит", "Unable to delete group" => "Не вдалося видалити групу", "Authentication error" => "Помилка автентифікації", "Unable to delete user" => "Не вдалося видалити користувача", "Language changed" => "Мова змінена", +"Invalid request" => "Помилковий запит", "Admins can't remove themself from the admin group" => "Адміністратор не може видалити себе з групи адмінів", "Unable to add user to group %s" => "Не вдалося додати користувача у групу %s", "Unable to remove user from group %s" => "Не вдалося видалити користувача із групи %s", @@ -53,7 +52,11 @@ "Name" => "Ім'я", "Groups" => "Групи", "Create" => "Створити", +"Default Storage" => "сховище за замовчуванням", +"Unlimited" => "Необмежено", "Other" => "Інше", "Group Admin" => "Адміністратор групи", +"Storage" => "Сховище", +"Default" => "За замовчуванням", "Delete" => "Видалити" ); diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 9651bee1124..2354ba2a16e 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -5,12 +5,11 @@ "Could not enable app. " => "không thể kích hoạt ứng dụng.", "Email saved" => "Lưu email", "Invalid email" => "Email không hợp lệ", -"OpenID Changed" => "Đổi OpenID", -"Invalid request" => "Yêu cầu không hợp lệ", "Unable to delete group" => "Không thể xóa nhóm", "Authentication error" => "Lỗi xác thực", "Unable to delete user" => "Không thể xóa người dùng", "Language changed" => "Ngôn ngữ đã được thay đổi", +"Invalid request" => "Yêu cầu không hợp lệ", "Admins can't remove themself from the admin group" => "Quản trị viên không thể loại bỏ chính họ khỏi nhóm quản lý", "Unable to add user to group %s" => "Không thể thêm người dùng vào nhóm %s", "Unable to remove user from group %s" => "Không thể xóa người dùng từ nhóm %s", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 6afcc1ecd56..b34b20d5aed 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -5,12 +5,11 @@ "Could not enable app. " => "未能启用应用", "Email saved" => "Email 保存了", "Invalid email" => "非法Email", -"OpenID Changed" => "OpenID 改变了", -"Invalid request" => "非法请求", "Unable to delete group" => "未能删除群组", "Authentication error" => "认证错误", "Unable to delete user" => "未能删除用户", "Language changed" => "语言改变了", +"Invalid request" => "非法请求", "Unable to add user to group %s" => "未能添加用户到群组 %s", "Unable to remove user from group %s" => "未能将用户从群组 %s 移除", "Disable" => "禁用", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 00e51d211c4..407177d2ac4 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -5,12 +5,11 @@ "Could not enable app. " => "无法开启App", "Email saved" => "电子邮件已保存", "Invalid email" => "无效的电子邮件", -"OpenID Changed" => "OpenID 已修改", -"Invalid request" => "非法请求", "Unable to delete group" => "无法删除组", "Authentication error" => "认证错误", "Unable to delete user" => "无法删除用户", "Language changed" => "语言已修改", +"Invalid request" => "非法请求", "Admins can't remove themself from the admin group" => "管理员不能将自己移出管理组。", "Unable to add user to group %s" => "无法把用户添加到组 %s", "Unable to remove user from group %s" => "无法从组%s中移除用户", @@ -53,7 +52,11 @@ "Name" => "名称", "Groups" => "组", "Create" => "创建", +"Default Storage" => "默认存储", +"Unlimited" => "无限", "Other" => "其它", "Group Admin" => "组管理员", +"Storage" => "存储", +"Default" => "默认", "Delete" => "删除" ); diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index d25ae4e149c..7681b10affa 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -5,12 +5,11 @@ "Could not enable app. " => "未能啟動此app", "Email saved" => "Email已儲存", "Invalid email" => "無效的email", -"OpenID Changed" => "OpenID 已變更", -"Invalid request" => "無效請求", "Unable to delete group" => "群組刪除錯誤", "Authentication error" => "認證錯誤", "Unable to delete user" => "使用者刪除錯誤", "Language changed" => "語言已變更", +"Invalid request" => "無效請求", "Admins can't remove themself from the admin group" => "管理者帳號無法從管理者群組中移除", "Unable to add user to group %s" => "使用者加入群組%s錯誤", "Unable to remove user from group %s" => "使用者移出群組%s錯誤", @@ -23,8 +22,17 @@ "Select an App" => "選擇一個應用程式", "See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-核准: <span class=\"author\"></span>", +"User Documentation" => "用戶說明文件", +"Administrator Documentation" => "管理者說明文件", +"Online Documentation" => "線上說明文件", +"Forum" => "論壇", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "商用支援", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "您已經使用了 <strong>%s</strong> ,目前可用空間為 <strong>%s</strong>", "Clients" => "客戶", +"Download Desktop Clients" => "下載桌面客戶端", +"Download Android Client" => "下載 Android 客戶端", +"Download iOS Client" => "下載 iOS 客戶端", "Password" => "密碼", "Your password was changed" => "你的密碼已更改", "Unable to change your password" => "無法變更你的密碼", @@ -37,11 +45,18 @@ "Fill in an email address to enable password recovery" => "請填入電子郵件信箱以便回復密碼", "Language" => "語言", "Help translate" => "幫助翻譯", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "在您的檔案管理員中使用這個地址來連線到 ownCloud", +"Version" => "版本", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "由<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud 社區</a>開發,<a href=\"https://github.com/owncloud\" target=\"_blank\">源代碼</a>在<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>許可證下發布。", "Name" => "名稱", "Groups" => "群組", "Create" => "創造", +"Default Storage" => "預設儲存區", +"Unlimited" => "無限制", "Other" => "其他", "Group Admin" => "群組 管理員", +"Storage" => "儲存區", +"Default" => "預設", "Delete" => "刪除" ); diff --git a/settings/routes.php b/settings/routes.php index 8239fe005db..9b5bf809230 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -58,7 +58,5 @@ $this->create('settings_ajax_getlog', '/settings/ajax/getlog.php') ->actionInclude('settings/ajax/getlog.php'); $this->create('settings_ajax_setloglevel', '/settings/ajax/setloglevel.php') ->actionInclude('settings/ajax/setloglevel.php'); - -// apps/user_openid -$this->create('settings_ajax_openid', '/settings/ajax/openid.php') - ->actionInclude('settings/ajax/openid.php'); +$this->create('settings_ajax_setsecurity', '/settings/ajax/setsecurity.php') + ->actionInclude('settings/ajax/setsecurity.php'); diff --git a/settings/settings.php b/settings/settings.php index add94b5b011..1e05452ec4d 100644 --- a/settings/settings.php +++ b/settings/settings.php @@ -6,7 +6,6 @@ */ OC_Util::checkLoggedIn(); -OC_Util::verifyUser(); OC_App::loadApps(); OC_Util::addStyle( 'settings', 'settings' ); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 26335063d4b..0097489743f 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -10,13 +10,13 @@ $levels = array('Debug', 'Info', 'Warning', 'Error', 'Fatal'); // is htaccess working ? if (!$_['htaccessworking']) { - ?> + ?> <fieldset class="personalblock"> - <legend><strong><?php echo $l->t('Security Warning');?></strong></legend> + <legend><strong><?php echo $l->t('Security Warning');?></strong></legend> <span class="securitywarning"> - <?php echo $l->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.'); ?> - </span> + <?php echo $l->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.'); ?> + </span> </fieldset> <?php @@ -24,13 +24,13 @@ if (!$_['htaccessworking']) { // is locale working ? if (!$_['islocaleworking']) { - ?> + ?> <fieldset class="personalblock"> - <legend><strong><?php echo $l->t('Locale not working');?></strong></legend> + <legend><strong><?php echo $l->t('Locale not working');?></strong></legend> - <span class="connectionwarning"> - <?php echo $l->t('This ownCloud server can\'t set system locale to "en_US.UTF-8". 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 en_US.UTF-8.'); ?> - </span> + <span class="connectionwarning"> + <?php echo $l->t('This ownCloud server can\'t set system locale to "en_US.UTF-8". 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 en_US.UTF-8.'); ?> + </span> </fieldset> <?php @@ -38,13 +38,13 @@ if (!$_['islocaleworking']) { // is internet connection working ? if (!$_['internetconnectionworking']) { - ?> + ?> <fieldset class="personalblock"> - <legend><strong><?php echo $l->t('Internet connection not working');?></strong></legend> + <legend><strong><?php echo $l->t('Internet connection not working');?></strong></legend> - <span class="connectionwarning"> - <?php echo $l->t('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.'); ?> - </span> + <span class="connectionwarning"> + <?php echo $l->t('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.'); ?> + </span> </fieldset> <?php @@ -52,125 +52,152 @@ if (!$_['internetconnectionworking']) { ?> <?php foreach ($_['forms'] as $form) { - echo $form; + echo $form; } ;?> <fieldset class="personalblock" id="backgroundjobs"> - <legend><strong><?php echo $l->t('Cron');?></strong></legend> - <table class="nostyle"> - <tr> - <td> - <input type="radio" name="mode" value="ajax" - id="backgroundjobs_ajax" <?php if ($_['backgroundjobs_mode'] == "ajax") { - echo 'checked="checked"'; - } ?>> - <label for="backgroundjobs_ajax">AJAX</label><br/> - <em><?php echo $l->t("Execute one task with each page loaded"); ?></em> - </td> - </tr> - <tr> - <td> - <input type="radio" name="mode" value="webcron" - id="backgroundjobs_webcron" <?php if ($_['backgroundjobs_mode'] == "webcron") { - echo 'checked="checked"'; - } ?>> - <label for="backgroundjobs_webcron">Webcron</label><br/> - <em><?php echo $l->t("cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http."); ?></em> - </td> - </tr> - <tr> - <td> - <input type="radio" name="mode" value="cron" - id="backgroundjobs_cron" <?php if ($_['backgroundjobs_mode'] == "cron") { - echo 'checked="checked"'; - } ?>> - <label for="backgroundjobs_cron">Cron</label><br/> - <em><?php echo $l->t("Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute."); ?></em> - </td> - </tr> - </table> + <legend><strong><?php echo $l->t('Cron');?></strong></legend> + <table class="nostyle"> + <tr> + <td> + <input type="radio" name="mode" value="ajax" + id="backgroundjobs_ajax" <?php if ($_['backgroundjobs_mode'] == "ajax") { + echo 'checked="checked"'; + } ?>> + <label for="backgroundjobs_ajax">AJAX</label><br/> + <em><?php echo $l->t("Execute one task with each page loaded"); ?></em> + </td> + </tr> + <tr> + <td> + <input type="radio" name="mode" value="webcron" + id="backgroundjobs_webcron" <?php if ($_['backgroundjobs_mode'] == "webcron") { + echo 'checked="checked"'; + } ?>> + <label for="backgroundjobs_webcron">Webcron</label><br/> + <em><?php echo $l->t("cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http."); ?></em> + </td> + </tr> + <tr> + <td> + <input type="radio" name="mode" value="cron" + id="backgroundjobs_cron" <?php if ($_['backgroundjobs_mode'] == "cron") { + echo 'checked="checked"'; + } ?>> + <label for="backgroundjobs_cron">Cron</label><br/> + <em><?php echo $l->t("Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute."); ?></em> + </td> + </tr> + </table> </fieldset> <fieldset class="personalblock" id="shareAPI"> - <legend><strong><?php echo $l->t('Sharing');?></strong></legend> - <table class="shareAPI nostyle"> - <tr> - <td id="enable"> - <input type="checkbox" name="shareapi_enabled" id="shareAPIEnabled" - value="1" <?php if ($_['shareAPIEnabled'] == 'yes') echo 'checked="checked"'; ?> /> - <label for="shareAPIEnabled"><?php echo $l->t('Enable Share API');?></label><br/> - <em><?php echo $l->t('Allow apps to use the Share API'); ?></em> - </td> - </tr> - <tr> - <td <?php if ($_['shareAPIEnabled'] == 'no') echo 'style="display:none"';?>> - <input type="checkbox" name="shareapi_allow_links" id="allowLinks" - value="1" <?php if ($_['allowLinks'] == 'yes') echo 'checked="checked"'; ?> /> - <label for="allowLinks"><?php echo $l->t('Allow links');?></label><br/> - <em><?php echo $l->t('Allow users to share items to the public with links'); ?></em> - </td> - </tr> - <tr> - <td <?php if ($_['shareAPIEnabled'] == 'no') echo 'style="display:none"';?>> - <input type="checkbox" name="shareapi_allow_resharing" id="allowResharing" - value="1" <?php if ($_['allowResharing'] == 'yes') echo 'checked="checked"'; ?> /> - <label for="allowResharing"><?php echo $l->t('Allow resharing');?></label><br/> - <em><?php echo $l->t('Allow users to share items shared with them again'); ?></em> - </td> - </tr> - <tr> - <td <?php if ($_['shareAPIEnabled'] == 'no') echo 'style="display:none"';?>> - <input type="radio" name="shareapi_share_policy" id="sharePolicyGlobal" - value="global" <?php if ($_['sharePolicy'] == 'global') echo 'checked="checked"'; ?> /> - <label for="sharePolicyGlobal"><?php echo $l->t('Allow users to share with anyone'); ?></label><br/> - <input type="radio" name="shareapi_share_policy" id="sharePolicyGroupsOnly" - value="groups_only" <?php if ($_['sharePolicy'] == 'groups_only') echo 'checked="checked"'; ?> /> - <label for="sharePolicyGroupsOnly"><?php echo $l->t('Allow users to only share with users in their groups');?></label><br/> - </td> - </tr> - </table> + <legend><strong><?php echo $l->t('Sharing');?></strong></legend> + <table class="shareAPI nostyle"> + <tr> + <td id="enable"> + <input type="checkbox" name="shareapi_enabled" id="shareAPIEnabled" + value="1" <?php if ($_['shareAPIEnabled'] == 'yes') echo 'checked="checked"'; ?> /> + <label for="shareAPIEnabled"><?php echo $l->t('Enable Share API');?></label><br/> + <em><?php echo $l->t('Allow apps to use the Share API'); ?></em> + </td> + </tr> + <tr> + <td <?php if ($_['shareAPIEnabled'] == 'no') echo 'style="display:none"';?>> + <input type="checkbox" name="shareapi_allow_links" id="allowLinks" + value="1" <?php if ($_['allowLinks'] == 'yes') echo 'checked="checked"'; ?> /> + <label for="allowLinks"><?php echo $l->t('Allow links');?></label><br/> + <em><?php echo $l->t('Allow users to share items to the public with links'); ?></em> + </td> + </tr> + <tr> + <td <?php if ($_['shareAPIEnabled'] == 'no') echo 'style="display:none"';?>> + <input type="checkbox" name="shareapi_allow_resharing" id="allowResharing" + value="1" <?php if ($_['allowResharing'] == 'yes') echo 'checked="checked"'; ?> /> + <label for="allowResharing"><?php echo $l->t('Allow resharing');?></label><br/> + <em><?php echo $l->t('Allow users to share items shared with them again'); ?></em> + </td> + </tr> + <tr> + <td <?php if ($_['shareAPIEnabled'] == 'no') echo 'style="display:none"';?>> + <input type="radio" name="shareapi_share_policy" id="sharePolicyGlobal" + value="global" <?php if ($_['sharePolicy'] == 'global') echo 'checked="checked"'; ?> /> + <label for="sharePolicyGlobal"><?php echo $l->t('Allow users to share with anyone'); ?></label><br/> + <input type="radio" name="shareapi_share_policy" id="sharePolicyGroupsOnly" + value="groups_only" <?php if ($_['sharePolicy'] == 'groups_only') echo 'checked="checked"'; ?> /> + <label for="sharePolicyGroupsOnly"><?php echo $l->t('Allow users to only share with users in their groups');?></label><br/> + </td> + </tr> + </table> +</fieldset> + +<fieldset class="personalblock" id="security"> + <legend><strong><?php echo $l->t('Security');?></strong></legend> + <table class="nostyle"> + <tr> + <td id="enable"> + <input type="checkbox" name="forcessl" id="enforceHTTPSEnabled" + <?php if ($_['enforceHTTPSEnabled']) { + echo 'checked="checked" '; + echo 'value="false"'; + } else { + echo 'value="true"'; + } + ?> + <?php if (!$_['isConnectedViaHTTPS']) echo 'disabled'; ?> /> + <label for="forcessl"><?php echo $l->t('Enforce HTTPS');?></label><br/> + <em><?php echo $l->t('Enforces the clients to connect to ownCloud via an encrypted connection.'); ?></em> + <?php if (!$_['isConnectedViaHTTPS']) { + echo "<br/><em>"; + echo $l->t('Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement.'); + echo "</em>"; + } + ?> + </td> + </tr> + </table> </fieldset> <fieldset class="personalblock"> - <legend><strong><?php echo $l->t('Log');?></strong></legend> - <?php echo $l->t('Log level');?> <select name='loglevel' id='loglevel'> - <option value='<?php echo $_['loglevel']?>'><?php echo $levels[$_['loglevel']]?></option> - <?php for ($i = 0; $i < 5; $i++): - if ($i != $_['loglevel']):?> - <option value='<?php echo $i?>'><?php echo $levels[$i]?></option> - <?php endif; + <legend><strong><?php echo $l->t('Log');?></strong></legend> + <?php echo $l->t('Log level');?> <select name='loglevel' id='loglevel'> + <option value='<?php echo $_['loglevel']?>'><?php echo $levels[$_['loglevel']]?></option> + <?php for ($i = 0; $i < 5; $i++): + if ($i != $_['loglevel']):?> + <option value='<?php echo $i?>'><?php echo $levels[$i]?></option> + <?php endif; endfor;?> </select> - <table id='log'> - <?php foreach ($_['entries'] as $entry): ?> - <tr> - <td> - <?php echo $levels[$entry->level];?> - </td> - <td> - <?php echo $entry->app;?> - </td> - <td> - <?php echo $entry->message;?> - </td> - <td> - <?php echo OC_Util::formatDate($entry->time);?> - </td> - </tr> - <?php endforeach;?> - </table> - <?php if ($_['entriesremain']): ?> - <input id='moreLog' type='button' value='<?php echo $l->t('More');?>...'></input> - <?php endif; ?> + <table id='log'> + <?php foreach ($_['entries'] as $entry): ?> + <tr> + <td> + <?php echo $levels[$entry->level];?> + </td> + <td> + <?php echo $entry->app;?> + </td> + <td> + <?php echo $entry->message;?> + </td> + <td> + <?php echo OC_Util::formatDate($entry->time);?> + </td> + </tr> + <?php endforeach;?> + </table> + <?php if ($_['entriesremain']): ?> + <input id='moreLog' type='button' value='<?php echo $l->t('More');?>...'> + <?php endif; ?> </fieldset> <fieldset class="personalblock"> - <legend><strong><?php echo $l->t('Version');?></strong></legend> - <strong>ownCloud</strong> <?php echo(OC_Util::getVersionString()); ?> <?php echo(OC_Util::getEditionString()); ?> - (<?php echo(OC_Updater::ShowUpdatingHint()); ?>)<br/> - <?php echo $l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.'); ?> + <legend><strong><?php echo $l->t('Version');?></strong></legend> + <strong>ownCloud</strong> <?php echo(OC_Util::getVersionString()); ?> <?php echo(OC_Util::getEditionString()); ?> + (<?php echo(OC_Updater::ShowUpdatingHint()); ?>)<br/> + <?php echo $l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.'); ?> </fieldset> diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 38e2af8a51a..0490f63fb67 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -15,7 +15,7 @@ <li <?php if($app['active']) echo 'class="active"'?> data-id="<?php echo $app['id'] ?>" <?php if ( isset( $app['ocs_id'] ) ) { echo "data-id-ocs=\"{$app['ocs_id']}\""; } ?> data-type="<?php echo $app['internal'] ? 'internal' : 'external' ?>" data-installed="1"> <a class="app<?php if(!$app['internal']) echo ' externalapp' ?>" href="?appid=<?php echo $app['id'] ?>"><?php echo htmlentities($app['name']) ?></a> - <script type="application/javascript"> + <script> appData_<?php echo $app['id'] ?>=<?php OC_JSON::encodedPrint($app, false) ?>; </script> <?php if(!$app['internal']) echo '<small class="externalapp list">3rd party</small>' ?> @@ -29,7 +29,7 @@ <p class="description"></p> <img src="" class="preview" /> <p class="appslink hidden"><a href="#" target="_blank"><?php echo $l->t('See application page at apps.owncloud.com');?></a></p> - <p class="license hidden"><?php echo $l->t('<span class="licence"></span>-licensed by <span class="author"></span>');?></p> + <p class="license hidden"><?php echo $l->t('<span class="licence"></span>-licensed by <span class="author"></span>');?></p> <input class="enable hidden" type="submit" /> </div> </div> diff --git a/settings/templates/help.php b/settings/templates/help.php index b697905f7ef..8f51cd87017 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -1,14 +1,14 @@ <div id="controls"> - <?php if($_['admin']) { ?> + <?php if($_['admin']) { ?> <a class="button newquestion <?php echo($_['style1']); ?>" href="<?php echo($_['url1']); ?>"><?php echo $l->t( 'User Documentation' ); ?></a> - <a class="button newquestion <?php echo($_['style2']); ?>" href="<?php echo($_['url2']); ?>"><?php echo $l->t( 'Administrator Documentation' ); ?></a> + <a class="button newquestion <?php echo($_['style2']); ?>" href="<?php echo($_['url2']); ?>"><?php echo $l->t( 'Administrator Documentation' ); ?></a> <?php } ?> - <a class="button newquestion" href="http://owncloud.org/support" target="_blank"><?php echo $l->t( 'Online Documentation' ); ?></a> - <a class="button newquestion" href="http://forum.owncloud.org" target="_blank"><?php echo $l->t( 'Forum' ); ?></a> - <?php if($_['admin']) { ?> + <a class="button newquestion" href="http://owncloud.org/support" target="_blank"><?php echo $l->t( 'Online Documentation' ); ?></a> + <a class="button newquestion" href="http://forum.owncloud.org" target="_blank"><?php echo $l->t( 'Forum' ); ?></a> + <?php if($_['admin']) { ?> <a class="button newquestion" href="https://github.com/owncloud/core/issues" target="_blank"><?php echo $l->t( 'Bugtracker' ); ?></a> <?php } ?> - <a class="button newquestion" href="http://owncloud.com" target="_blank"><?php echo $l->t( 'Commercial Support' ); ?></a> + <a class="button newquestion" href="http://owncloud.com" target="_blank"><?php echo $l->t( 'Commercial Support' ); ?></a> </div> <br /><br /> <iframe src="<?php echo($_['url']); ?>" width="100%" id="ifm" ></iframe> @@ -18,14 +18,14 @@ <!-- function pageY(elem) { - return elem.offsetParent ? (elem.offsetTop + pageY(elem.offsetParent)) : elem.offsetTop; + return elem.offsetParent ? (elem.offsetTop + pageY(elem.offsetParent)) : elem.offsetTop; } var buffer = 5; //scroll bar buffer function resizeIframe() { - var height = document.documentElement.clientHeight; - height -= pageY(document.getElementById('ifm'))+ buffer ; - height = (height < 0) ? 0 : height; - document.getElementById('ifm').style.height = height + 'px'; + var height = document.documentElement.clientHeight; + height -= pageY(document.getElementById('ifm'))+ buffer ; + height = (height < 0) ? 0 : height; + document.getElementById('ifm').style.height = height + 'px'; } document.getElementById('ifm').onload=resizeIframe; diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 35eb0ef5e9a..0e1677bdea8 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -62,7 +62,7 @@ <fieldset class="personalblock"> <legend><strong><?php echo $l->t('Version');?></strong></legend> <strong>ownCloud</strong> <?php echo(OC_Util::getVersionString()); ?> <?php echo(OC_Util::getEditionString()); ?> <br /> - <?php echo $l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.'); ?> + <?php echo $l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.'); ?> </fieldset> diff --git a/settings/templates/users.php b/settings/templates/users.php index e8bf9edf604..6cbbca24049 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -36,11 +36,11 @@ var isadmin = <?php echo $_['isadmin']?'true':'false'; ?>; <div class="quota-select-wrapper"> <?php if((bool) $_['isadmin']): ?> <select class='quota'> - <option - <?php if($_['default_quota']=='none') echo 'selected="selected"';?> - value='none'> - <?php echo $l->t('Unlimited');?> - </option> + <option + <?php if($_['default_quota']=='none') echo 'selected="selected"';?> + value='none'> + <?php echo $l->t('Unlimited');?> + </option> <?php foreach($_['quota_preset'] as $preset):?> <?php if($preset!='default'):?> <option @@ -127,16 +127,16 @@ var isadmin = <?php echo $_['isadmin']?'true':'false'; ?>; <td class="quota"> <div class="quota-select-wrapper"> <select class='quota-user'> - <option - <?php if($user['quota']=='default') echo 'selected="selected"';?> - value='default'> - <?php echo $l->t('Default');?> - </option> - <option - <?php if($user['quota']=='none') echo 'selected="selected"';?> - value='none'> - <?php echo $l->t('Unlimited');?> - </option> + <option + <?php if($user['quota']=='default') echo 'selected="selected"';?> + value='default'> + <?php echo $l->t('Default');?> + </option> + <option + <?php if($user['quota']=='none') echo 'selected="selected"';?> + value='none'> + <?php echo $l->t('Unlimited');?> + </option> <?php foreach($_['quota_preset'] as $preset):?> <option <?php if($user['quota']==$preset) echo 'selected="selected"';?> diff --git a/settings/users.php b/settings/users.php index 07a7620d3c0..668d974693a 100644 --- a/settings/users.php +++ b/settings/users.php @@ -18,7 +18,8 @@ OC_App::setActiveNavigationEntry( 'core_users' ); $users = array(); $groups = array(); -$isadmin = OC_Group::inGroup(OC_User::getUser(), 'admin')?true:false; +$isadmin = OC_User::isAdminUser(OC_User::getUser()); + if($isadmin) { $accessiblegroups = OC_Group::getGroups(); $accessibleusers = OC_User::getUsers('', 30); @@ -33,7 +34,7 @@ if($isadmin) { $quotaPreset=OC_Appconfig::getValue('files', 'quota_preset', '1 GB, 5 GB, 10 GB'); $quotaPreset=explode(',', $quotaPreset); foreach($quotaPreset as &$preset) { - $preset=trim($preset); + $preset=trim($preset); } $quotaPreset=array_diff($quotaPreset, array('default', 'none')); @@ -42,14 +43,14 @@ $defaultQuotaIsUserDefined=array_search($defaultQuota, $quotaPreset)===false && // load users and quota foreach($accessibleusers as $i) { - $quota=OC_Preferences::getValue($i, 'files', 'quota', 'default'); - $isQuotaUserDefined=array_search($quota, $quotaPreset)===false && array_search($quota, array('none', 'default'))===false; + $quota=OC_Preferences::getValue($i, 'files', 'quota', 'default'); + $isQuotaUserDefined=array_search($quota, $quotaPreset)===false && array_search($quota, array('none', 'default'))===false; $users[] = array( "name" => $i, "groups" => join( ", ", /*array_intersect(*/OC_Group::getUserGroups($i)/*, OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()))*/), - 'quota'=>$quota, - 'isQuotaUserDefined'=>$isQuotaUserDefined, + 'quota'=>$quota, + 'isQuotaUserDefined'=>$isQuotaUserDefined, 'subadmin'=>implode(', ', OC_SubAdmin::getSubAdminsGroups($i))); } diff --git a/tests/lib/filestorage/commontest.php b/tests/lib/filestorage/commontest.php index 89e83589e5d..6719fcff4e8 100644 --- a/tests/lib/filestorage/commontest.php +++ b/tests/lib/filestorage/commontest.php @@ -38,4 +38,3 @@ class Test_Filestorage_CommonTest extends Test_FileStorage { } } -?>
\ No newline at end of file diff --git a/tests/lib/filestorage/local.php b/tests/lib/filestorage/local.php index f68fb69b97f..d7d71e8f372 100644 --- a/tests/lib/filestorage/local.php +++ b/tests/lib/filestorage/local.php @@ -35,4 +35,3 @@ class Test_Filestorage_Local extends Test_FileStorage { } } -?>
\ No newline at end of file |