diff options
622 files changed, 6456 insertions, 6831 deletions
diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index 6532b76df21..293543c547f 100644 --- a/apps/files/ajax/delete.php +++ b/apps/files/ajax/delete.php @@ -21,8 +21,20 @@ foreach($files as $file) { } } +// updated max file size after upload +$l=new OC_L10N('files'); +$maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); +$maxHumanFilesize=OCP\Util::humanFileSize($maxUploadFilesize); +$maxHumanFilesize=$l->t('Upload') . ' max. '.$maxHumanFilesize; + if($success) { - OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $files ))); + OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $files, + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize + ))); } else { - OCP\JSON::error(array("data" => array( "message" => "Could not delete:\n" . $filesWithError ))); + OCP\JSON::error(array("data" => array( "message" => "Could not delete:\n" . $filesWithError, + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize + ))); } diff --git a/apps/files/ajax/getstoragestats.php b/apps/files/ajax/getstoragestats.php new file mode 100644 index 00000000000..e55e346ed67 --- /dev/null +++ b/apps/files/ajax/getstoragestats.php @@ -0,0 +1,16 @@ +<?php + +// only need filesystem apps +$RUNTIME_APPTYPES = array('filesystem'); + +OCP\JSON::checkLoggedIn(); + +$l=new OC_L10N('files'); +$maxUploadFilesize = OCP\Util::maxUploadFilesize($dir); +$maxHumanFilesize = OCP\Util::humanFileSize($maxUploadFilesize); +$maxHumanFilesize = $l->t('Upload') . ' max. ' . $maxHumanFilesize; + +// send back json +OCP\JSON::success(array('data' => array('uploadMaxFilesize' => $maxUploadFilesize, + 'maxHumanFilesize' => $maxHumanFilesize +))); 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 2a2d935da6c..93398019608 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -10,8 +10,17 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); $l=OC_L10N::get('files'); +// current max upload size +$l=new OC_L10N('files'); +$maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); +$maxHumanFilesize=OCP\Util::humanFileSize($maxUploadFilesize); +$maxHumanFilesize=$l->t('Upload') . ' max. '.$maxHumanFilesize; + if (!isset($_FILES['files'])) { - OCP\JSON::error(array('data' => array( 'message' => $l->t( 'No file was uploaded. Unknown error' )))); + OCP\JSON::error(array('data' => array( 'message' => $l->t( 'No file was uploaded. Unknown error' ), + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize + ))); exit(); } @@ -28,7 +37,10 @@ foreach ($_FILES['files']['error'] as $error) { UPLOAD_ERR_NO_TMP_DIR=>$l->t('Missing a temporary folder'), UPLOAD_ERR_CANT_WRITE=>$l->t('Failed to write to disk'), ); - OCP\JSON::error(array('data' => array( 'message' => $errors[$error] ))); + OCP\JSON::error(array('data' => array( 'message' => $errors[$error], + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize + ))); exit(); } } @@ -42,7 +54,9 @@ foreach($files['size'] as $size) { $totalSize+=$size; } if($totalSize>OC_Filesystem::free_space($dir)) { - OCP\JSON::error(array('data' => array( 'message' => $l->t( 'Not enough space available' )))); + OCP\JSON::error(array('data' => array( 'message' => $l->t( 'Not enough space available' ), + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize))); exit(); } @@ -56,11 +70,19 @@ if(strpos($dir, '..') === false) { if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { $meta = OC_FileCache::get($target); $id = OC_FileCache::getId($target); + // updated max file size after upload + $maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); + $maxHumanFilesize=OCP\Util::humanFileSize($maxUploadFilesize); + $maxHumanFilesize=$l->t('Upload') . ' max. '.$maxHumanFilesize; + $result[]=array( 'status' => 'success', 'mime'=>$meta['mimetype'], 'size'=>$meta['size'], 'id'=>$id, - 'name'=>basename($target)); + 'name'=>basename($target), + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize + ); } } OCP\JSON::encodedPrint($result); @@ -69,4 +91,7 @@ if(strpos($dir, '..') === false) { $error=$l->t( 'Invalid directory.' ); } -OCP\JSON::error(array('data' => array('message' => $error ))); +OCP\JSON::error(array('data' => array('message' => $error, + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize +))); diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 36a1e5c954b..0c97b009b88 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -23,7 +23,7 @@ #new>ul>li>p { cursor:pointer; } #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 { @@ -35,7 +35,7 @@ } .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; diff --git a/apps/files/index.php b/apps/files/index.php index b64bde44cc0..1c4b7fbd497 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -28,6 +28,7 @@ OCP\User::checkLoggedIn(); OCP\Util::addStyle('files', 'files'); OCP\Util::addscript('files', 'jquery.iframe-transport'); OCP\Util::addscript('files', 'jquery.fileupload'); +OCP\Util::addscript('files', 'jquery-visibility'); OCP\Util::addscript('files', 'files'); OCP\Util::addscript('files', 'filelist'); OCP\Util::addscript('files', 'fileactions'); @@ -38,36 +39,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 @@ -79,23 +80,17 @@ $breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', ''); $breadcrumbNav->assign('breadcrumb', $breadcrumb, false); $breadcrumbNav->assign('baseURL', OCP\Util::linkTo('files', 'index.php') . '?dir=', false); -$upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize')); -$post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size')); -$maxUploadFilesize = min($upload_max_filesize, $post_max_size); - -$freeSpace = OC_Filesystem::free_space($dir); -$freeSpace = max($freeSpace, 0); -$maxUploadFilesize = min($maxUploadFilesize, $freeSpace); +$maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); $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/files.js b/apps/files/js/files.js index bb298431e84..0488062dbca 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -26,6 +26,23 @@ Files={ }); procesSelection(); }, + updateMaxUploadFilesize:function(response) { + if(response == undefined) { + return; + } + if(response.data !== undefined && response.data.uploadMaxFilesize !== undefined) { + $('#max_upload').val(response.data.uploadMaxFilesize); + $('#data-upload-form a').attr('original-title', response.data.maxHumanFilesize); + } + if(response[0] == undefined) { + return; + } + if(response[0].uploadMaxFilesize !== undefined) { + $('#max_upload').val(response[0].uploadMaxFilesize); + $('#data-upload-form a').attr('original-title', response[0].maxHumanFilesize); + } + + }, isFileNameValid:function (name) { if (name === '.') { $('#notification').text(t('files', '\'.\' is an invalid file name.')); @@ -52,7 +69,7 @@ Files={ } }; $(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'))); @@ -87,8 +104,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; @@ -130,6 +147,7 @@ $(document).ready(function() { var permissions = $(this).parent().parent().data('permissions'); var action=FileActions.getDefault(mime,type, permissions); if(action){ + event.preventDefault(); action(filename); } } @@ -316,6 +334,7 @@ $(document).ready(function() { $('#notification').text(t('files', response.data.message)); $('#notification').fadeIn(); } + Files.updateMaxUploadFilesize(response); var file=response[0]; // TODO: this doesn't work if the file name has been changed server side delete uploadingFiles[dirName][file.name]; @@ -368,6 +387,8 @@ $(document).ready(function() { .success(function(result, textStatus, jqXHR) { var response; response=jQuery.parseJSON(result); + Files.updateMaxUploadFilesize(response); + if(response[0] != undefined && response[0].status == 'success') { var file=response[0]; delete uploadingFiles[file.name]; @@ -401,6 +422,7 @@ $(document).ready(function() { data.submit().success(function(data, status) { // in safari data is a string response = jQuery.parseJSON(typeof data === 'string' ? data : data[0].body.innerText); + Files.updateMaxUploadFilesize(response); if(response[0] != undefined && response[0].status == 'success') { var file=response[0]; delete uploadingFiles[file.name]; @@ -711,6 +733,32 @@ $(document).ready(function() { }); resizeBreadcrumbs(true); + + // file space size sync + function update_storage_statistics() { + $.getJSON(OC.filePath('files','ajax','getstoragestats.php'),function(response) { + Files.updateMaxUploadFilesize(response); + }); + } + + // start on load - we ask the server every 5 minutes + var update_storage_statistics_interval = 5*60*1000; + var update_storage_statistics_interval_id = setInterval(update_storage_statistics, update_storage_statistics_interval); + + // Use jquery-visibility to de-/re-activate file stats sync + if ($.support.pageVisibility) { + $(document).on({ + 'show.visibility': function() { + if (!update_storage_statistics_interval_id) { + update_storage_statistics_interval_id = setInterval(update_storage_statistics, update_storage_statistics_interval); + } + }, + 'hide.visibility': function() { + clearInterval(update_storage_statistics_interval_id); + update_storage_statistics_interval_id = 0; + } + }); + } }); function scanFiles(force,dir){ @@ -740,6 +788,7 @@ scanFiles.scanning=false; function boolOperationFinished(data, callback) { result = jQuery.parseJSON(data.responseText); + Files.updateMaxUploadFilesize(result); if(result.status == 'success'){ callback.call(); } else { diff --git a/apps/files/js/jquery-visibility.js b/apps/files/js/jquery-visibility.js new file mode 100644 index 00000000000..a824bf68730 --- /dev/null +++ b/apps/files/js/jquery-visibility.js @@ -0,0 +1,32 @@ +/*! http://mths.be/visibility v1.0.5 by @mathias */ +(function (window, document, $, undefined) { + + var prefix, + property, +// In Opera, `'onfocusin' in document == true`, hence the extra `hasFocus` check to detect IE-like behavior + eventName = 'onfocusin' in document && 'hasFocus' in document ? 'focusin focusout' : 'focus blur', + prefixes = ['', 'moz', 'ms', 'o', 'webkit'], + $support = $.support, + $event = $.event; + + while ((property = prefix = prefixes.pop()) != undefined) { + property = (prefix ? prefix + 'H' : 'h') + 'idden'; + if ($support.pageVisibility = typeof document[property] == 'boolean') { + eventName = prefix + 'visibilitychange'; + break; + } + } + + $(/blur$/.test(eventName) ? window : document).on(eventName, function (event) { + var type = event.type, + originalEvent = event.originalEvent, + toElement = originalEvent.toElement; +// If it’s a `{focusin,focusout}` event (IE), `fromElement` and `toElement` should both be `null` or `undefined`; +// else, the page visibility hasn’t changed, but the user just clicked somewhere in the doc. +// In IE9, we need to check the `relatedTarget` property instead. + if (!/^focus./.test(type) || (toElement == undefined && originalEvent.fromElement == undefined && originalEvent.relatedTarget == undefined)) { + $event.trigger((property && document[property] || /^(?:blur|focusout)$/.test(type) ? 'hide' : 'show') + '.visibility'); + } + }); + +}(this, document, jQuery)); diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 3c1ac538091..b7aab6e0a82 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Upload" => "Αποστολή", +"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:", @@ -7,6 +11,8 @@ "No file was uploaded" => "Κανένα αρχείο δεν στάλθηκε", "Missing a temporary folder" => "Λείπει ο προσωρινός φάκελος", "Failed to write to disk" => "Αποτυχία εγγραφής στο δίσκο", +"Not enough space available" => "Δεν υπάρχει αρκετός διαθέσιμος χώρος", +"Invalid directory." => "Μη έγκυρος φάκελος.", "Files" => "Αρχεία", "Unshare" => "Διακοπή κοινής χρήσης", "Delete" => "Διαγραφή", @@ -20,6 +26,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 bytes", @@ -31,6 +39,7 @@ "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" => "Όνομα", @@ -52,7 +61,6 @@ "Text file" => "Αρχείο κειμένου", "Folder" => "Φάκελος", "From link" => "Από σύνδεσμο", -"Upload" => "Αποστολή", "Cancel upload" => "Ακύρωση αποστολής", "Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!", "Download" => "Λήψη", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 6863f701e65..650a3149e4f 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -1,4 +1,7 @@ <?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:", @@ -22,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", @@ -33,6 +38,7 @@ "Upload cancelled." => "La subida fue cancelada", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.", "URL cannot be empty." => "La URL no puede estar vacía", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud", "{count} files scanned" => "{count} archivos escaneados", "error while scanning" => "error mientras se escaneaba", "Name" => "Nombre", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 5bd30e95d17..c15066163cf 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -1,4 +1,7 @@ <?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", @@ -22,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", @@ -33,6 +38,7 @@ "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.", "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/nl.php b/apps/files/l10n/nl.php index 77219abcf20..48c4ac74c2b 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -1,4 +1,7 @@ <?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:", @@ -35,6 +38,7 @@ "Upload cancelled." => "Uploaden geannuleerd.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", "URL cannot be empty." => "URL kan niet leeg zijn.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud", "{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 b96048cf002..226dae896c2 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -1,4 +1,7 @@ <?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: ", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index c34a341e53f..afa41da5212 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -37,6 +37,7 @@ "Upload cancelled." => "Încărcare anulată.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", "URL cannot be empty." => "Adresa URL nu poate fi goală.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Invalid folder name. Usage of 'Shared' is reserved by Ownclou", "{count} files scanned" => "{count} fisiere scanate", "error while scanning" => "eroare la scanarea", "Name" => "Nume", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 0b26a4b174f..124bb2c3b6c 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -1,4 +1,7 @@ <?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所规定的值", @@ -7,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" => "删除", @@ -20,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 字节", @@ -31,6 +38,7 @@ "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" => "名称", 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/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/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 6c5bc579c30..920aefc12de 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -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/public.php b/apps/files_sharing/public.php index 487b9e79961..efd977a1b6a 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -66,12 +66,12 @@ 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 @@ -81,7 +81,7 @@ if (isset($_GET['t'])) { $tmpl->printPage(); exit(); } - + //mount filesystem of file owner OC_Util::setupFS($fileOwner); } @@ -104,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); @@ -159,7 +159,7 @@ if ($linkItem) { $tmpl->printPage(); exit(); } - + } else { // Check if item id is set in session if (!isset($_SESSION['public_link_authenticated']) 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 index 98b5f4113ae..6ecf12d0b00 100644 --- a/apps/files_versions/l10n/bg_BG.php +++ b/apps/files_versions/l10n/bg_BG.php @@ -1,6 +1,4 @@ <?php $TRANSLATIONS = array( "History" => "История", -"Versions" => "Версии", -"This will delete all existing backup versions of your files" => "Това действие ще изтрие всички налични архивни версии на Вашите файлове", "Enable" => "Включено" ); diff --git a/apps/files_versions/l10n/bn_BD.php b/apps/files_versions/l10n/bn_BD.php index 88349342fa9..dffa4d79a06 100644 --- a/apps/files_versions/l10n/bn_BD.php +++ b/apps/files_versions/l10n/bn_BD.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/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/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..1e816018386 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.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>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.", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Warnung:</b> Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend 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", +"One Base DN per line" => "Ein Base DN pro Zeile", "You can specify Base DN for users and groups in the Advanced tab" => "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren", "User DN" => "Benutzer-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." => "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lassen Sie DN und Passwort leer.", @@ -20,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ohne Platzhalter, z.B.: \"objectClass=posixGroup\"", "Port" => "Port", "Base User Tree" => "Basis-Benutzerbaum", +"One User Base DN per line" => "Ein Benutzer Base DN pro Zeile", "Base Group Tree" => "Basis-Gruppenbaum", +"One Group Base DN per line" => "Ein Gruppen Base DN pro Zeile", "Group-Member association" => "Assoziation zwischen Gruppe und Benutzer", "Use TLS" => "Nutze TLS", "Do not use it for SSL connections, it will fail." => "Verwenden Sie dies nicht für SSL-Verbindungen, es wird fehlschlagen.", 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 0b1340d4397..331bf8699f4 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.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://" => "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 ae05efcd27f..d60521c4a02 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.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>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.", -"<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 é necesario e non está instalado, a infraestrutura non funcionará. Consulte co administrador do sistema para instalalo.", "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", 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 577afcef1c9..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", 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 37ac3d1bda5..c0d09b5c3c1 100644 --- a/apps/user_ldap/l10n/ko.php +++ b/apps/user_ldap/l10n/ko.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을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. 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 index 773e7f7eb76..5366552efae 100644 --- a/apps/user_webdavauth/l10n/bn_BD.php +++ b/apps/user_webdavauth/l10n/bn_BD.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 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." +"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/fr.php b/apps/user_webdavauth/l10n/fr.php index 557a22e6c82..339931c7cee 100644 --- a/apps/user_webdavauth/l10n/fr.php +++ b/apps/user_webdavauth/l10n/fr.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://" => "URL : http://" ); diff --git a/apps/user_webdavauth/l10n/gl.php b/apps/user_webdavauth/l10n/gl.php index fa81db333d4..a6b8355c074 100644 --- a/apps/user_webdavauth/l10n/gl.php +++ b/apps/user_webdavauth/l10n/gl.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"WebDAV Authentication" => "Autenticación 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á as credenciais do usuario a este URL, http 401 e http 403 interpretanse como credenciais incorrectas e todos os outros códigos 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." => "ownCloud enviará as credenciais do usuario a esta URL. Este conector comproba a resposta e interpretará os códigos de estado 401 e 403 como credenciais non válidas, e todas as outras respostas como credenciais válidas." ); 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 a806df750f7..245a5101341 100644 --- a/apps/user_webdavauth/l10n/ko.php +++ b/apps/user_webdavauth/l10n/ko.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/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 8f4effc81a1..245a5101341 100644 --- a/apps/user_webdavauth/l10n/sl.php +++ b/apps/user_webdavauth/l10n/sl.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 bo poslal uporabniška poverila temu URL naslovu. Pri tem bo interpretiral http 401 in http 403 odgovor kot spodletelo avtentikacijo ter vse ostale http odgovore kot uspešne." +"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/config/config.sample.php b/config/config.sample.php index b1655d02830..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" => "", @@ -129,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/css/styles.css b/core/css/styles.css index 496320561f8..7771fd52b9e 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -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; } diff --git a/core/js/js.js b/core/js/js.js index 95889ac8a27..23ace89f4e3 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -504,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"); } /** @@ -519,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{ diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 221ea8aebb1..38450f8d54f 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -99,8 +99,5 @@ "remember" => "تذكر", "Log in" => "أدخل", "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/bn_BD.php b/core/l10n/bn_BD.php index 60e23e4c16c..333e4bf0be5 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -121,7 +121,5 @@ "Log in" => "প্রবেশ", "prev" => "পূর্ববর্তী", "next" => "পরবর্তী", -"Updating ownCloud to version %s, this may take a while." => "%s ভার্সনে ownCloud পরিবর্ধন করা হচ্ছে, এজন্য কিছু সময় প্রয়োজন।", -"Security Warning!" => "নিরাপত্তাবিষয়ক সতর্কবাণী", -"Verify" => "যাচাই কর" +"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 8a186bfc54e..e66bad25e43 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -127,8 +127,5 @@ "Log in" => "Inici de sessió", "prev" => "anterior", "next" => "següent", -"Updating ownCloud to version %s, this may take a while." => "S'està actualitzant ownCloud a la versió %s, pot trigar una estona.", -"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 4d2803261b6..7a766bd7176 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -127,8 +127,5 @@ "Log in" => "Přihlásit", "prev" => "předchozí", "next" => "následující", -"Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat.", -"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 26cc6a5e08e..e8155c298c0 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -126,8 +126,5 @@ "remember" => "husk", "Log in" => "Log ind", "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 76f1379e21e..89846301a58 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -127,8 +127,5 @@ "Log in" => "Einloggen", "prev" => "Zurück", "next" => "Weiter", -"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.", -"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 2eb8758215f..d62b000c0ab 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -127,8 +127,5 @@ "Log in" => "Einloggen", "prev" => "Zurück", "next" => "Weiter", -"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.", -"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 88c169ace7a..c029b01fd9c 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -127,7 +127,5 @@ "Log in" => "Είσοδος", "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 0cbe7d33be6..0319eeef2d4 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -122,8 +122,5 @@ "remember" => "memori", "Log in" => "Ensaluti", "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 2cc604f590c..4f8f1936c7f 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -127,8 +127,5 @@ "Log in" => "Entrar", "prev" => "anterior", "next" => "siguiente", -"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo.", -"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 48b8177573b..374a679260b 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -127,7 +127,5 @@ "Log in" => "Entrar", "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 226c0d27e80..b79dd4761e7 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -102,7 +102,5 @@ "remember" => "pea meeles", "Log in" => "Logi sisse", "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 becd4d83b66..1239ee86034 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -126,8 +126,5 @@ "remember" => "gogoratu", "Log in" => "Hasi saioa", "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/fi_FI.php b/core/l10n/fi_FI.php index 3d3bd93845f..751293e1fd5 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -5,7 +5,9 @@ "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", @@ -31,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", @@ -115,8 +120,5 @@ "Log in" => "Kirjaudu sisään", "prev" => "edellinen", "next" => "seuraava", -"Updating ownCloud to version %s, this may take a while." => "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken.", -"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 8cbf5f45adb..39269e43b5d 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -127,8 +127,5 @@ "Log in" => "Connexion", "prev" => "précédent", "next" => "suivant", -"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.", -"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 c23b9995e1b..2642debb288 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -127,7 +127,5 @@ "Log in" => "Conectar", "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." => "Verifique o seu contrasinal.<br/>Por motivos de seguranza pode que ocasionalmente se lle pregunte de novo polo seu 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 bb6ac48dd92..59eb3ae14d4 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -127,8 +127,5 @@ "Log in" => "כניסה", "prev" => "הקודם", "next" => "הבא", -"Updating ownCloud to version %s, this may take a while." => "מעדכן את ownCloud אל גרסא %s, זה עלול לקחת זמן מה.", -"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/hu_HU.php b/core/l10n/hu_HU.php index fa02064f3d2..49b686423ab 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -126,8 +126,5 @@ "remember" => "emlékezzen", "Log in" => "Bejelentkezés", "prev" => "előző", -"next" => "következő", -"Security Warning!" => "Biztonsági figyelmeztetés!", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Kérjük írja be a jelszavát! <br/>Biztonsági okokból néha a bejelentkezést követően is ellenőrzésképpen meg kell adnia a jelszavát.", -"Verify" => "Ellenőrzés" +"next" => "következő" ); diff --git a/core/l10n/id.php b/core/l10n/id.php index d0ba6c694fb..ee5fad95217 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -101,8 +101,5 @@ "remember" => "selalu login", "Log in" => "Masuk", "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 0b2b2ce3e9a..e810eb359fd 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -127,8 +127,5 @@ "Log in" => "<strong>Skrá inn</strong>", "prev" => "fyrra", "next" => "næsta", -"Updating ownCloud to version %s, this may take a while." => "Uppfæri ownCloud í útgáfu %s, það gæti tekið smá stund.", -"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 d868150346a..89b6a7952a9 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -127,8 +127,5 @@ "Log in" => "Accedi", "prev" => "precedente", "next" => "successivo", -"Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, potrebbe richiedere del tempo.", -"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 5efbe05bc56..7d4baf94583 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -127,8 +127,5 @@ "Log in" => "ログイン", "prev" => "前", "next" => "次", -"Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。", -"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 b002b42cb59..aafdacab4c6 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -99,7 +99,5 @@ "remember" => "დამახსოვრება", "Log in" => "შესვლა", "prev" => "წინა", -"next" => "შემდეგი", -"Security Warning!" => "უსაფრთხოების გაფრთხილება!", -"Verify" => "შემოწმება" +"next" => "შემდეგი" ); diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 0faa19865f9..3db5a501173 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -127,8 +127,5 @@ "Log in" => "로그인", "prev" => "이전", "next" => "다음", -"Updating ownCloud to version %s, this may take a while." => "ownCloud 를 버젼 %s로 업데이트 하는 중, 시간이 소요됩니다.", -"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/lt_LT.php b/core/l10n/lt_LT.php index 19826b26c16..ec15c646191 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -105,8 +105,5 @@ "remember" => "prisiminti", "Log in" => "Prisijungti", "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/mk.php b/core/l10n/mk.php index 94c9ee581b1..d8fa16d44f3 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -126,8 +126,5 @@ "remember" => "запамти", "Log in" => "Најава", "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/nb_NO.php b/core/l10n/nb_NO.php index 45ee77e3c17..d985e454b7c 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -101,7 +101,5 @@ "remember" => "husk", "Log in" => "Logg inn", "prev" => "forrige", -"next" => "neste", -"Security Warning!" => "Sikkerhetsadvarsel!", -"Verify" => "Verifiser" +"next" => "neste" ); diff --git a/core/l10n/nl.php b/core/l10n/nl.php index b3a43523a76..739d8181d6f 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -127,8 +127,5 @@ "Log in" => "Meld je aan", "prev" => "vorige", "next" => "volgende", -"Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren.", -"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/pl.php b/core/l10n/pl.php index 159e5b9caed..3324040209b 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -127,8 +127,5 @@ "Log in" => "Zaloguj", "prev" => "wstecz", "next" => "naprzód", -"Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s, może to potrwać chwilę.", -"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 a5e21734c3e..3b119650268 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -118,8 +118,5 @@ "remember" => "lembrete", "Log in" => "Log in", "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 b896dda4003..6e3a558986c 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -127,8 +127,5 @@ "Log in" => "Entrar", "prev" => "anterior", "next" => "seguinte", -"Updating ownCloud to version %s, this may take a while." => "A Actualizar o ownCloud para a versão %s, esta operação pode demorar.", -"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 3c47ef0f8ca..c3434706df8 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -110,8 +110,5 @@ "remember" => "amintește", "Log in" => "Autentificare", "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 9a72986aea4..7434d6af7f8 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -127,8 +127,5 @@ "Log in" => "Войти", "prev" => "пред", "next" => "след", -"Updating ownCloud to version %s, this may take a while." => "Производится обновление ownCloud до версии %s. Это может занять некоторое время.", -"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 400aa3996e4..84bd8f93156 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -126,8 +126,5 @@ "remember" => "запомнить", "Log in" => "Войти", "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/sk_SK.php b/core/l10n/sk_SK.php index f9d1aa14e79..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.", @@ -119,7 +127,5 @@ "Log in" => "Prihlásiť sa", "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 795c5a89952..b2c924d412e 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -126,8 +126,5 @@ "remember" => "Zapomni si me", "Log in" => "Prijava", "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 1679b9e6ddd..6b64d1957e7 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -118,8 +118,5 @@ "remember" => "упамти", "Log in" => "Пријава", "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/sv.php b/core/l10n/sv.php index 6bb62613048..70a9871be26 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -127,8 +127,5 @@ "Log in" => "Logga in", "prev" => "föregående", "next" => "nästa", -"Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund.", -"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 ec5f142ecfb..65cfbbf965d 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -118,8 +118,5 @@ "remember" => "ஞாபகப்படுத்துக", "Log in" => "புகுபதிகை", "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 7cbc39dd1e0..183997e4c94 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -118,8 +118,5 @@ "remember" => "จำรหัสผ่าน", "Log in" => "เข้าสู่ระบบ", "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 1020b61f9b9..284a4d97130 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -105,7 +105,5 @@ "remember" => "hatırla", "Log in" => "Giriş yap", "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 c088db6d419..88e18d3eb28 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -127,7 +127,5 @@ "Log in" => "Вхід", "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 b27600491df..c827dc038e6 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -118,8 +118,5 @@ "remember" => "ghi nhớ", "Log in" => "Đăng nhập", "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 1f6d5198703..74dd9ad8a3f 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -107,8 +107,5 @@ "remember" => "备忘", "Log in" => "登陆", "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 82e80bd000e..6c098e211d3 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -125,8 +125,5 @@ "remember" => "记住", "Log in" => "登录", "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 de91ba0bd83..7537c764451 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -127,8 +127,5 @@ "Log in" => "登入", "prev" => "上一頁", "next" => "下一頁", -"Updating ownCloud to version %s, this may take a while." => "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。", -"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/templates/installation.php b/core/templates/installation.php index 3128c4f2e70..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): ?> 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/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/l10n/ar/core.po b/l10n/ar/core.po index 74243a0cff6..c1497f76a41 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -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 "كلمة السر" @@ -566,17 +565,3 @@ msgstr "التالي" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "تحقيق" 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/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 e00f6c9d1d3..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -211,7 +211,6 @@ msgid "Password protect" msgstr "" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Парола" @@ -568,17 +567,3 @@ msgstr "" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index 0b1e6c05270..be466434b93 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 20:49+0000\n" -"Last-Translator: Stefan Ilivanov <ilivanov@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: 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" @@ -18,22 +18,10 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\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/bg_BG/lib.po b/l10n/bg_BG/lib.po index 516eee347ab..5e238d11362 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 20:43+0000\n" -"Last-Translator: Stefan Ilivanov <ilivanov@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: 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" @@ -58,11 +58,15 @@ msgstr "Назад към файловете" 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/bg_BG/settings.po b/l10n/bg_BG/settings.po index c660334fdfc..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -62,7 +62,7 @@ msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "" +msgstr "Невалидна заявка" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index e45d6efc2fb..0ec1c50339e 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" "Content-Type: text/plain; charset=UTF-8\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/bg_BG/user_webdavauth.po b/l10n/bg_BG/user_webdavauth.po index 05f8507380b..c541db398fd 100644 --- a/l10n/bg_BG/user_webdavauth.po +++ b/l10n/bg_BG/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-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,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 index 4fd2a014324..8c24eb72e22 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -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 "কূটশব্দ" @@ -565,17 +564,3 @@ msgstr "পরবর্তী" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "%s ভার্সনে ownCloud পরিবর্ধন করা হচ্ছে, এজন্য কিছু সময় প্রয়োজন।" - -#: 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 "যাচাই কর" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 51865f07105..2af1e4efdd9 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-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" +"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" @@ -17,22 +17,10 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\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/bn_BD/lib.po b/l10n/bn_BD/lib.po index 0c8865693c2..da90c84c976 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 10:27+0000\n" -"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.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: 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" @@ -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 "%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 "" -#: 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/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 75f4261e13f..68b329db2f1 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 10:27+0000\n" -"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.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: 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" @@ -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 "ভিত্তি 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 নির্ধারণ করতে পারেন।" @@ -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/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po index 99d191a99b1..6bf9079f19b 100644 --- a/l10n/bn_BD/user_webdavauth.po +++ b/l10n/bn_BD/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 10:07+0000\n" -"Last-Translator: Shubhra Paul <paul_shubhra@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: 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" @@ -18,13 +18,17 @@ msgstr "" "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 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 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/ca/core.po b/l10n/ca/core.po index 94ad3349ff3..a9940eccf88 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -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" @@ -566,17 +565,3 @@ msgstr "següent" #, 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." - -#: 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" 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/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 e6bfba8798c..66b36315f8e 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -211,7 +211,6 @@ msgid "Password protect" msgstr "Chránit heslem" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Heslo" @@ -568,17 +567,3 @@ msgstr "následující" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." - -#: 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" 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/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 2c249dec308..421994c63c8 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -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" @@ -572,17 +571,3 @@ msgstr "næste" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: 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" 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/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 4eecaa3b813..2210b4b29e2 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -23,8 +23,8 @@ 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" +"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" @@ -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" @@ -580,17 +579,3 @@ msgstr "Weiter" #, 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." - -#: 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" 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/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 9fea0180068..9f9775ff12e 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -23,9 +23,9 @@ 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" +"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" @@ -99,55 +99,55 @@ msgstr "Fehler beim Entfernen von %s von den Favoriten." msgid "Settings" msgstr "Einstellungen" -#: js/js.js:711 +#: js/js.js:706 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:712 +#: js/js.js:707 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:713 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:714 +#: js/js.js:709 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:715 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:716 +#: js/js.js:711 msgid "today" msgstr "Heute" -#: js/js.js:717 +#: js/js.js:712 msgid "yesterday" msgstr "Gestern" -#: js/js.js:718 +#: js/js.js:713 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:719 +#: js/js.js:714 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:720 +#: js/js.js:715 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:721 +#: js/js.js:716 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:722 +#: js/js.js:717 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:723 +#: js/js.js:718 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" @@ -580,17 +579,3 @@ msgstr "Weiter" #, 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." - -#: 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" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index ca3e44187b1..f2fce2c57ad 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -27,9 +27,9 @@ 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 13:29+0000\n" -"Last-Translator: thiel <markus.thiel@desico.de>\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" @@ -160,84 +160,84 @@ msgid "" "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: js/files.js:186 +#: 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:224 +#: 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:224 +#: js/files.js:225 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:241 +#: js/files.js:242 msgid "Close" msgstr "Schließen" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:261 js/files.js:377 js/files.js:410 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:280 +#: js/files.js:281 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:284 js/files.js:339 js/files.js:354 msgid "{count} files uploading" msgstr "{count} Dateien wurden hochgeladen" -#: js/files.js:357 js/files.js:393 +#: js/files.js:358 js/files.js:394 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:464 +#: 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:537 +#: js/files.js:538 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/files.js:543 +#: 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:727 +#: js/files.js:728 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:735 +#: js/files.js:736 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:809 templates/index.php:64 msgid "Name" msgstr "Name" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:810 templates/index.php:75 msgid "Size" msgstr "Größe" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:811 templates/index.php:77 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:829 +#: js/files.js:830 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:831 +#: js/files.js:832 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:839 +#: js/files.js:840 msgid "1 file" msgstr "1 Datei" -#: js/files.js:841 +#: js/files.js:842 msgid "{count} files" msgstr "{count} Dateien" 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/user_ldap.po b/l10n/de_DE/user_ldap.po index 843b2e80f4d..440d30ce2bc 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.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. # <blobbyjj@ymail.com>, 2012. # I Robot <thomas.mueller@tmit.eu>, 2012. # Maurice Preuß <>, 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-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-19 00:04+0100\n" +"PO-Revision-Date: 2013-01-18 21:26+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" @@ -33,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. 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 "<b>Warnung:</b> Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren." #: templates/settings.php:15 msgid "Host" @@ -51,6 +52,10 @@ msgid "Base DN" msgstr "Basis-DN" #: templates/settings.php:16 +msgid "One Base DN per line" +msgstr "Ein Base DN pro Zeile" + +#: 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 +126,18 @@ msgstr "Port" msgid "Base User Tree" msgstr "Basis-Benutzerbaum" +#: templates/settings.php:25 +msgid "One User Base DN per line" +msgstr "Ein Benutzer Base DN pro Zeile" + #: templates/settings.php:26 msgid "Base Group Tree" msgstr "Basis-Gruppenbaum" +#: templates/settings.php:26 +msgid "One Group Base DN per line" +msgstr "Ein Gruppen Base DN pro Zeile" + #: 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 aabd937409d..2d01d1e91e1 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -3,15 +3,15 @@ # 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: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-03 16:07+0000\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" @@ -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 2c0853779a1..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: 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" +"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:711 +#: js/js.js:706 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:712 +#: js/js.js:707 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:713 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:714 +#: js/js.js:709 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:715 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:716 +#: js/js.js:711 msgid "today" msgstr "σήμερα" -#: js/js.js:717 +#: js/js.js:712 msgid "yesterday" msgstr "χτες" -#: js/js.js:718 +#: js/js.js:713 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:719 +#: js/js.js:714 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:720 +#: js/js.js:715 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:721 +#: js/js.js:716 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:722 +#: js/js.js:717 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:723 +#: 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 "Συνθηματικό" @@ -570,18 +570,4 @@ msgstr "επόμενο" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -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 "Επαλήθευση" +msgstr "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο." diff --git a/l10n/el/files.po b/l10n/el/files.po index 6dbee32887a..4d6efbc7d56 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -4,7 +4,7 @@ # # Translators: # Dimitris M. <monopatis@gmail.com>, 2012. -# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012. +# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012-2013. # Efstathios Iosifidis <iosifidis@opensuse.org>, 2012. # Konstantinos Tzanidis <tzanidis@gmail.com>, 2012. # Marios Bekatoros <>, 2012. @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-19 00:04+0100\n" +"PO-Revision-Date: 2013-01-17 23:34+0000\n" +"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\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,62 +24,67 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Αποστολή" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Αδυναμία μετακίνησης του %s" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "Αδυναμία μετονομασίας αρχείου" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 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:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" -msgstr "" +msgstr "Δεν υπάρχει αρκετός διαθέσιμος χώρος" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." -msgstr "" +msgstr "Μη έγκυρος φάκελος." #: appinfo/app.php:10 msgid "Files" @@ -133,98 +138,98 @@ msgstr "μη διαμοιρασμένα {files}" msgid "deleted {files}" msgstr "διαγραμμένα {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' είναι μη έγκυρο όνομα αρχείου." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." -msgstr "" +msgstr "Το όνομα αρχείου δεν πρέπει να είναι κενό." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." -#: js/files.js:186 +#: js/files.js:204 msgid "generating ZIP-file, it may take some time." msgstr "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά." -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Σφάλμα Αποστολής" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Κλείσιμο" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Εκκρεμεί" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} αρχεία ανεβαίνουν" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "Η URL δεν πρέπει να είναι κενή." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} αρχεία ανιχνεύτηκαν" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "σφάλμα κατά την ανίχνευση" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Όνομα" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} αρχεία" @@ -276,10 +281,6 @@ msgstr "Φάκελος" msgid "From link" msgstr "Από σύνδεσμο" -#: templates/index.php:18 -msgid "Upload" -msgstr "Αποστολή" - #: templates/index.php:41 msgid "Cancel upload" 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 d20f3ef368c..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: 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" +"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" @@ -251,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" @@ -267,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 c400f1a7d6e..27efa5db63f 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -210,7 +210,6 @@ msgid "Password protect" msgstr "Protekti per pasvorto" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Pasvorto" @@ -567,17 +566,3 @@ msgstr "jena" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: 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" 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/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 9428f0db049..099b2839a0f 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -18,8 +18,8 @@ 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" +"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" @@ -218,7 +218,6 @@ msgid "Password protect" msgstr "Protegido por contraseña" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Contraseña" @@ -575,17 +574,3 @@ msgstr "siguiente" #, 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." - -#: 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" 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/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 7eea07cc00b..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -209,7 +209,6 @@ msgid "Password protect" msgstr "Proteger con contraseña " #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Contraseña" @@ -565,18 +564,4 @@ msgstr "siguiente" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" - -#: 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" +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 d3f2c7ebc15..3aaf7073134 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -4,14 +4,14 @@ # # Translators: # Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2012-2013. -# <claudio.tessone@gmail.com>, 2012. +# <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: 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" +"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" @@ -22,16 +22,16 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +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 "" +msgstr "No se pudo mover %s " #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "No fue posible cambiar el nombre al archivo" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" @@ -130,11 +130,11 @@ msgstr "{files} borrados" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' es un nombre de archivo inválido." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "El nombre del archivo no puede quedar vacío." #: js/files.js:45 msgid "" @@ -142,84 +142,84 @@ msgid "" "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." -#: js/files.js:186 +#: 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:224 +#: 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:224 +#: js/files.js:225 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:241 +#: js/files.js:242 msgid "Close" msgstr "Cerrar" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:261 js/files.js:377 js/files.js:410 msgid "Pending" msgstr "Pendiente" -#: js/files.js:280 +#: js/files.js:281 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:284 js/files.js:339 js/files.js:354 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:357 js/files.js:393 +#: js/files.js:358 js/files.js:394 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/files.js:464 +#: 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:537 +#: js/files.js:538 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía" -#: js/files.js:543 +#: js/files.js:544 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud" -#: js/files.js:727 +#: js/files.js:728 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:735 +#: js/files.js:736 msgid "error while scanning" msgstr "error mientras se escaneaba" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:809 templates/index.php:64 msgid "Name" msgstr "Nombre" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:810 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:811 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:829 +#: js/files.js:830 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:831 +#: js/files.js:832 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:839 +#: js/files.js:840 msgid "1 file" msgstr "1 archivo" -#: js/files.js:841 +#: js/files.js:842 msgid "{count} files" msgstr "{count} archivos" 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/user_ldap.po b/l10n/es_AR/user_ldap.po index 4ceff26caa1..a3b11101f5b 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 05:53+0000\n" -"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,9 +28,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" @@ -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 "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"" @@ -116,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 929be2741d6..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -208,7 +208,6 @@ msgid "Password protect" msgstr "Parooliga kaitstud" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Parool" @@ -565,17 +564,3 @@ msgstr "järgm" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: 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." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Kinnita" 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/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 ace5f9e642e..b461e4928b6 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -210,7 +210,6 @@ msgid "Password protect" msgstr "Babestu pasahitzarekin" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Pasahitza" @@ -567,17 +566,3 @@ msgstr "hurrengoa" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: 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" 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/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 80b891d17b2..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "گذرواژه" @@ -565,17 +564,3 @@ msgstr "بعدی" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 cdcdcda1522..7aa46f13517 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-13 00:08+0100\n" -"PO-Revision-Date: 2013-01-12 16:33+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" @@ -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,7 +84,7 @@ 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" @@ -195,15 +195,15 @@ 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" @@ -214,7 +214,6 @@ msgid "Password protect" msgstr "Suojaa salasanalla" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Salasana" @@ -571,17 +570,3 @@ msgstr "seuraava" #, 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." - -#: 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" 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/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 ae26555f77a..512141ccb68 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -18,8 +18,8 @@ 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" +"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" @@ -218,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" @@ -575,17 +574,3 @@ msgstr "suivant" #, 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." - -#: 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" 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/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 d99b5eb69dc..ec81f76c54d 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-13 00:08+0100\n" -"PO-Revision-Date: 2013-01-12 17:09+0000\n" -"Last-Translator: mishka <mishka.lazzlo@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" @@ -22,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." -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 "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 343ce267135..de2454855f0 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -5,13 +5,13 @@ # Translators: # antiparvos <marcoslansgarza@gmail.com>, 2012. # <mbouzada@gmail.com>, 2012. -# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012. +# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -210,7 +210,6 @@ msgid "Password protect" msgstr "Protexido con contrasinais" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Contrasinal" @@ -566,18 +565,4 @@ msgstr "seguinte" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" - -#: 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 "Verifique o seu contrasinal.<br/>Por motivos de seguranza pode que ocasionalmente se lle pregunte de novo polo seu contrasinal." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Verificar" +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 2390a546dbc..2387a6610f3 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -4,14 +4,14 @@ # # Translators: # antiparvos <marcoslansgarza@gmail.com>, 2012-2013. -# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012. +# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-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" +"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" @@ -22,16 +22,16 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Non se moveu %s - Xa existe un ficheiro con ese nome." #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Non se puido mover %s" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "Non se pode renomear o ficheiro" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" @@ -130,11 +130,11 @@ msgstr "{files} eliminados" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' é un nonme de ficheiro non válido" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "O nome de ficheiro non pode estar baldeiro" #: js/files.js:45 msgid "" @@ -185,7 +185,7 @@ msgstr "URL non pode quedar baleiro." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Nome de cartafol non válido. O uso de 'Shared' está reservado por Owncloud" #: js/files.js:727 msgid "{count} files scanned" 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/user_ldap.po b/l10n/gl/user_ldap.po index 024f611c187..66d3c446382 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" -"PO-Revision-Date: 2012-12-31 08:48+0000\n" -"Last-Translator: mbouzada <mbouzada@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: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,9 +28,9 @@ msgstr "<b>Aviso:</b> Os aplicativos user_ldap e user_webdavauth son incompatíb #: 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 é necesario e non está instalado, a infraestrutura non funcionará. Consulte co administrador do sistema para instalalo." +"<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 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»" @@ -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" diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po index 5630c82c50e..2004bb9b3c3 100644 --- a/l10n/gl/user_webdavauth.po +++ b/l10n/gl/user_webdavauth.po @@ -5,13 +5,14 @@ # Translators: # <mbouzada@gmail.com>, 2012. # Miguel Branco, 2012. +# Xosé M. Lamas <correo.xmgz@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" -"PO-Revision-Date: 2012-12-31 08:22+0000\n" -"Last-Translator: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2013-01-19 00:04+0100\n" +"PO-Revision-Date: 2013-01-18 06:15+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,13 +20,17 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "Autenticación 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á as credenciais do usuario a este URL, http 401 e http 403 interpretanse como credenciais incorrectas e todos os outros códigos 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 "ownCloud enviará as credenciais do usuario a esta URL. Este conector comproba a resposta e interpretará os códigos de estado 401 e 403 como credenciais non válidas, e todas as outras respostas como credenciais válidas." diff --git a/l10n/he/core.po b/l10n/he/core.po index a573946604b..78ebe7d5f2d 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -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 "ססמה" @@ -569,17 +568,3 @@ msgstr "הבא" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "מעדכן את ownCloud אל גרסא %s, זה עלול לקחת זמן מה." - -#: 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 "אימות" 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/user_ldap.po b/l10n/he/user_ldap.po index 72b23d85881..ec42e5a0854 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 10:25+0000\n" -"Last-Translator: Gilad Naaman <gilad.doom@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: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\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/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 a8ef62c1352..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "पासवर्ड" @@ -566,17 +565,3 @@ msgstr "अगला" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 236b80b891d..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -211,7 +211,6 @@ msgid "Password protect" msgstr "Zaštiti lozinkom" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Lozinka" @@ -568,17 +567,3 @@ msgstr "sljedeći" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 index e74a69fb8d0..d2bfb48813a 100644 --- a/l10n/hu/core.po +++ b/l10n/hu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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 (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" @@ -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 "" @@ -564,17 +563,3 @@ msgstr "" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" diff --git a/l10n/hu/files_versions.po b/l10n/hu/files_versions.po index 8fb51cf6202..6f8e34c98c3 100644 --- a/l10n/hu/files_versions.po +++ b/l10n/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: 2013-01-03 00:04+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: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,10 @@ msgstr "" "Language: 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 "" - #: 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/hu/lib.po b/l10n/hu/lib.po index 0dc080f7db0..dc349f094e9 100644 --- a/l10n/hu/lib.po +++ b/l10n/hu/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+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: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,27 +17,27 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 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 "" @@ -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/hu/user_ldap.po b/l10n/hu/user_ldap.po index e2abecc29af..2c265cccc0e 100644 --- a/l10n/hu/user_ldap.po +++ b/l10n/hu/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" @@ -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/hu/user_webdavauth.po b/l10n/hu/user_webdavauth.po index d6235e0472c..87b7d322df8 100644 --- a/l10n/hu/user_webdavauth.po +++ b/l10n/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: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-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" @@ -17,13 +17,17 @@ msgstr "" "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 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_HU/core.po b/l10n/hu_HU/core.po index fa290171a2f..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -210,7 +210,6 @@ msgid "Password protect" 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ó (tetszőleges)" @@ -567,17 +566,3 @@ msgstr "következő" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "Biztonsági figyelmeztetés!" - -#: templates/verify.php:6 -msgid "" -"Please verify your password. <br/>For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "Kérjük írja be a jelszavát! <br/>Biztonsági okokból néha a bejelentkezést követően is ellenőrzésképpen meg kell adnia a jelszavát." - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Ellenőrzés" 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/user_ldap.po b/l10n/hu_HU/user_ldap.po index 3e8274293c3..7f79a7f3275 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 16:35+0000\n" -"Last-Translator: gyeben <gyonkibendeguz@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" @@ -27,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" @@ -45,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" @@ -115,10 +119,18 @@ msgstr "Port" 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 1973b2c0d96..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "Contrasigno" @@ -565,17 +564,3 @@ msgstr "prox" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 4ae22894b17..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -211,7 +211,6 @@ msgid "Password protect" msgstr "lindungi dengan kata kunci" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Password" @@ -568,17 +567,3 @@ msgstr "selanjutnya" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: 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" 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/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 d07f7133071..a575a9992a8 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -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ð" @@ -566,17 +565,3 @@ msgstr "næsta" #, 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." - -#: 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" 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/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 9191a81e2d2..5db447c37b6 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -212,7 +212,6 @@ msgid "Password protect" msgstr "Proteggi con password" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Password" @@ -569,17 +568,3 @@ msgstr "successivo" #, 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." - -#: 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" 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 95df71ce194..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: 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" +"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" @@ -259,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 5915df8dc20..e9ba6cfa4a5 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -210,7 +210,6 @@ msgid "Password protect" msgstr "パスワード保護" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "パスワード" @@ -567,17 +566,3 @@ msgstr "次" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。" - -#: 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 "確認" 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..8dca4957997 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -4,13 +4,14 @@ # # Translators: # Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. +# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 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 00:37+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n" +"POT-Creation-Date: 2013-01-19 00:04+0100\n" +"PO-Revision-Date: 2013-01-18 08:12+0000\n" +"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +19,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 +87,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/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 d1a73ee1366..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "პაროლი" @@ -565,17 +564,3 @@ msgstr "შემდეგი" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "შემოწმება" 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/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 b64937e17c9..5e2b5617dd6 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -211,7 +211,6 @@ msgid "Password protect" msgstr "암호 보호" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "암호" @@ -568,17 +567,3 @@ msgstr "다음" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "ownCloud 를 버젼 %s로 업데이트 하는 중, 시간이 소요됩니다." - -#: 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 "확인" 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/user_ldap.po b/l10n/ko/user_ldap.po index f4012dc7305..53b9f3b081f 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 09:58+0000\n" -"Last-Translator: aoiob4305 <aoiob4305@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: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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 "" #: 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 "고급 탭에서 사용자 및 그룹에 대한 기본 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/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index 7baa17ed715..bd135598c7f 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 10:31+0000\n" -"Last-Translator: aoiob4305 <aoiob4305@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: 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,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 "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/ku_IQ/core.po b/l10n/ku_IQ/core.po index 1362878bd67..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "وشەی تێپەربو" @@ -565,17 +564,3 @@ msgstr "دواتر" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 b8f03766595..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "Passwuert" @@ -565,17 +564,3 @@ msgstr "weider" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 d920fe7b476..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -209,7 +209,6 @@ msgid "Password protect" msgstr "Apsaugotas slaptažodžiu" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Slaptažodis" @@ -566,17 +565,3 @@ msgstr "kitas" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: 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" 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/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 6294f8854c9..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "Parole" @@ -565,17 +564,3 @@ msgstr "nākamā" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 dc83a622e0c..2442222918c 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -210,7 +210,6 @@ msgid "Password protect" msgstr "Заштити со лозинка" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Лозинка" @@ -567,17 +566,3 @@ msgstr "следно" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "Потврди" 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/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 fcd9385d072..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -210,7 +210,6 @@ msgid "Password protect" msgstr "" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Kata laluan" @@ -567,17 +566,3 @@ msgstr "seterus" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 ae9bd903ac4..6a652e8cea5 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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 Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -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" @@ -571,17 +570,3 @@ msgstr "neste" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: 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." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Verifiser" 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/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 e22773d2369..bc83b48cd57 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -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" @@ -578,17 +577,3 @@ msgstr "volgende" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Updaten ownCloud naar versie %s, dit kan even duren." - -#: 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" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 9471312dac3..69d52caaea3 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-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" +"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" @@ -31,16 +31,16 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +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 "" +msgstr "Kon %s niet verplaatsen" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "Kan bestand niet hernoemen" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" @@ -151,84 +151,84 @@ msgid "" "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: js/files.js:186 +#: 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:224 +#: 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:224 +#: js/files.js:225 msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:241 +#: js/files.js:242 msgid "Close" msgstr "Sluit" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:261 js/files.js:377 js/files.js:410 msgid "Pending" msgstr "Wachten" -#: js/files.js:280 +#: js/files.js:281 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: 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:357 js/files.js:393 +#: js/files.js:358 js/files.js:394 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:464 +#: 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:537 +#: js/files.js:538 msgid "URL cannot be empty." msgstr "URL kan niet leeg zijn." -#: js/files.js:543 +#: js/files.js:544 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" -#: js/files.js:727 +#: js/files.js:728 msgid "{count} files scanned" msgstr "{count} bestanden gescanned" -#: js/files.js:735 +#: js/files.js:736 msgid "error while scanning" msgstr "Fout tijdens het scannen" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:809 templates/index.php:64 msgid "Name" msgstr "Naam" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:810 templates/index.php:75 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:811 templates/index.php:77 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:829 +#: js/files.js:830 msgid "1 folder" msgstr "1 map" -#: js/files.js:831 +#: js/files.js:832 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:839 +#: js/files.js:840 msgid "1 file" msgstr "1 bestand" -#: js/files.js:841 +#: js/files.js:842 msgid "{count} files" msgstr "{count} bestanden" 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..2ae038b9e40 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot <meneer@tken.net>, 2013. # <lenny@weijl.org>, 2012. # Richard Bos <radoeka@gmail.com>, 2012. # <transifex@thisnet.nl>, 2012. @@ -10,9 +11,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-19 00:04+0100\n" +"PO-Revision-Date: 2013-01-18 09:03+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" @@ -20,51 +21,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 "kon niet worden vastgesteld" + #: 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 +89,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/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 1856fc19f75..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "Passord" @@ -566,17 +565,3 @@ msgstr "neste" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 c2aede203e5..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -208,7 +208,6 @@ msgid "Password protect" msgstr "Parat per senhal" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Senhal" @@ -565,17 +564,3 @@ msgstr "venent" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 4bcaa717c39..4e0e383e612 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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 (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -217,7 +217,6 @@ msgid "Password protect" msgstr "Zabezpieczone hasłem" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Hasło" @@ -574,17 +573,3 @@ msgstr "naprzód" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Aktualizowanie ownCloud do wersji %s, może to potrwać chwilę." - -#: 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" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 64357ad8259..1d4c605b737 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -3,6 +3,7 @@ # 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-2013. # Marcin Małecki <gerber@tkdami.net>, 2011-2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+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 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" @@ -27,16 +28,16 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +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 "" +msgstr "Nie można było przenieść %s" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "Nie można zmienić nazwy pliku" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" @@ -147,84 +148,84 @@ msgid "" "allowed." msgstr "Niepoprawna nazwa, Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*'są niedozwolone." -#: js/files.js:186 +#: 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:224 +#: 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:224 +#: js/files.js:225 msgid "Upload Error" msgstr "Błąd wczytywania" -#: js/files.js:241 +#: js/files.js:242 msgid "Close" msgstr "Zamknij" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:261 js/files.js:377 js/files.js:410 msgid "Pending" msgstr "Oczekujące" -#: js/files.js:280 +#: js/files.js:281 msgid "1 file uploading" msgstr "1 plik wczytany" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: 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:357 js/files.js:393 +#: js/files.js:358 js/files.js:394 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:464 +#: 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:537 +#: js/files.js:538 msgid "URL cannot be empty." msgstr "URL nie może być pusty." -#: js/files.js:543 +#: 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:727 +#: js/files.js:728 msgid "{count} files scanned" msgstr "{count} pliki skanowane" -#: js/files.js:735 +#: js/files.js:736 msgid "error while scanning" msgstr "Wystąpił błąd podczas skanowania" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:809 templates/index.php:64 msgid "Name" msgstr "Nazwa" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:810 templates/index.php:75 msgid "Size" msgstr "Rozmiar" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:811 templates/index.php:77 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:829 +#: js/files.js:830 msgid "1 folder" msgstr "1 folder" -#: js/files.js:831 +#: js/files.js:832 msgid "{count} folders" msgstr "{count} foldery" -#: js/files.js:839 +#: js/files.js:840 msgid "1 file" msgstr "1 plik" -#: js/files.js:841 +#: js/files.js:842 msgid "{count} files" msgstr "{count} pliki" 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/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 76a51798833..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "" @@ -564,17 +563,3 @@ msgstr "" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 ea81e6307e9..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -217,7 +217,6 @@ msgid "Password protect" msgstr "Proteger com senha" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Senha" @@ -574,17 +573,3 @@ msgstr "próximo" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: 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" 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/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 ba200a60054..8cf1dad2efb 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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 (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,6 @@ msgid "Password protect" msgstr "Proteger com palavra-passe" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Palavra chave" @@ -570,17 +569,3 @@ msgstr "seguinte" #, 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." - -#: 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" 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/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 509e2c92f27..b4fb56151ad 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -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" @@ -569,17 +568,3 @@ msgstr "următorul" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: 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" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 4c4093cbf4d..aa43c76dc5d 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -3,7 +3,7 @@ # 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-2013. @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 13:23+0000\n" -"Last-Translator: g.ciprian <g.ciprian@osn.ro>\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" @@ -145,84 +145,84 @@ msgid "" "allowed." msgstr "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise." -#: js/files.js:186 +#: 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:224 +#: 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:224 +#: js/files.js:225 msgid "Upload Error" msgstr "Eroare la încărcare" -#: js/files.js:241 +#: js/files.js:242 msgid "Close" msgstr "Închide" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:261 js/files.js:377 js/files.js:410 msgid "Pending" msgstr "În așteptare" -#: js/files.js:280 +#: js/files.js:281 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:284 js/files.js:339 js/files.js:354 msgid "{count} files uploading" msgstr "{count} fisiere incarcate" -#: js/files.js:357 js/files.js:393 +#: js/files.js:358 js/files.js:394 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/files.js:464 +#: 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:537 +#: js/files.js:538 msgid "URL cannot be empty." msgstr "Adresa URL nu poate fi goală." -#: js/files.js:543 +#: js/files.js:544 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" -#: js/files.js:727 +#: js/files.js:728 msgid "{count} files scanned" msgstr "{count} fisiere scanate" -#: js/files.js:735 +#: js/files.js:736 msgid "error while scanning" msgstr "eroare la scanarea" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:809 templates/index.php:64 msgid "Name" msgstr "Nume" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:810 templates/index.php:75 msgid "Size" msgstr "Dimensiune" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:811 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:829 +#: js/files.js:830 msgid "1 folder" msgstr "1 folder" -#: js/files.js:831 +#: js/files.js:832 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:839 +#: js/files.js:840 msgid "1 file" msgstr "1 fisier" -#: js/files.js:841 +#: js/files.js:842 msgid "{count} files" msgstr "{count} fisiere" 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/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 00951912304..2bbb44f36f8 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-13 00:08+0100\n" -"PO-Revision-Date: 2013-01-12 11:49+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: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" @@ -217,7 +217,6 @@ msgid "Password protect" msgstr "Защитить паролем" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Пароль" @@ -574,17 +573,3 @@ msgstr "след" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Производится обновление ownCloud до версии %s. Это может занять некоторое время." - -#: 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 "Подтвердить" 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/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 a785898d1c2..7ecd789d863 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -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 "Пароль" @@ -565,17 +564,3 @@ msgstr "следующий" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "Проверить" 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/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 349d4486cc4..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -210,7 +210,6 @@ msgid "Password protect" msgstr "මුර පදයකින් ආරක්ශාකරන්න" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "මුර පදය " @@ -567,17 +566,3 @@ msgstr "ඊළඟ" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 7e64b445c71..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: 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" +"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." @@ -211,17 +212,16 @@ msgid "Password protect" msgstr "Chrániť heslom" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 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" @@ -289,11 +289,11 @@ msgstr "Chyba pri nastavení dátumu vypršania platnosti" #: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Odosielam ..." #: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Email odoslaný" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -567,18 +567,4 @@ msgstr "ďalej" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" - -#: 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" +msgstr "Aktualizujem ownCloud na verziu %s, môže to chvíľu trvať." 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/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 60b6da31073..2b4637d8013 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -211,7 +211,6 @@ msgid "Password protect" msgstr "Zaščiti z geslom" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Geslo" @@ -568,17 +567,3 @@ msgstr "naprej" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: 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" 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/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 c6891589fd4..05172dc5b95 100644 --- a/l10n/sl/user_webdavauth.po +++ b/l10n/sl/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" -"PO-Revision-Date: 2013-01-01 14:17+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: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" @@ -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 "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 bo poslal uporabniška poverila temu URL naslovu. Pri tem bo interpretiral http 401 in http 403 odgovor kot spodletelo avtentikacijo ter vse ostale http odgovore kot uspešne." +"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 0646f7fd17c..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "" @@ -564,17 +563,3 @@ msgstr "" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 f715cccd51c..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -210,7 +210,6 @@ msgid "Password protect" msgstr "Заштићено лозинком" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Лозинка" @@ -567,17 +566,3 @@ msgstr "следеће" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "Потврди" 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/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 62f3de31a2f..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "Lozinka" @@ -565,17 +564,3 @@ msgstr "sledeće" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 36584ca3131..799ca43b10b 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -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" @@ -570,17 +569,3 @@ msgstr "nästa" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Uppdaterar ownCloud till version %s, detta kan ta en stund." - -#: 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" 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/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 f35d465eb3b..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "கடவுச்சொல்" @@ -565,17 +564,3 @@ msgstr "அடுத்து" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "உறுதிப்படுத்தல்" 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/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 bcfae1c2e7d..65d9a494f61 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: 2013-01-13 00:08+0100\n" +"POT-Creation-Date: 2013-01-19 00:04+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:711 +#: js/js.js:706 msgid "seconds ago" msgstr "" -#: js/js.js:712 +#: js/js.js:707 msgid "1 minute ago" msgstr "" -#: js/js.js:713 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:714 +#: js/js.js:709 msgid "1 hour ago" msgstr "" -#: js/js.js:715 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "" -#: js/js.js:716 +#: js/js.js:711 msgid "today" msgstr "" -#: js/js.js:717 +#: js/js.js:712 msgid "yesterday" msgstr "" -#: js/js.js:718 +#: js/js.js:713 msgid "{days} days ago" msgstr "" -#: js/js.js:719 +#: js/js.js:714 msgid "last month" msgstr "" -#: js/js.js:720 +#: js/js.js:715 msgid "{months} months ago" msgstr "" -#: js/js.js:721 +#: js/js.js:716 msgid "months ago" msgstr "" -#: js/js.js:722 +#: js/js.js:717 msgid "last year" msgstr "" -#: js/js.js:723 +#: 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 "" @@ -564,17 +563,3 @@ msgstr "" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b9ec121d8a9..b5200355ccc 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: 2013-01-13 00:08+0100\n" +"POT-Creation-Date: 2013-01-19 00:04+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,6 +17,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -31,46 +36,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -126,98 +131,98 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 +#: js/files.js:204 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -269,10 +274,6 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 6e7ce1bda14..62209a1b8a1 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: 2013-01-13 00:08+0100\n" +"POT-Creation-Date: 2013-01-19 00:04+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 62421c6ed24..edc52c19e2e 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: 2013-01-13 00:08+0100\n" +"POT-Creation-Date: 2013-01-19 00:04+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 1258558a3ad..60fbd2e4daf 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: 2013-01-13 00:08+0100\n" +"POT-Creation-Date: 2013-01-19 00:04+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 2cccb7c226f..38fe966dfd3 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: 2013-01-13 00:08+0100\n" +"POT-Creation-Date: 2013-01-19 00:04+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 7e90b490af3..bd9b4348d1e 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: 2013-01-13 00:08+0100\n" +"POT-Creation-Date: 2013-01-19 00:04+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" @@ -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 bb878a828fb..5b08b58f815 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: 2013-01-13 00:08+0100\n" +"POT-Creation-Date: 2013-01-19 00:05+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/user_ldap.pot b/l10n/templates/user_ldap.pot index 3627dd5e4e7..4cf8b949b41 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: 2013-01-13 00:08+0100\n" +"POT-Creation-Date: 2013-01-19 00:04+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 c1f46cf8645..e28c048e4dc 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: 2013-01-13 00:08+0100\n" +"POT-Creation-Date: 2013-01-19 00:04+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 e36ae6f3983..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "รหัสผ่าน" @@ -566,17 +565,3 @@ msgstr "ถัดไป" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "ยืนยัน" 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/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 0057c9b5064..12efc8d5b59 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -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" @@ -568,17 +567,3 @@ msgstr "sonraki" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: 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." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" -msgstr "Doğrula" 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/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 213c9995297..21be89f3a48 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,13 +7,14 @@ # <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: 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" +"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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,55 +88,55 @@ msgstr "Помилка при видалені %s із обраного." msgid "Settings" msgstr "Налаштування" -#: js/js.js:711 +#: js/js.js:706 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:712 +#: js/js.js:707 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:713 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:714 +#: js/js.js:709 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:715 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:716 +#: js/js.js:711 msgid "today" msgstr "сьогодні" -#: js/js.js:717 +#: js/js.js:712 msgid "yesterday" msgstr "вчора" -#: js/js.js:718 +#: js/js.js:713 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:719 +#: js/js.js:714 msgid "last month" msgstr "минулого місяця" -#: js/js.js:720 +#: js/js.js:715 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:721 +#: js/js.js:716 msgid "months ago" msgstr "місяці тому" -#: js/js.js:722 +#: js/js.js:717 msgid "last year" msgstr "минулого року" -#: js/js.js:723 +#: js/js.js:718 msgid "years ago" msgstr "роки тому" @@ -211,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 "Пароль" @@ -567,18 +567,4 @@ msgstr "наступний" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -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 "Підтвердити" +msgstr "Оновлення ownCloud до версії %s, це може зайняти деякий час." 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 372163ef68a..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: 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" +"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" @@ -243,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" @@ -259,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 b3b6244ffca..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -212,7 +212,6 @@ msgid "Password protect" msgstr "Mật khẩu bảo vệ" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "Mật khẩu" @@ -569,17 +568,3 @@ msgstr "Kế tiếp" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "" - -#: 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" 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/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 237822bce71..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "密码" @@ -566,17 +565,3 @@ msgstr "前进" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "确认" 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/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 82cad2ce6b3..9b8dcdd8495 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -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 "密码" @@ -569,17 +568,3 @@ msgstr "下一页" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "验证" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 9d7a6aacba4..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: 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" +"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" @@ -25,16 +26,16 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "无法移动 %s - 同名文件已存在" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "无法移动 %s" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "无法重命名文件" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" @@ -73,11 +74,11 @@ msgstr "写入磁盘失败" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "没有足够可用空间" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "无效文件夹。" #: appinfo/app.php:10 msgid "Files" @@ -133,11 +134,11 @@ msgstr "删除了 {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' 是一个无效的文件名。" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "文件名不能为空。" #: js/files.js:45 msgid "" @@ -145,84 +146,84 @@ msgid "" "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" -#: js/files.js:186 +#: js/files.js:187 msgid "generating ZIP-file, it may take some time." msgstr "正在生成 ZIP 文件,可能需要一些时间" -#: js/files.js:224 +#: js/files.js:225 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" -#: js/files.js:224 +#: js/files.js:225 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:241 +#: js/files.js:242 msgid "Close" msgstr "关闭" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:261 js/files.js:377 js/files.js:410 msgid "Pending" msgstr "操作等待中" -#: js/files.js:280 +#: js/files.js:281 msgid "1 file uploading" msgstr "1个文件上传中" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:284 js/files.js:339 js/files.js:354 msgid "{count} files uploading" msgstr "{count} 个文件上传中" -#: js/files.js:357 js/files.js:393 +#: js/files.js:358 js/files.js:394 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:464 +#: js/files.js:465 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/files.js:537 +#: js/files.js:538 msgid "URL cannot be empty." msgstr "URL不能为空" -#: js/files.js:543 +#: js/files.js:544 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" -#: js/files.js:727 +#: js/files.js:728 msgid "{count} files scanned" msgstr "{count} 个文件已扫描。" -#: js/files.js:735 +#: js/files.js:736 msgid "error while scanning" msgstr "扫描时出错" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:809 templates/index.php:64 msgid "Name" msgstr "名称" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:810 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:811 templates/index.php:77 msgid "Modified" msgstr "修改日期" -#: js/files.js:829 +#: js/files.js:830 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:831 +#: js/files.js:832 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:839 +#: js/files.js:840 msgid "1 file" msgstr "1 个文件" -#: js/files.js:841 +#: js/files.js:842 msgid "{count} files" msgstr "{count} 个文件" 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 8e151adfe07..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: 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" +"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" @@ -246,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" @@ -262,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 b1e7ea8b73d..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "" @@ -565,17 +564,3 @@ msgstr "" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 4f38d77222b..a331ba2944f 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -211,7 +211,6 @@ msgid "Password protect" msgstr "密碼保護" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 -#: templates/verify.php:13 msgid "Password" msgstr "密碼" @@ -568,17 +567,3 @@ msgstr "下一頁" #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。" - -#: 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 "驗證" 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/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 eff86f297c4..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: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+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" @@ -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 "" @@ -564,17 +563,3 @@ msgstr "" #, php-format msgid "Updating ownCloud to version %s, this may take a while." 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 "" 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/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 cb67e0c2a89..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,8 +92,10 @@ 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'); $response = new OC_OCS_Result(null, 997, 'Unauthorised'); } // Send the response @@ -103,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() @@ -127,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; @@ -141,7 +142,7 @@ class OC_API { if(!$user) { return false; } else { - return OC_Group::inGroup($user, 'admin'); + return OC_User::isAdminUser($user); } break; default: @@ -149,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 @@ -196,5 +197,5 @@ class OC_API { } } } - + } diff --git a/lib/app.php b/lib/app.php index e60bce2a201..662af56d258 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" )); @@ -748,7 +748,7 @@ class OC_App{ } return new OC_FilesystemView('/'.OC_User::getUser().'/'.$appid); }else{ - OC_Log::write('core', 'Can\'t get app storage, app, user not logged in', OC_Log::ERROR); + OC_Log::write('core', 'Can\'t get app storage, app '.$appid.', user not logged in', OC_Log::ERROR); return false; } }else{ 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 3d3e7d59f90..af6a1b8b85a 100644 --- a/lib/base.php +++ b/lib/base.php @@ -29,169 +29,169 @@ 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 - ); - } + /** + * Associative 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")) { @@ -202,35 +202,41 @@ class OC } } - 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 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(); @@ -258,504 +264,504 @@ class OC } } - 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'); + 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; } - } - - /** - * 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/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 74e7ca5b0e0..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; } @@ -588,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("' @@ -623,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..2f4a6daf216 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 @@ -354,7 +354,7 @@ class OC_FileCache{ public static function increaseSize($path, $sizeDiff, $root=false) { if($sizeDiff==0) return; $item = OC_FileCache_Cached::get($path); - //stop walking up the filetree if we hit a non-folder or reached to root folder + //stop walking up the filetree if we hit a non-folder or reached the root folder if($path == '/' || $path=='' || $item['mimetype'] !== 'httpd/unix-directory') { return; } 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/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 1aba2a38100..7be54cacbed 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -223,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"; } @@ -549,7 +553,7 @@ class OC_Helper { fclose($fh); return $file; } - + /** * create a temporary folder with an unique filename * @return string @@ -625,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; } @@ -695,8 +679,8 @@ class OC_Helper { $start = intval($start); $length = intval($length); $string = mb_substr($string, 0, $start, $encoding) . - $replacement . - mb_substr($string, $start+$length, mb_strlen($string, 'UTF-8')-$start, $encoding); + $replacement . + mb_substr($string, $start+$length, mb_strlen($string, 'UTF-8')-$start, $encoding); return $string; } @@ -765,6 +749,23 @@ class OC_Helper { } /** + * @brief calculates the maximum upload size respecting system settings, free space and user quota + * + * @param $dir the current folder where the user currently operates + * @return number of bytes representing + */ + public static function maxUploadFilesize($dir) { + $upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize')); + $post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size')); + $maxUploadFilesize = min($upload_max_filesize, $post_max_size); + + $freeSpace = OC_Filesystem::free_space($dir); + $freeSpace = max($freeSpace, 0); + + return min($maxUploadFilesize, $freeSpace); + } + + /** * Checks if a function is available * @param string $function_name * @return bool 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/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/ja_JP.php b/lib/l10n/ja_JP.php index 854734c9764..11cefe900c2 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "ファイルは1つずつダウンロードする必要があります。", "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/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/nl.php b/lib/l10n/nl.php index 087cf23a627..7ce134e3621 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Bestanden moeten één voor één worden gedownload.", "Back to Files" => "Terug naar bestanden", "Selected files too large to generate zip file." => "De geselecteerde bestanden zijn te groot om een zip bestand te maken.", +"couldn't be determined" => "kon niet worden vastgesteld", "Application is not enabled" => "De applicatie is niet actief", "Authentication error" => "Authenticatie fout", "Token expired. Please reload page." => "Token verlopen. Herlaad de pagina.", 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/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 5d4aadd22ae..932e79d9ef1 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -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 * ), @@ -65,7 +65,7 @@ class DB { 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 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 bfb84eda5d1..de0c3f25347 100644 --- a/lib/public/response.php +++ b/lib/public/response.php @@ -42,7 +42,7 @@ class Response { * null cache indefinitly */ static public function enableCaching( $cache_time = null ) { - return(\OC_Response::enableCaching( $cache_time )); + \OC_Response::enableCaching( $cache_time ); } /** @@ -51,7 +51,7 @@ class Response { * @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,7 +59,7 @@ class Response { * @see enableCaching with cache_time = 0 */ static public function disableCaching() { - return(\OC_Response::disableCaching()); + \OC_Response::disableCaching(); } /** @@ -68,7 +68,7 @@ class Response { * @param string $etag token to use for modification check */ static public function setETagHeader( $etag ) { - return(\OC_Response::setETagHeader( $etag )); + \OC_Response::setETagHeader( $etag ); } /** @@ -76,7 +76,7 @@ class Response { * @param string $filepath of file to send */ static public function sendFile( $filepath ) { - return(\OC_Response::sendFile( $filepath )); + \OC_Response::sendFile( $filepath ); } /** @@ -86,7 +86,7 @@ class Response { * DateTime object when to expire response */ static public function setExpiresHeader( $expires ) { - return(\OC_Response::setExpiresHeader( $expires )); + \OC_Response::setExpiresHeader( $expires ); } /** @@ -94,6 +94,6 @@ class Response { * @param string $location to redirect to */ static public function redirect( $location ) { - return(\OC_Response::redirect( $location )); + \OC_Response::redirect( $location ); } } diff --git a/lib/public/share.php b/lib/public/share.php index 8c0cfc16b4e..cda583aa073 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -351,14 +351,14 @@ class Share { //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; @@ -415,7 +415,7 @@ 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' + if ($files[$i]['mimetype'] == 'httpd/unix-directory' && $children = \OC_Files::getDirectoryContent($name, '/') ) { // Continue scanning into child folders @@ -748,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` = ?'; @@ -864,7 +864,7 @@ class Share { } } else { if ($fileDependent) { - if (($itemType == 'file' || $itemType == 'folder') + if (($itemType == 'file' || $itemType == 'folder') && $format == \OC_Share_Backend_File::FORMAT_FILE_APP || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT ) { 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 df09ea81ae1..413dbcccd28 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -203,7 +203,7 @@ 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; } @@ -298,7 +298,7 @@ class Util { * Todo: Write howto */ public static function callCheck() { - return(\OC_Util::callCheck()); + \OC_Util::callCheck(); } /** @@ -367,4 +367,14 @@ class Util { public static function recursiveArraySearch($haystack, $needle, $index = null) { return(\OC_Helper::recursiveArraySearch($haystack, $needle, $index)); } + + /** + * @brief calculates the maximum upload size respecting system settings, free space and user quota + * + * @param $dir the current folder where the user currently operates + * @return number of bytes representing + */ + public static function maxUploadFilesize($dir) { + return \OC_Helper::maxUploadFilesize($dir); + } } 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 d46e68e9912..16a30991764 100755 --- a/lib/util.php +++ b/lib/util.php @@ -340,10 +340,7 @@ class OC_Util { * 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(); } @@ -354,12 +351,6 @@ class OC_Util { * @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(); @@ -368,40 +359,6 @@ 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 */ public static function redirectToDefaultPage() { @@ -508,8 +465,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; } 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/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/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/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/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 853e12812ed..dc4c1cf6431 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( "Authentication error" => "Възникна проблем с идентификацията", +"Invalid request" => "Невалидна заявка", "Enable" => "Включено", "Password" => "Парола", "Email" => "E-mail", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 29863389048..ffd6d2a60bf 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -52,7 +52,11 @@ "Name" => "Όνομα", "Groups" => "Ομάδες", "Create" => "Δημιουργία", +"Default Storage" => "Προκαθορισμένη Αποθήκευση ", +"Unlimited" => "Απεριόριστο", "Other" => "Άλλα", "Group Admin" => "Ομάδα Διαχειριστών", +"Storage" => "Αποθήκευση", +"Default" => "Προκαθορισμένο", "Delete" => "Διαγραφή" ); diff --git a/settings/l10n/it.php b/settings/l10n/it.php index d485f7ccd13..4980d585441 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -55,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/uk.php b/settings/l10n/uk.php index ce1ced031b1..19b84edfc78 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -52,7 +52,11 @@ "Name" => "Ім'я", "Groups" => "Групи", "Create" => "Створити", +"Default Storage" => "сховище за замовчуванням", +"Unlimited" => "Необмежено", "Other" => "Інше", "Group Admin" => "Адміністратор групи", +"Storage" => "Сховище", +"Default" => "За замовчуванням", "Delete" => "Видалити" ); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 218095b78eb..407177d2ac4 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -52,7 +52,11 @@ "Name" => "名称", "Groups" => "组", "Create" => "创建", +"Default Storage" => "默认存储", +"Unlimited" => "无限", "Other" => "其它", "Group Admin" => "组管理员", +"Storage" => "存储", +"Default" => "默认", "Delete" => "删除" ); 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 5ee0147fbcb..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,152 +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> + <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 179ce9c5405..0490f63fb67 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -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 |