diff --git a/.gitignore b/.gitignore index 09af6808d6471e4509f98c274bec7aadb1336029..40d6e6ca0fe0c3d38ee57cc4c4f7cff3116d4b1c 100644 --- a/.gitignore +++ b/.gitignore @@ -56,6 +56,7 @@ nbproject # Cloud9IDE .settings.xml +.c9revisions # vim ex mode .vimrc diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 78ed218c13623571cb41c6ce448e7c72a1617f4a..93063e52eb09ae017617bcce6e6b76d1d54e57a6 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -11,8 +11,10 @@ $dir = stripslashes($_POST["dir"]); $file = stripslashes($_POST["file"]); $target = stripslashes(rawurldecode($_POST["target"])); +$l = OC_L10N::get('files'); + if(\OC\Files\Filesystem::file_exists($target . '/' . $file)) { - OCP\JSON::error(array("data" => array( "message" => "Could not move $file - File with this name already exists" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s - File with this name already exists", array($file)) ))); exit; } @@ -22,8 +24,8 @@ if ($dir != '' || $file != 'Shared') { if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) { OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file ))); } else { - OCP\JSON::error(array("data" => array( "message" => "Could not move $file" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) ))); } }else{ - OCP\JSON::error(array("data" => array( "message" => "Could not move $file" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) ))); } diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index 970aaa638da89a578f11b381220adeae2ea1d889..9fd2ce3ad4bc6d548aeb3a609e45863707ea7df7 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -11,14 +11,16 @@ $dir = stripslashes($_GET["dir"]); $file = stripslashes($_GET["file"]); $newname = stripslashes($_GET["newname"]); +$l = OC_L10N::get('files'); + if ( $newname !== '.' and ($dir != '' || $file != 'Shared') and $newname !== '.') { $targetFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $newname); $sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file); if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) { OCP\JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname ))); } else { - OCP\JSON::error(array("data" => array( "message" => "Unable to rename file" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") ))); } }else{ - OCP\JSON::error(array("data" => array( "message" => "Unable to rename file" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") ))); } diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 676612c0e42e7f55f45d2d1f6784afbcf5b5ed68..07977f5ddf1ddb04972bd027b903429889dc04db 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -49,7 +49,7 @@ foreach ($files['size'] as $size) { $totalSize += $size; } if ($totalSize > \OC\Files\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 storage available'), 'uploadMaxFilesize' => $maxUploadFilesize, 'maxHumanFilesize' => $maxHumanFilesize))); exit(); diff --git a/apps/files/css/files.css b/apps/files/css/files.css index f37ac4c262ac9c9096184de71878cc3a7ce6ebbb..67bd569ceef3e7577bfaec11155656658b341482 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -3,7 +3,7 @@ See the COPYING-README file. */ /* FILE MENU */ -.actions { padding:.3em; float:left; height:2em; width: 100%; } +.actions { padding:.3em; height:2em; width: 100%; } .actions input, .actions button, .actions .button { margin:0; float:left; } #new { diff --git a/apps/files/index.php b/apps/files/index.php index 104cf1a55d322ffcad11544fb60d82fc50cef5fb..434e98c6ea847a8b2f2316c570685be84b1446d4 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -92,7 +92,7 @@ foreach (explode('/', $dir) as $i) { $list = new OCP\Template('files', 'part.list', ''); $list->assign('files', $files, false); $list->assign('baseURL', OCP\Util::linkTo('files', 'index.php') . '?dir=', false); -$list->assign('downloadURL', OCP\Util::linkTo('files', 'download.php') . '?file=', false); +$list->assign('downloadURL', OCP\Util::linkToRoute('download', array('file' => '/')), false); $list->assign('disableSharing', false); $breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', ''); $breadcrumbNav->assign('breadcrumb', $breadcrumb, false); diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index c30f1bcddd8396feaeb194d65a28441db35e4010..e1d8b60d31530f3ef3869dc5d30bda2ccbe0d6b1 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -112,9 +112,8 @@ var FileActions = { if (img.call) { img = img(file); } - // NOTE: Temporary fix to allow unsharing of files in root of Shared folder - if ($('#dir').val() == '/Shared') { - var html = '<a href="#" original-title="' + t('files', 'Unshare') + '" class="action delete" />'; + if (typeof trashBinApp !== 'undefined' && trashBinApp) { + var html = '<a href="#" original-title="' + t('files', 'Delete permanently') + '" class="action delete" />'; } else { var html = '<a href="#" original-title="' + t('files', 'Delete') + '" class="action delete" />'; } diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 72b353b48c2c31446cda8793263240aaba79a326..cc107656da8dc55055cf57b4cc910053a624958c 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -3,35 +3,92 @@ var FileList={ update:function(fileListHtml) { $('#fileList').empty().html(fileListHtml); }, - addFile:function(name,size,lastModified,loading,hidden){ - var basename, extension, simpleSize, sizeColor, lastModifiedTime, modifiedColor, - img=(loading)?OC.imagePath('core', 'loading.gif'):OC.imagePath('core', 'filetypes/file.png'), - html='<tr data-type="file" data-size="'+size+'" data-permissions="'+$('#permissions').val()+'">'; - if(name.indexOf('.')!=-1){ + createRow:function(type, name, iconurl, linktarget, size, lastModified, permissions){ + var td, simpleSize, basename, extension; + //containing tr + var tr = $('<tr></tr>').attr({ + "data-type": type, + "data-size": size, + "data-file": name, + "data-permissions": permissions + }); + // filename td + td = $('<td></td>').attr({ + "class": "filename", + "style": 'background-image:url('+iconurl+')' + }); + td.append('<input type="checkbox" />'); + var link_elem = $('<a></a>').attr({ + "class": "name", + "href": linktarget + }); + //split extension from filename for non dirs + if (type != 'dir' && name.indexOf('.')!=-1) { basename=name.substr(0,name.lastIndexOf('.')); extension=name.substr(name.lastIndexOf('.')); - }else{ + } else { basename=name; extension=false; } - html+='<td class="filename" style="background-image:url('+img+')"><input type="checkbox" />'; - html+='<a class="name" href="download.php?file='+$('#dir').val().replace(/</, '<').replace(/>/, '>')+'/'+escapeHTML(name)+'"><span class="nametext">'+escapeHTML(basename); + var name_span=$('<span></span>').addClass('nametext').text(basename); + link_elem.append(name_span); if(extension){ - html+='<span class="extension">'+escapeHTML(extension)+'</span>'; + name_span.append($('<span></span>').addClass('extension').text(extension)); + } + //dirs can show the number of uploaded files + if (type == 'dir') { + link_elem.append($('<span></span>').attr({ + 'class': 'uploadtext', + 'currentUploads': 0 + })); } - html+='</span></a></td>'; - if(size!='Pending'){ + td.append(link_elem); + tr.append(td); + + //size column + if(size!=t('files', 'Pending')){ simpleSize=simpleFileSize(size); }else{ - simpleSize='Pending'; + simpleSize=t('files', 'Pending'); } - sizeColor = Math.round(200-size/(1024*1024)*2); - lastModifiedTime=Math.round(lastModified.getTime() / 1000); - modifiedColor=Math.round((Math.round((new Date()).getTime() / 1000)-lastModifiedTime)/60/60/24*14); - html+='<td class="filesize" title="'+humanFileSize(size)+'" style="color:rgb('+sizeColor+','+sizeColor+','+sizeColor+')">'+simpleSize+'</td>'; - html+='<td class="date"><span class="modified" title="'+formatDate(lastModified)+'" style="color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')">'+relative_modified_date(lastModified.getTime() / 1000)+'</span></td>'; - html+='</tr>'; - FileList.insertElement(name,'file',$(html).attr('data-file',name)); + var sizeColor = Math.round(200-Math.pow((size/(1024*1024)),2)); + var lastModifiedTime = Math.round(lastModified.getTime() / 1000); + td = $('<td></td>').attr({ + "class": "filesize", + "title": humanFileSize(size), + "style": 'color:rgb('+sizeColor+','+sizeColor+','+sizeColor+')' + }).text(simpleSize); + tr.append(td); + + // date column + var modifiedColor = Math.round((Math.round((new Date()).getTime() / 1000)-lastModifiedTime)/60/60/24*5); + td = $('<td></td>').attr({ "class": "date" }); + td.append($('<span></span>').attr({ + "class": "modified", + "title": formatDate(lastModified), + "style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')' + }).text( relative_modified_date(lastModified.getTime() / 1000) )); + tr.append(td); + return tr; + }, + addFile:function(name,size,lastModified,loading,hidden){ + var imgurl; + if (loading) { + imgurl = OC.imagePath('core', 'loading.gif'); + } else { + imgurl = OC.imagePath('core', 'filetypes/file.png'); + } + var tr = this.createRow( + 'file', + name, + imgurl, + OC.Router.generate('download', { file: $('#dir').val()+'/'+name }), + size, + lastModified, + $('#permissions').val() + ); + + FileList.insertElement(name, 'file', tr.attr('data-file',name)); var row = $('tr').filterAttr('data-file',name); if(loading){ row.data('loading',true); @@ -44,30 +101,18 @@ var FileList={ FileActions.display(row.find('td.filename')); }, addDir:function(name,size,lastModified,hidden){ - var html, td, link_elem, sizeColor, lastModifiedTime, modifiedColor; - html = $('<tr></tr>').attr({ "data-type": "dir", "data-size": size, "data-file": name, "data-permissions": $('#permissions').val()}); - td = $('<td></td>').attr({"class": "filename", "style": 'background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')' }); - td.append('<input type="checkbox" />'); - link_elem = $('<a></a>').attr({ "class": "name", "href": OC.linkTo('files', 'index.php')+"?dir="+ encodeURIComponent($('#dir').val()+'/'+name).replace(/%2F/g, '/') }); - link_elem.append($('<span></span>').addClass('nametext').text(name)); - link_elem.append($('<span></span>').attr({'class': 'uploadtext', 'currentUploads': 0})); - td.append(link_elem); - html.append(td); - if(size!='Pending'){ - simpleSize=simpleFileSize(size); - }else{ - simpleSize='Pending'; - } - sizeColor = Math.round(200-Math.pow((size/(1024*1024)),2)); - lastModifiedTime=Math.round(lastModified.getTime() / 1000); - modifiedColor=Math.round((Math.round((new Date()).getTime() / 1000)-lastModifiedTime)/60/60/24*5); - td = $('<td></td>').attr({ "class": "filesize", "title": humanFileSize(size), "style": 'color:rgb('+sizeColor+','+sizeColor+','+sizeColor+')'}).text(simpleSize); - html.append(td); - - td = $('<td></td>').attr({ "class": "date" }); - td.append($('<span></span>').attr({ "class": "modified", "title": formatDate(lastModified), "style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')' }).text( relative_modified_date(lastModified.getTime() / 1000) )); - html.append(td); - FileList.insertElement(name,'dir',html); + + var tr = this.createRow( + 'dir', + name, + OC.imagePath('core', 'filetypes/folder.png'), + OC.linkTo('files', 'index.php')+"?dir="+ encodeURIComponent($('#dir').val()+'/'+name).replace(/%2F/g, '/'), + size, + lastModified, + $('#permissions').val() + ); + + FileList.insertElement(name,'dir',tr); var row = $('tr').filterAttr('data-file',name); row.find('td.filename').draggable(dragOptions); row.find('td.filename').droppable(folderDropOptions); @@ -216,9 +261,6 @@ var FileList={ }, replace:function(oldName, newName, isNewFile) { // Finish any existing actions - if (FileList.lastAction || !FileList.useUndo) { - FileList.lastAction(); - } $('tr').filterAttr('data-file', oldName).hide(); $('tr').filterAttr('data-file', newName).hide(); var tr = $('tr').filterAttr('data-file', oldName).clone(); @@ -321,7 +363,6 @@ $(document).ready(function(){ // Delete the new uploaded file FileList.deleteCanceled = false; FileList.deleteFiles = [FileList.replaceOldName]; - FileList.finishDelete(null, true); } else { $('tr').filterAttr('data-file', FileList.replaceOldName).show(); } @@ -348,7 +389,6 @@ $(document).ready(function(){ if ($('#notification').data('isNewFile')) { FileList.deleteCanceled = false; FileList.deleteFiles = [$('#notification').data('oldName')]; - FileList.finishDelete(null, true); } }); FileList.useUndo=(window.onbeforeunload)?true:false; diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 7c377afc6203d0f2ea782537aa0291d57396d252..5c5b430a8d4c96f890bb71658a70af949fb52f3b 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -262,12 +262,6 @@ $(document).ready(function() { return; } totalSize+=files[i].size; - if(FileList.deleteFiles && FileList.deleteFiles.indexOf(files[i].name)!=-1){//finish delete if we are uploading a deleted file - FileList.finishDelete(function(){ - $('#file_upload_start').change(); - }); - return; - } } } if(totalSize>$('#max_upload').val()){ diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 3d676810c7c8817b4af1d2aae19f7bebd94b4174..dbff81cef6c5b424872c058622bf6fc67c214c45 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -7,7 +7,6 @@ "No file was uploaded" => "কোন ফাইল আপলোড করা হয় নি", "Missing a temporary folder" => "অসà§à¦¥à¦¾à§Ÿà§€ ফোলà§à¦¡à¦¾à¦° খোয়া গিয়েছে", "Failed to write to disk" => "ডিসà§à¦•à§‡ লিখতে বà§à¦¯à¦°à§à¦¥", -"Not enough space available" => "যথেষà§à¦ পরিমাণ সà§à¦¥à¦¾à¦¨ নেই", "Invalid directory." => "à¦à§à¦² ডিরেকà§à¦Ÿà¦°à¦¿", "Files" => "ফাইল", "Unshare" => "à¦à¦¾à¦—াà¦à¦¾à¦—ি বাতিল ", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 22b684fcfd797271af05508519fa751fa387201e..49ea7f73abb451c083fecb0f8d8f74dfa4b074c0 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -7,10 +7,10 @@ "No file was uploaded" => "El fitxer no s'ha pujat", "Missing a temporary folder" => "S'ha perdut un fitxer temporal", "Failed to write to disk" => "Ha fallat en escriure al disc", -"Not enough space available" => "No hi ha prou espai disponible", "Invalid directory." => "Directori no và lid.", "Files" => "Fitxers", "Unshare" => "Deixa de compartir", +"Delete permanently" => "Esborra permanentment", "Delete" => "Suprimeix", "Rename" => "Reanomena", "{new_name} already exists" => "{new_name} ja existeix", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index f0beda9f55c186baabc9a8edcecef7a42568ed99..c2085a3aa9aad3a50b2499f050c41a50ed39a258 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -7,10 +7,10 @@ "No file was uploaded" => "Žádný soubor nebyl odeslán", "Missing a temporary folder" => "Chybà adresář pro doÄasné soubory", "Failed to write to disk" => "Zápis na disk selhal", -"Not enough space available" => "Nedostatek dostupného mÃsta", "Invalid directory." => "Neplatný adresář", "Files" => "Soubory", "Unshare" => "ZruÅ¡it sdÃlenÃ", +"Delete permanently" => "Trvale odstranit", "Delete" => "Smazat", "Rename" => "PÅ™ejmenovat", "{new_name} already exists" => "{new_name} již existuje", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 55ea24baa2fc0e259d20398b46733a3f5886f0e9..4b38619eaa572a99961447380be459acb64fbaae 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Es wurde keine Datei hochgeladen.", "Missing a temporary folder" => "Temporärer Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", -"Not enough space available" => "Nicht genug Speicherplatz verfügbar", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 18f3ee380282c0a7550bcab87d95308e1ee9ffae..71f24eba4c8fa2d11ae0074fdaeb777f2bcabfa9 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -7,10 +7,10 @@ "No file was uploaded" => "Es wurde keine Datei hochgeladen.", "Missing a temporary folder" => "Der temporäre Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", -"Not enough space available" => "Nicht genügend Speicherplatz verfügbar", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", +"Delete permanently" => "Entgültig löschen", "Delete" => "Löschen", "Rename" => "Umbenennen", "{new_name} already exists" => "{new_name} existiert bereits", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 7b458bf35dd03db811dfda67724226f8290b31d4..a9c5fda0981a08c24d8d1da6399dc309981c10b0 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -7,7 +7,6 @@ "No file was uploaded" => "ΚανÎνα αÏχείο δεν στάλθηκε", "Missing a temporary folder" => "Λείπει ο Ï€ÏοσωÏινός φάκελος", "Failed to write to disk" => "Αποτυχία εγγÏαφής στο δίσκο", -"Not enough space available" => "Δεν υπάÏχει αÏκετός διαθÎσιμος χώÏος", "Invalid directory." => "Μη ÎγκυÏος φάκελος.", "Files" => "ΑÏχεία", "Unshare" => "Διακοπή κοινής χÏήσης", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index a510d47ad6c1d1dfc6d43b6c8ca55a5267180291..ba78e8b56d7d65624178fd339750d89db068f5ce 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Neniu dosiero estas alÅutita", "Missing a temporary folder" => "Mankas tempa dosierujo", "Failed to write to disk" => "Malsukcesis skribo al disko", -"Not enough space available" => "Ne haveblas sufiĉa spaco", "Invalid directory." => "Nevalida dosierujo.", "Files" => "Dosieroj", "Unshare" => "Malkunhavigi", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 201e731179a86c369a18462ca1440d3b4aca388d..9d45e6035c701f2af58c3344198224e24bd4f0f6 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -7,10 +7,10 @@ "No file was uploaded" => "No se ha subido ningún archivo", "Missing a temporary folder" => "Falta un directorio temporal", "Failed to write to disk" => "La escritura en disco ha fallado", -"Not enough space available" => "No hay suficiente espacio disponible", "Invalid directory." => "Directorio invalido.", "Files" => "Archivos", "Unshare" => "Dejar de compartir", +"Delete permanently" => "Eliminar permanentemente", "Delete" => "Eliminar", "Rename" => "Renombrar", "{new_name} already exists" => "{new_name} ya existe", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index ea8352e3251925b743cd93a0badb17efd0dca4da..e805f24ce4c0ce22223a9ac7562f93854d77b567 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -7,7 +7,6 @@ "No file was uploaded" => "El archivo no fue subido", "Missing a temporary folder" => "Falta un directorio temporal", "Failed to write to disk" => "Error al escribir en el disco", -"Not enough space available" => "No hay suficiente espacio disponible", "Invalid directory." => "Directorio invalido.", "Files" => "Archivos", "Unshare" => "Dejar de compartir", @@ -20,6 +19,7 @@ "replaced {new_name}" => "reemplazado {new_name}", "undo" => "deshacer", "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", +"perform delete operation" => "Eliminar", "'.' 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.", @@ -56,11 +56,13 @@ "Text file" => "Archivo de texto", "Folder" => "Carpeta", "From link" => "Desde enlace", +"Trash" => "Papelera", "Cancel upload" => "Cancelar subida", "Nothing in here. Upload something!" => "No hay nada. ¡Subà contenido!", "Download" => "Descargar", "Upload too large" => "El archivo es demasiado grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que intentás subir sobrepasan el tamaño máximo ", "Files are being scanned, please wait." => "Se están escaneando los archivos, por favor esperá.", -"Current scanning" => "Escaneo actual" +"Current scanning" => "Escaneo actual", +"Upgrading filesystem cache..." => "Actualizando el cache del sistema de archivos" ); diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 6f4c55f4846040885584a6d40e7c121d7c4a8135..45c515814e71bc84b112d387542534c4ce2921b9 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Ez da fitxategirik igo", "Missing a temporary folder" => "Aldi baterako karpeta falta da", "Failed to write to disk" => "Errore bat izan da diskoan idazterakoan", -"Not enough space available" => "Ez dago leku nahikorik.", "Invalid directory." => "Baliogabeko karpeta.", "Files" => "Fitxategiak", "Unshare" => "Ez elkarbanatu", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index a4181c6ff53d3d1be0f3b1590bd8bcb2bdc8a1ef..2559d597a791e17235798972fa9e1fb464f6bf7d 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -7,7 +7,6 @@ "No file was uploaded" => "هیچ Ùایلی بارگذاری نشده", "Missing a temporary folder" => "یک پوشه موقت Ú¯Ù… شده است", "Failed to write to disk" => "نوشتن بر روی دیسک سخت ناموÙÙ‚ بود", -"Not enough space available" => "Ùضای کاÙÛŒ در دسترس نیست", "Invalid directory." => "Ùهرست راهنما نامعتبر Ù…ÛŒ باشد.", "Files" => "Ùایل ها", "Unshare" => "لغو اشتراک", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 809a5e5c5544ac65be6615fb3a78b1049693d4d2..6a425e760909afb42b3e9557d6272755a5403bfa 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -6,7 +6,6 @@ "No file was uploaded" => "Yhtäkään tiedostoa ei lähetetty", "Missing a temporary folder" => "Väliaikaiskansiota ei ole olemassa", "Failed to write to disk" => "Levylle kirjoitus epäonnistui", -"Not enough space available" => "Tilaa ei ole riittävästi", "Invalid directory." => "Virheellinen kansio.", "Files" => "Tiedostot", "Unshare" => "Peru jakaminen", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 4be699c00175a46dc7de4a5f0269845abe8d1734..45281d277ffc67e64d56eb55b1671a8ac1f409e5 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -7,10 +7,10 @@ "No file was uploaded" => "Aucun fichier n'a été téléversé", "Missing a temporary folder" => "Il manque un répertoire temporaire", "Failed to write to disk" => "Erreur d'écriture sur le disque", -"Not enough space available" => "Espace disponible insuffisant", "Invalid directory." => "Dossier invalide.", "Files" => "Fichiers", "Unshare" => "Ne plus partager", +"Delete permanently" => "Supprimer de façon définitive", "Delete" => "Supprimer", "Rename" => "Renommer", "{new_name} already exists" => "{new_name} existe déjà ", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index a1c0f0a5dd5d40c945e7652a2cc7fead4e0a48d2..362e92daceae512ad297f86cf93f6902b6de938d 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Non se enviou ningún ficheiro", "Missing a temporary folder" => "Falta un cartafol temporal", "Failed to write to disk" => "Erro ao escribir no disco", -"Not enough space available" => "O espazo dispoñÃbel é insuficiente", "Invalid directory." => "O directorio é incorrecto.", "Files" => "Ficheiros", "Unshare" => "Deixar de compartir", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 86fc0f223f94e1debdd56f16f45daaa016eeb095..26d564807903ef23614f44b9f116ebaac1606d59 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Nem töltÅ‘dött fel semmi", "Missing a temporary folder" => "Hiányzik egy ideiglenes mappa", "Failed to write to disk" => "Nem sikerült a lemezre történÅ‘ Ãrás", -"Not enough space available" => "Nincs elég szabad hely", "Invalid directory." => "Érvénytelen mappa.", "Files" => "Fájlok", "Unshare" => "Megosztás visszavonása", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 43c10ef236e6b17da5255ca2377d190bbe011c93..f8d9789cf0fa1c392058b85aa5c5907a19c3236b 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Engin skrá skilaði sér", "Missing a temporary folder" => "Vantar bráðabirgðamöppu", "Failed to write to disk" => "Tókst ekki að skrifa á disk", -"Not enough space available" => "Ekki nægt pláss tiltækt", "Invalid directory." => "Ógild mappa.", "Files" => "Skrár", "Unshare" => "Hætta deilingu", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index bb3a5bdf054ddcec2ad3e57321f73b0151b71dfa..3d6eb254e59daee92a25dbc8cc803ab060f3be31 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -7,10 +7,10 @@ "No file was uploaded" => "Nessun file è stato caricato", "Missing a temporary folder" => "Cartella temporanea mancante", "Failed to write to disk" => "Scrittura su disco non riuscita", -"Not enough space available" => "Spazio disponibile insufficiente", "Invalid directory." => "Cartella non valida.", "Files" => "File", "Unshare" => "Rimuovi condivisione", +"Delete permanently" => "Elimina definitivamente", "Delete" => "Elimina", "Rename" => "Rinomina", "{new_name} already exists" => "{new_name} esiste già ", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index c8b1054f30b10794f70fc76cb74f258189ba7011..1caa308c1b89b191f1f79eea352548e0f2b1666e 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -7,10 +7,10 @@ "No file was uploaded" => "ファイルã¯ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ã•ã‚Œã¾ã›ã‚“ã§ã—ãŸ", "Missing a temporary folder" => "テンãƒãƒ©ãƒªãƒ•ã‚©ãƒ«ãƒ€ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“", "Failed to write to disk" => "ディスクã¸ã®æ›¸ãè¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ", -"Not enough space available" => "利用å¯èƒ½ãªã‚¹ãƒšãƒ¼ã‚¹ãŒå分ã«ã‚ã‚Šã¾ã›ã‚“", "Invalid directory." => "無効ãªãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã§ã™ã€‚", "Files" => "ファイル", "Unshare" => "共有ã—ãªã„", +"Delete permanently" => "完全ã«å‰Šé™¤ã™ã‚‹", "Delete" => "削除", "Rename" => "åå‰ã®å¤‰æ›´", "{new_name} already exists" => "{new_name} ã¯ã™ã§ã«å˜åœ¨ã—ã¦ã„ã¾ã™", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 7774aeea31c0470d2235f850e8568f600f319756..98d0d60280127fd0cbb6c0111bfbbf36a1c6fecf 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -7,7 +7,6 @@ "No file was uploaded" => "ì—…ë¡œë“œëœ íŒŒì¼ ì—†ìŒ", "Missing a temporary folder" => "ìž„ì‹œ í´ë”ê°€ 사ë¼ì§", "Failed to write to disk" => "디스í¬ì— 쓰지 못했습니다", -"Not enough space available" => "ì—¬ìœ ê³µê°„ì´ ë¶€ì¡±í•©ë‹ˆë‹¤", "Invalid directory." => "올바르지 ì•Šì€ ë””ë ‰í„°ë¦¬ìž…ë‹ˆë‹¤.", "Files" => "파ì¼", "Unshare" => "ê³µìœ í•´ì œ", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 25c1da73bebe527462c1e3da2bbd6c563808798f..57b391e444c451e96e6d4aa1ebea4618baa4b3ac 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -7,10 +7,10 @@ "No file was uploaded" => "Neviena datne netika augÅ¡upielÄdÄ“ta", "Missing a temporary folder" => "TrÅ«kst pagaidu mapes", "Failed to write to disk" => "NeizdevÄs saglabÄt diskÄ", -"Not enough space available" => "Nepietiek brÄ«vas vietas", "Invalid directory." => "NederÄ«ga direktorija.", "Files" => "Datnes", "Unshare" => "PÄrtraukt dalÄ«Å¡anos", +"Delete permanently" => "DzÄ“st pavisam", "Delete" => "DzÄ“st", "Rename" => "PÄrsaukt", "{new_name} already exists" => "{new_name} jau eksistÄ“", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index addd3a9372308ceb034491f7b337b86d75bcf646..9095149cd9db7ead23a84218eef5de2faf9b5662 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -7,10 +7,10 @@ "No file was uploaded" => "Geen bestand geüpload", "Missing a temporary folder" => "Een tijdelijke map mist", "Failed to write to disk" => "Schrijven naar schijf mislukt", -"Not enough space available" => "Niet genoeg ruimte beschikbaar", "Invalid directory." => "Ongeldige directory.", "Files" => "Bestanden", "Unshare" => "Stop delen", +"Delete permanently" => "Verwijder definitief", "Delete" => "Verwijder", "Rename" => "Hernoem", "{new_name} already exists" => "{new_name} bestaat al", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 6855850f0dac7506b44a74ffe6b0bc69fb5cc84b..45d0f4366144fb0a73e8e32cca1750c9f862379d 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Nie przesÅ‚ano żadnego pliku", "Missing a temporary folder" => "Brak katalogu tymczasowego", "Failed to write to disk" => "BÅ‚Ä…d zapisu na dysk", -"Not enough space available" => "Za maÅ‚o miejsca", "Invalid directory." => "ZÅ‚a Å›cieżka.", "Files" => "Pliki", "Unshare" => "Nie udostÄ™pniaj", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index b1d7385bc5847e00f3112045577927ff6336fdb0..52c87ed728a918fb50db2f157f1b719e52705559 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -7,10 +7,10 @@ "No file was uploaded" => "Não foi enviado nenhum ficheiro", "Missing a temporary folder" => "Falta uma pasta temporária", "Failed to write to disk" => "Falhou a escrita no disco", -"Not enough space available" => "Espaço em disco insuficiente!", "Invalid directory." => "Directório Inválido", "Files" => "Ficheiros", "Unshare" => "Deixar de partilhar", +"Delete permanently" => "Eliminar permanentemente", "Delete" => "Apagar", "Rename" => "Renomear", "{new_name} already exists" => "O nome {new_name} já existe", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 7837b1f5b301d98a81213eb9f2567cccb6e1c75c..79ca1cf4f5121c99ae3e2c476589786de017cbd5 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Niciun fiÈ™ier încărcat", "Missing a temporary folder" => "LipseÈ™te un dosar temporar", "Failed to write to disk" => "Eroare la scriere pe disc", -"Not enough space available" => "Nu este suficient spaÈ›iu disponibil", "Invalid directory." => "Director invalid.", "Files" => "FiÈ™iere", "Unshare" => "Anulează partajarea", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 716afa5f29a462fe66a5cbcb30251ed182f3372d..05542452e7fcfee0bfdae1017ed69ad83a511ffc 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -7,10 +7,10 @@ "No file was uploaded" => "Файл не был загружен", "Missing a temporary folder" => "Ðевозможно найти временную папку", "Failed to write to disk" => "Ошибка запиÑи на диÑк", -"Not enough space available" => "ÐедоÑтаточно Ñвободного меÑта", "Invalid directory." => "Ðеправильный каталог.", "Files" => "Файлы", "Unshare" => "Отменить публикацию", +"Delete permanently" => "Удалено навÑегда", "Delete" => "Удалить", "Rename" => "Переименовать", "{new_name} already exists" => "{new_name} уже ÑущеÑтвует", @@ -20,9 +20,13 @@ "replaced {new_name}" => "заменено {new_name}", "undo" => "отмена", "replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}", +"perform delete operation" => "выполнÑетÑÑ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ", "'.' is an invalid file name." => "'.' - неправильное Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°.", "File name cannot be empty." => "Ð˜Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð° не может быть пуÑтым.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ðеправильное имÑ, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопуÑтимы.", +"Your storage is full, files can not be updated or synced anymore!" => "Ваше диÑковое проÑтранÑтво полноÑтью заполнено, произведите очиÑтку перед загрузкой новых файлов.", +"Your storage is almost full ({usedSpacePercent}%)" => "Ваше хранилище почти заполнено ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Загрузка началаÑÑŒ. Ðто может потребовать много времени, еÑли файл большого размера.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ðе удаетÑÑ Ð·Ð°Ð³Ñ€ÑƒÐ·Ð¸Ñ‚ÑŒ файл размером 0 байт в каталог", "Upload Error" => "Ошибка загрузки", "Close" => "Закрыть", @@ -53,11 +57,13 @@ "Text file" => "ТекÑтовый файл", "Folder" => "Папка", "From link" => "Из ÑÑылки", +"Trash" => "Корзина", "Cancel upload" => "Отмена загрузки", "Nothing in here. Upload something!" => "ЗдеÑÑŒ ничего нет. Загрузите что-нибудь!", "Download" => "Скачать", "Upload too large" => "Файл Ñлишком большой", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файлы, которые Ð’Ñ‹ пытаетеÑÑŒ загрузить, превышают лимит Ð´Ð»Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð² на Ñтом Ñервере.", "Files are being scanned, please wait." => "Подождите, файлы ÑканируютÑÑ.", -"Current scanning" => "Текущее Ñканирование" +"Current scanning" => "Текущее Ñканирование", +"Upgrading filesystem cache..." => "Обновление кеша файловой ÑиÑтемы..." ); diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index e1952567d318f106aef4135140b3fa8fa7a079d0..9b2913970f2efbe6ff7d4b8e1f5978ce1be1347e 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -7,10 +7,10 @@ "No file was uploaded" => "Файл не был загружен", "Missing a temporary folder" => "ОтÑутÑтвует Ð²Ñ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ Ð¿Ð°Ð¿ÐºÐ°", "Failed to write to disk" => "Ðе удалоÑÑŒ запиÑать на диÑк", -"Not enough space available" => "Ðе доÑтаточно Ñвободного меÑта", "Invalid directory." => "Ðеверный каталог.", "Files" => "Файлы", "Unshare" => "Скрыть", +"Delete permanently" => "Удалить навÑегда", "Delete" => "Удалить", "Rename" => "Переименовать", "{new_name} already exists" => "{новое_имÑ} уже ÑущеÑтвует", @@ -20,9 +20,13 @@ "replaced {new_name}" => "заменено {новое_имÑ}", "undo" => "отменить дейÑтвие", "replaced {new_name} with {old_name}" => "заменено {новое_имÑ} Ñ {Ñтарое_имÑ}", +"perform delete operation" => "выполнÑетÑÑ Ð¿Ñ€Ð¾Ñ†ÐµÑÑ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ", "'.' is an invalid file name." => "'.' ÑвлÑетÑÑ Ð½ÐµÐ²ÐµÑ€Ð½Ñ‹Ð¼ именем файла.", "File name cannot be empty." => "Ð˜Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð° не может быть пуÑтым.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ðекорректное имÑ, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не допуÑтимы.", +"Your storage is full, files can not be updated or synced anymore!" => "Ваше хранилище переполнено, фалы больше не могут быть обновлены или Ñинхронизированы!", +"Your storage is almost full ({usedSpacePercent}%)" => "Ваше хранилище почти полно ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Идёт подготовка к Ñкачке Вашего файла. Ðто может занÑÑ‚ÑŒ некоторое времÑ, еÑли фалы большие.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ðевозможно загрузить файл,\n так как он имеет нулевой размер или ÑвлÑетÑÑ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸ÐµÐ¹", "Upload Error" => "Ошибка загрузки", "Close" => "Закрыть", @@ -53,6 +57,7 @@ "Text file" => "ТекÑтовый файл", "Folder" => "Папка", "From link" => "По ÑÑылке", +"Trash" => "Корзина", "Cancel upload" => "Отмена загрузки", "Nothing in here. Upload something!" => "ЗдеÑÑŒ ничего нет. Загрузите что-нибудь!", "Download" => "Загрузить", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 9c27e21539700c708878dfbd279b56e080653b1a..be7f77adab076e38ff7b3525cd0ef46f20fe5b6e 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -7,10 +7,10 @@ "No file was uploaded" => "Žiaden súbor nebol nahraný", "Missing a temporary folder" => "Chýbajúci doÄasný prieÄinok", "Failed to write to disk" => "Zápis na disk sa nepodaril", -"Not enough space available" => "Nie je k dispozÃcii dostatok miesta", "Invalid directory." => "Neplatný adresár", "Files" => "Súbory", "Unshare" => "NezdielaÅ¥", +"Delete permanently" => "ZmazaÅ¥ trvalo", "Delete" => "OdstrániÅ¥", "Rename" => "PremenovaÅ¥", "{new_name} already exists" => "{new_name} už existuje", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 55493e24943f32d51f2096a5c652407c9ccb68d3..ebdaae9193f96cfdd23e2d7d63982a0f0790320b 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Ingen fil blev uppladdad", "Missing a temporary folder" => "Saknar en tillfällig mapp", "Failed to write to disk" => "Misslyckades spara till disk", -"Not enough space available" => "Inte tillräckligt med utrymme tillgängligt", "Invalid directory." => "Felaktig mapp.", "Files" => "Filer", "Unshare" => "Sluta dela", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 06dab9d8e6cb782c5ac0a05936597c6dd0699308..5f880702b822e6d7b035728ba125359305d8e91a 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -7,7 +7,6 @@ "No file was uploaded" => "ยังไม่มีไฟล์ที่ถูà¸à¸à¸±à¸žà¹‚หลด", "Missing a temporary folder" => "à¹à¸Ÿà¹‰à¸¡à¹€à¸à¸à¸ªà¸²à¸£à¸Šà¸±à¹ˆà¸§à¸„ราวเà¸à¸´à¸”à¸à¸²à¸£à¸ªà¸¹à¸à¸«à¸²à¸¢", "Failed to write to disk" => "เขียนข้à¸à¸¡à¸¹à¸¥à¸¥à¸‡à¹à¸œà¹ˆà¸™à¸”ิสà¸à¹Œà¸¥à¹‰à¸¡à¹€à¸«à¸¥à¸§", -"Not enough space available" => "มีพื้นที่เหลืà¸à¹„ม่เพียงพà¸", "Invalid directory." => "ไดเร็à¸à¸—à¸à¸£à¸µà¹ˆà¹„ม่ถูà¸à¸•à¹‰à¸à¸‡", "Files" => "ไฟล์", "Unshare" => "ยà¸à¹€à¸¥à¸´à¸à¸à¸²à¸£à¹à¸Šà¸£à¹Œà¸‚้à¸à¸¡à¸¹à¸¥", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 3412d8ad44842bed089a193700a626f2fca15bf2..3325cbe1ee47b2b3a23559ffea0e90455f79ab7b 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Hiç dosya yüklenmedi", "Missing a temporary folder" => "Geçici bir klasör eksik", "Failed to write to disk" => "Diske yazılamadı", -"Not enough space available" => "Yeterli disk alanı yok", "Invalid directory." => "Geçersiz dizin.", "Files" => "Dosyalar", "Unshare" => "Paylaşılmayan", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 9831dfe0f8ff942f762badbbb129e7a142855e77..4a76158c462785c90440290045222028e37204ab 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -7,8 +7,10 @@ "No file was uploaded" => "Ðе відвантажено жодного файлу", "Missing a temporary folder" => "ВідÑутній тимчаÑовий каталог", "Failed to write to disk" => "ÐевдалоÑÑ Ð·Ð°Ð¿Ð¸Ñати на диÑк", +"Invalid directory." => "Ðевірний каталог.", "Files" => "Файли", "Unshare" => "Заборонити доÑтуп", +"Delete permanently" => "Видалити назавжди", "Delete" => "Видалити", "Rename" => "Перейменувати", "{new_name} already exists" => "{new_name} вже Ñ–Ñнує", @@ -18,7 +20,13 @@ "replaced {new_name}" => "замінено {new_name}", "undo" => "відмінити", "replaced {new_name} with {old_name}" => "замінено {new_name} на {old_name}", +"perform delete operation" => "виконати операцію видаленнÑ", +"'.' is an invalid file name." => "'.' це невірне ім'Ñ Ñ„Ð°Ð¹Ð»Ñƒ.", +"File name cannot be empty." => " Ім'Ñ Ñ„Ð°Ð¹Ð»Ñƒ не може бути порожнім.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ðевірне ім'Ñ, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені.", +"Your storage is full, files can not be updated or synced anymore!" => "Ваше Ñховище переповнене, файли більше не можуть бути оновлені або Ñинхронізовані !", +"Your storage is almost full ({usedSpacePercent}%)" => "Ваше Ñховище майже повне ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Ваше Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð³Ð¾Ñ‚ÑƒÑ”Ñ‚ÑŒÑÑ. Це може зайнÑти деÑкий чаÑ, Ñкщо файли завеликі.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ðеможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт", "Upload Error" => "Помилка завантаженнÑ", "Close" => "Закрити", @@ -28,6 +36,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" => "Ðевірне ім'Ñ Ñ‚ÐµÐºÐ¸. ВикориÑÑ‚Ð°Ð½Ð½Ñ \"Shared\" зарезервовано Owncloud", "Name" => "Ім'Ñ", "Size" => "Розмір", "Modified" => "Змінено", @@ -48,11 +57,13 @@ "Text file" => "ТекÑтовий файл", "Folder" => "Папка", "From link" => "З поÑиланнÑ", +"Trash" => "Смітник", "Cancel upload" => "Перервати завантаженнÑ", "Nothing in here. Upload something!" => "Тут нічого немає. Відвантажте що-небудь!", "Download" => "Завантажити", "Upload too large" => "Файл занадто великий", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файли,що ви намагаєтеÑÑŒ відвантажити перевищують макÑимальний дозволений розмір файлів на цьому Ñервері.", "Files are being scanned, please wait." => "Файли ÑкануютьÑÑ, зачекайте, будь-лаÑка.", -"Current scanning" => "Поточне ÑкануваннÑ" +"Current scanning" => "Поточне ÑкануваннÑ", +"Upgrading filesystem cache..." => "ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ ÐºÐµÑˆÐ° файлової ÑиÑтеми..." ); diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 2491d6453403fa556a57f9597fd574745d294edc..3c87ee2b73fe92a6725e9a2c986bfe8ae0d8eef0 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -7,7 +7,6 @@ "No file was uploaded" => "æ–‡ä»¶æ²¡æœ‰ä¸Šä¼ ", "Missing a temporary folder" => "缺少临时目录", "Failed to write to disk" => "写入ç£ç›˜å¤±è´¥", -"Not enough space available" => "没有足够å¯ç”¨ç©ºé—´", "Invalid directory." => "æ— æ•ˆæ–‡ä»¶å¤¹ã€‚", "Files" => "文件", "Unshare" => "å–消分享", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 104cb3a619fb9e8863bf8c5737487403a0e2c9c7..439907821d48e49cb7acf075226911d8f43d2de4 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -7,7 +7,6 @@ "No file was uploaded" => "無已上傳檔案", "Missing a temporary folder" => "éºå¤±æš«å˜è³‡æ–™å¤¾", "Failed to write to disk" => "寫入硬碟失敗", -"Not enough space available" => "æ²’æœ‰è¶³å¤ çš„å¯ç”¨ç©ºé–“", "Invalid directory." => "無效的資料夾。", "Files" => "檔案", "Unshare" => "å–消共享", diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 0b4aa21eac32fbe75ece09dc781dbc0da528d846..7cf65915af038b6bb323d8892c7b76a41656efaf 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -37,7 +37,7 @@ </div> <?php if ($_['trash'] ): ?> <div id="trash" class="button"> - <a><?php echo $l->t('Trash');?></a> + <a><?php echo $l->t('Trash bin');?></a> </div> <?php endif; ?> <div id="uploadprogresswrapper"> diff --git a/apps/files_encryption/ajax/mode.php b/apps/files_encryption/ajax/mode.php deleted file mode 100644 index 64c5be944012aa7d447f0644740160ff296bf88b..0000000000000000000000000000000000000000 --- a/apps/files_encryption/ajax/mode.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php -/** - * Copyright (c) 2012, Bjoern Schiessle <schiessle@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ - -use OCA\Encryption\Keymanager; - -OCP\JSON::checkAppEnabled('files_encryption'); -OCP\JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - -$mode = $_POST['mode']; -$changePasswd = false; -$passwdChanged = false; - -if ( isset($_POST['newpasswd']) && isset($_POST['oldpasswd']) ) { - $oldpasswd = $_POST['oldpasswd']; - $newpasswd = $_POST['newpasswd']; - $changePasswd = true; - $passwdChanged = Keymanager::changePasswd($oldpasswd, $newpasswd); -} - -$query = \OC_DB::prepare( "SELECT mode FROM *PREFIX*encryption WHERE uid = ?" ); -$result = $query->execute(array(\OCP\User::getUser())); - -if ($result->fetchRow()){ - $query = OC_DB::prepare( 'UPDATE *PREFIX*encryption SET mode = ? WHERE uid = ?' ); -} else { - $query = OC_DB::prepare( 'INSERT INTO *PREFIX*encryption ( mode, uid ) VALUES( ?, ? )' ); -} - -if ( (!$changePasswd || $passwdChanged) && $query->execute(array($mode, \OCP\User::getUser())) ) { - OCP\JSON::success(); -} else { - OCP\JSON::error(); -} \ No newline at end of file diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index e426f237bbe467b4613d7dc3b52df01dfa27b273..08728622525e963ec6fb195b4ce05152c20a8008 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -12,7 +12,7 @@ OC_FileProxy::register( new OCA\Encryption\Proxy() ); // User-related hooks OCP\Util::connectHook( 'OC_User', 'post_login', 'OCA\Encryption\Hooks', 'login' ); -OCP\Util::connectHook( 'OC_User', 'post_setPassword','OCA\Encryption\Hooks', 'setPassphrase' ); +OCP\Util::connectHook( 'OC_User', 'pre_setPassword','OCA\Encryption\Hooks', 'setPassphrase' ); // Sharing-related hooks OCP\Util::connectHook( 'OCP\Share', 'post_shared', 'OCA\Encryption\Hooks', 'postShared' ); @@ -43,6 +43,6 @@ if ( } -// Reguster settings scripts +// Register settings scripts OCP\App::registerAdmin( 'files_encryption', 'settings' ); -OCP\App::registerPersonal( 'files_encryption', 'settings-personal' ); \ No newline at end of file +OCP\App::registerPersonal( 'files_encryption', 'settings-personal' ); diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 065ef9d24107a30c3a0fe0a9acada0046ff308d1..7e4f677ce9d230a9b7c80b029fd02fdce49b9e9e 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -38,12 +38,15 @@ class Hooks { */ public static function login( $params ) { + // Manually initialise Filesystem{} singleton with correct + // fake root path, in order to avoid fatal webdav errors \OC\Files\Filesystem::init( $params['uid'] . '/' . 'files' . '/' ); $view = new \OC_FilesystemView( '/' ); $util = new Util( $view, $params['uid'] ); + // Check files_encryption infrastructure is ready for action if ( ! $util->ready() ) { \OC_Log::write( 'Encryption library', 'User account "' . $params['uid'] . '" is not ready for encryption; configuration started', \OC_Log::DEBUG ); @@ -104,14 +107,16 @@ class Hooks { * @param array $params keys: uid, password */ public static function setPassphrase( $params ) { - + // Only attempt to change passphrase if server-side encryption // is in use (client-side encryption does not have access to // the necessary keys) if ( Crypt::mode() == 'server' ) { + $session = new Session(); + // Get existing decrypted private key - $privateKey = $_SESSION['privateKey']; + $privateKey = $session->getPrivateKey(); // Encrypt private key with new user pwd as passphrase $encryptedPrivateKey = Crypt::symmetricEncryptFileContent( $privateKey, $params['password'] ); @@ -160,16 +165,6 @@ class Hooks { * @brief */ public static function postShared( $params ) { - - // Delete existing catfile - Keymanager::deleteFileKey( ); - - // Generate new catfile and env keys - Crypt::multiKeyEncrypt( $plainContent, $publicKeys ); - - // Save env keys to user folders - - } /** diff --git a/apps/files_encryption/js/settings-personal.js b/apps/files_encryption/js/settings-personal.js deleted file mode 100644 index 1a53e99d2b4da326c10710ac2cb14617e3c68070..0000000000000000000000000000000000000000 --- a/apps/files_encryption/js/settings-personal.js +++ /dev/null @@ -1,38 +0,0 @@ -/** - * Copyright (c) 2012, Bjoern Schiessle <schiessle@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ - -$(document).ready(function(){ - $('input[name=encryption_mode]').change(function(){ - var prevmode = document.getElementById('prev_encryption_mode').value - var client=$('input[value="client"]:checked').val() - ,server=$('input[value="server"]:checked').val() - ,user=$('input[value="user"]:checked').val() - ,none=$('input[value="none"]:checked').val() - if (client) { - $.post(OC.filePath('files_encryption', 'ajax', 'mode.php'), { mode: 'client' }); - if (prevmode == 'server') { - OC.dialogs.info(t('encryption', 'Please switch to your ownCloud client and change your encryption password to complete the conversion.'), t('encryption', 'switched to client side encryption')); - } - } else if (server) { - if (prevmode == 'client') { - OC.dialogs.form([{text:'Login password', name:'newpasswd', type:'password'},{text:'Encryption password used on the client', name:'oldpasswd', type:'password'}],t('encryption', 'Change encryption password to login password'), function(data) { - $.post(OC.filePath('files_encryption', 'ajax', 'mode.php'), { mode: 'server', newpasswd: data[0].value, oldpasswd: data[1].value }, function(result) { - if (result.status != 'success') { - document.getElementById(prevmode+'_encryption').checked = true; - OC.dialogs.alert(t('encryption', 'Please check your passwords and try again.'), t('encryption', 'Could not change your file encryption password to your login password')) - } else { - console.log("alles super"); - } - }, true); - }); - } else { - $.post(OC.filePath('files_encryption', 'ajax', 'mode.php'), { mode: 'server' }); - } - } else { - $.post(OC.filePath('files_encryption', 'ajax', 'mode.php'), { mode: 'none' }); - } - }) -}) \ No newline at end of file diff --git a/apps/files_encryption/js/settings.js b/apps/files_encryption/js/settings.js index 60563bde859cd59683bbb7706fb4c0992b3523f9..0be857bb73e9dd6d35a7ad30e702d3a5c25a08a6 100644 --- a/apps/files_encryption/js/settings.js +++ b/apps/files_encryption/js/settings.js @@ -9,38 +9,11 @@ $(document).ready(function(){ $('#encryption_blacklist').multiSelect({ oncheck:blackListChange, onuncheck:blackListChange, - createText:'...', + createText:'...' }); function blackListChange(){ var blackList=$('#encryption_blacklist').val().join(','); OC.AppConfig.setValue('files_encryption','type_blacklist',blackList); } - - //TODO: Handle switch between client and server side encryption - $('input[name=encryption_mode]').change(function(){ - var client=$('input[value="client"]:checked').val() - ,server=$('input[value="server"]:checked').val() - ,user=$('input[value="user"]:checked').val() - ,none=$('input[value="none"]:checked').val() - ,disable=false - if (client) { - OC.AppConfig.setValue('files_encryption','mode','client'); - disable = true; - } else if (server) { - OC.AppConfig.setValue('files_encryption','mode','server'); - disable = true; - } else if (user) { - OC.AppConfig.setValue('files_encryption','mode','user'); - disable = true; - } else { - OC.AppConfig.setValue('files_encryption','mode','none'); - } - if (disable) { - document.getElementById('server_encryption').disabled = true; - document.getElementById('client_encryption').disabled = true; - document.getElementById('user_encryption').disabled = true; - document.getElementById('none_encryption').disabled = true; - } - }) }) \ No newline at end of file diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index 815cf1af003d06992862ebcf2e42655cd5045796..1b888f7714bc91834a9aa4a16e4f6e9b53080de9 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Comproveu les contrasenyes i proveu-ho de nou.", "Could not change your file encryption password to your login password" => "No s'ha pogut canviar la contrasenya d'encriptació de fitxers per la d'accés", "Encryption" => "Encriptatge", +"File encryption is enabled." => "L'encriptació de fitxers està activada.", +"The following file types will not be encrypted:" => "Els tipus de fitxers següents no s'encriptaran:", +"Exclude the following file types from encryption:" => "Exclou els tipus de fitxers següents de l'encriptatge:", "None" => "Cap" ); diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 27d2ae544b587021ba3b5d0d395f70773a9fae33..3278f13920ac636f1e0534a8010819138e5cfbe9 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Zkontrolujte, prosÃm, své heslo a zkuste to znovu.", "Could not change your file encryption password to your login password" => "Nelze zmÄ›nit Å¡ifrovacà heslo na pÅ™ihlaÅ¡ovacÃ.", "Encryption" => "Å ifrovánÃ", +"File encryption is enabled." => "Å ifrovánà je povoleno.", +"The following file types will not be encrypted:" => "NásledujÃcà typy souborů nebudou Å¡ifrovány:", +"Exclude the following file types from encryption:" => "Vyjmout následujÃcà typy souborů ze Å¡ifrovánÃ:", "None" => "Žádné" ); diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index c3c69e09007d2884cfa153f5bdc928e13fbf7522..465af23efddf13c3f920cd82f0ce495ce540e8e7 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut.", "Could not change your file encryption password to your login password" => "Ihr Verschlüsselungspasswort konnte nicht als Anmeldepasswort gesetzt werden.", "Encryption" => "Verschlüsselung", +"File encryption is enabled." => "Datei-Verschlüsselung ist aktiviert", +"The following file types will not be encrypted:" => "Die folgenden Datei-Typen werden nicht verschlüsselt:", +"Exclude the following file types from encryption:" => "Die folgenden Datei-Typen von der Verschlüsselung ausnehmen:", "None" => "Keine" ); diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 87f984c2c10fb69846218dab55407de153f5174e..73b5f273d1f9c1edd0faa677e81315c4a86a033c 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Por favor revise su contraseña e intentelo de nuevo.", "Could not change your file encryption password to your login password" => "No se pudo cambiar la contraseña de cifrado de archivos de su contraseña de inicio de sesión", "Encryption" => "Cifrado", +"File encryption is enabled." => "La encriptacion de archivo esta activada.", +"The following file types will not be encrypted:" => "Los siguientes tipos de archivo no seran encriptados:", +"Exclude the following file types from encryption:" => "Excluir los siguientes tipos de archivo de la encriptacion:", "None" => "Ninguno" ); diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 608778b2ec8ab104537b59ec1e6637b3d80dde73..7d431e6e462b923778f1b358b3c12279f00ce27e 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Veuillez vérifier vos mots de passe et réessayer.", "Could not change your file encryption password to your login password" => "Impossible de convertir votre mot de passe de chiffrement en mot de passe de connexion", "Encryption" => "Chiffrement", +"File encryption is enabled." => "Le chiffrement des fichiers est activé", +"The following file types will not be encrypted:" => "Les fichiers de types suivants ne seront pas chiffrés :", +"Exclude the following file types from encryption:" => "Ne pas chiffrer les fichiers dont les types sont les suivants :", "None" => "Aucun" ); diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 86e1a66c4584536f9ef4da2986f986b7f547690e..ffa20b718d98b26537cd55da9df04315288f37e8 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Controlla la password e prova ancora.", "Could not change your file encryption password to your login password" => "Impossibile convertire la password di cifratura nella password di accesso", "Encryption" => "Cifratura", +"File encryption is enabled." => "La cifratura dei file è abilitata.", +"The following file types will not be encrypted:" => "I seguenti tipi di file non saranno cifrati:", +"Exclude the following file types from encryption:" => "Escludi i seguenti tipi di file dalla cifratura:", "None" => "Nessuna" ); diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index 8d3df1f06ae959d6090918982488752fe84a415e..b7aeb8d8348c3a4a59b0d6050fef3b3c393554e5 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "パスワードを確èªã—ã¦ã‚‚ã†ä¸€åº¦è¡Œãªã£ã¦ãã ã•ã„。", "Could not change your file encryption password to your login password" => "ファイル暗å·åŒ–パスワードをãƒã‚°ã‚¤ãƒ³ãƒ‘スワードã«å¤‰æ›´ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚", "Encryption" => "æš—å·åŒ–", +"File encryption is enabled." => "ファイルã®æš—å·åŒ–ã¯æœ‰åŠ¹ã§ã™ã€‚", +"The following file types will not be encrypted:" => "次ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚¿ã‚¤ãƒ—ã¯æš—å·åŒ–ã•ã‚Œã¾ã›ã‚“:", +"Exclude the following file types from encryption:" => "次ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚¿ã‚¤ãƒ—ã‚’æš—å·åŒ–ã‹ã‚‰é™¤å¤–:", "None" => "ãªã—" ); diff --git a/apps/files_encryption/l10n/lv.php b/apps/files_encryption/l10n/lv.php index 7b94bb99e1a54daf7ad1322b0bb547bbced1dffe..1aae1377516dea0252bd05e6070e985f22630626 100644 --- a/apps/files_encryption/l10n/lv.php +++ b/apps/files_encryption/l10n/lv.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "LÅ«dzu, pÄrbaudiet savas paroles un mÄ“Ä£iniet vÄ“lreiz.", "Could not change your file encryption password to your login password" => "NevarÄ“ja mainÄ«t datņu Å¡ifrÄ“Å¡anas paroli uz ierakstÄ«Å¡anÄs paroli", "Encryption" => "Å ifrÄ“Å¡ana", +"File encryption is enabled." => "Datņu Å¡ifrÄ“Å¡ana ir aktivÄ“ta.", +"The following file types will not be encrypted:" => "SekojoÅ¡Äs datnes netiks Å¡ifrÄ“tas:", +"Exclude the following file types from encryption:" => "SekojoÅ¡os datņu tipus izslÄ“gt no Å¡ifrÄ“Å¡anas:", "None" => "Nav" ); diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index fc8a7954a9e5bf82650cf48c4438cfe5907e950e..c434330049bf124f806993b19ce71e867862a4c6 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -1,8 +1,12 @@ <?php $TRANSLATIONS = array( +"Please switch to your ownCloud client and change your encryption password to complete the conversion." => "Schakel om naar uw eigen ownCloud client en wijzig uw versleutelwachtwoord om de conversie af te ronden.", "switched to client side encryption" => "overgeschakeld naar client side encryptie", "Change encryption password to login password" => "Verander encryptie wachtwoord naar login wachtwoord", "Please check your passwords and try again." => "Controleer uw wachtwoorden en probeer het opnieuw.", "Could not change your file encryption password to your login password" => "Kon het bestandsencryptie wachtwoord niet veranderen naar het login wachtwoord", "Encryption" => "Versleuteling", +"File encryption is enabled." => "Bestandsversleuteling geactiveerd.", +"The following file types will not be encrypted:" => "De volgende bestandstypen zullen niet worden versleuteld:", +"Exclude the following file types from encryption:" => "Sluit de volgende bestandstypen uit van versleuteling:", "None" => "Geen" ); diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index c11cf74ecfbb36cb64f54551b877f1313cd41323..651885fe022fbe44ea237e002b57d31d9c814b30 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -1,4 +1,12 @@ <?php $TRANSLATIONS = array( +"Please switch to your ownCloud client and change your encryption password to complete the conversion." => "ПожалуйÑта переключитеÑÑŒ на Ваш клиент ownCloud и поменÑйте пароль ÑˆÐ¸Ð²Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ð¿Ñ€ÐµÐ¾Ð±Ñ€Ð°Ð·Ð¾Ð²Ð°Ð½Ð¸Ñ.", +"switched to client side encryption" => "переключён на шифрование Ñо Ñтороны клиента", +"Change encryption password to login password" => "Изменить пароль ÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð²Ñ…Ð¾Ð´Ð°", +"Please check your passwords and try again." => "ПожалуйÑта проверьте пароли и попробуйте Ñнова.", +"Could not change your file encryption password to your login password" => "Ðевозможно изменить Ваш пароль файла ÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð²Ñ…Ð¾Ð´Ð°", "Encryption" => "Шифрование", +"File encryption is enabled." => "Шифрование файла включено.", +"The following file types will not be encrypted:" => "Следующие типы файлов не будут зашифрованы:", +"Exclude the following file types from encryption:" => "ИÑключить Ñледующие типы файлов из шифрованных:", "None" => "Ðичего" ); diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php index 3a1e4c7e194c5679016238f154722064f80bdaae..dc2907e704f8a9eb136daf14638b0ace55c18dda 100644 --- a/apps/files_encryption/l10n/sk_SK.php +++ b/apps/files_encryption/l10n/sk_SK.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Skontrolujte si heslo a skúste to znovu.", "Could not change your file encryption password to your login password" => "Nie je možné zmeniÅ¥ Å¡ifrovacie heslo na prihlasovacie", "Encryption" => "Å ifrovanie", +"File encryption is enabled." => "Kryptovanie súborov nastavené.", +"The following file types will not be encrypted:" => "Uvedené typy súborov nebudú kryptované:", +"Exclude the following file types from encryption:" => "NekryptovaÅ¥ uvedené typy súborov", "None" => "Žiadne" ); diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index c3f92dc66eb18de6deea2a7653a62146f7c46886..e5294974e4efc9f35fda7d7e72f74bc1c6b24d6b 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Kontrollera dina lösenord och försök igen.", "Could not change your file encryption password to your login password" => "Kunde inte ändra ditt filkrypteringslösenord till ditt loginlösenord", "Encryption" => "Kryptering", +"File encryption is enabled." => "Filkryptering är aktiverat.", +"The following file types will not be encrypted:" => "Följande filtyper kommer inte att krypteras:", +"Exclude the following file types from encryption:" => "Exkludera följande filtyper frÃ¥n kryptering:", "None" => "Ingen" ); diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index e3ffacabc9a829176cbcf746889e61414e9cd90e..c7a414c5080926a9b17ca9a18870c1efcf94f74f 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -4,8 +4,8 @@ * ownCloud * * @author Sam Tuke, Frank Karlitschek, Robin Appelman - * @copyright 2012 Sam Tuke samtuke@owncloud.com, - * Robin Appelman icewind@owncloud.com, Frank Karlitschek + * @copyright 2012 Sam Tuke samtuke@owncloud.com, + * Robin Appelman icewind@owncloud.com, Frank Karlitschek * frank@owncloud.org * * This library is free software; you can redistribute it and/or @@ -45,35 +45,17 @@ class Crypt { * @return string 'client' or 'server' */ public static function mode( $user = null ) { - -// $mode = \OC_Appconfig::getValue( 'files_encryption', 'mode', 'none' ); -// -// if ( $mode == 'user') { -// if ( !$user ) { -// $user = \OCP\User::getUser(); -// } -// $mode = 'none'; -// if ( $user ) { -// $query = \OC_DB::prepare( "SELECT mode FROM *PREFIX*encryption WHERE uid = ?" ); -// $result = $query->execute(array($user)); -// if ($row = $result->fetchRow()){ -// $mode = $row['mode']; -// } -// } -// } -// -// return $mode; return 'server'; - + } - - /** - * @brief Create a new encryption keypair - * @return array publicKey, privatekey - */ + + /** + * @brief Create a new encryption keypair + * @return array publicKey, privatekey + */ public static function createKeypair() { - + $res = openssl_pkey_new(); // Get private key @@ -81,576 +63,543 @@ class Crypt { // Get public key $publicKey = openssl_pkey_get_details( $res ); - + $publicKey = $publicKey['key']; - + return( array( 'publicKey' => $publicKey, 'privateKey' => $privateKey ) ); - + } - - /** - * @brief Add arbitrary padding to encrypted data - * @param string $data data to be padded - * @return padded data - * @note In order to end up with data exactly 8192 bytes long we must - * add two letters. It is impossible to achieve exactly 8192 length - * blocks with encryption alone, hence padding is added to achieve the - * required length. - */ + + /** + * @brief Add arbitrary padding to encrypted data + * @param string $data data to be padded + * @return padded data + * @note In order to end up with data exactly 8192 bytes long we must + * add two letters. It is impossible to achieve exactly 8192 length + * blocks with encryption alone, hence padding is added to achieve the + * required length. + */ public static function addPadding( $data ) { - + $padded = $data . 'xx'; - + return $padded; - + } - - /** - * @brief Remove arbitrary padding to encrypted data - * @param string $padded padded data to remove padding from - * @return unpadded data on success, false on error - */ + + /** + * @brief Remove arbitrary padding to encrypted data + * @param string $padded padded data to remove padding from + * @return unpadded data on success, false on error + */ public static function removePadding( $padded ) { - + if ( substr( $padded, -2 ) == 'xx' ) { - + $data = substr( $padded, 0, -2 ); - + return $data; - + } else { - + // TODO: log the fact that unpadded data was submitted for removal of padding return false; - + } - + } - - /** - * @brief Check if a file's contents contains an IV and is symmetrically encrypted - * @return true / false - * @note see also OCA\Encryption\Util->isEncryptedPath() - */ + + /** + * @brief Check if a file's contents contains an IV and is symmetrically encrypted + * @return true / false + * @note see also OCA\Encryption\Util->isEncryptedPath() + */ public static function isCatfile( $content ) { - + if ( !$content ) { - + return false; - + } - + $noPadding = self::removePadding( $content ); - + // Fetch encryption metadata from end of file $meta = substr( $noPadding, -22 ); - + // Fetch IV from end of file $iv = substr( $meta, -16 ); - + // Fetch identifier from start of metadata $identifier = substr( $meta, 0, 6 ); - + if ( $identifier == '00iv00') { - + return true; - + } else { - + return false; - + } - + } - + /** * Check if a file is encrypted according to database file cache * @param string $path * @return bool */ public static function isEncryptedMeta( $path ) { - + // TODO: Use DI to get \OC\Files\Filesystem out of here - + // Fetch all file metadata from DB $metadata = \OC\Files\Filesystem::getFileInfo( $path, '' ); - + // Return encryption status return isset( $metadata['encrypted'] ) and ( bool )$metadata['encrypted']; - + } - - /** - * @brief Check if a file is encrypted via legacy system - * @param string $relPath The path of the file, relative to user/data; - * e.g. filename or /Docs/filename, NOT admin/files/filename - * @return true / false - */ + + /** + * @brief Check if a file is encrypted via legacy system + * @param string $relPath The path of the file, relative to user/data; + * e.g. filename or /Docs/filename, NOT admin/files/filename + * @return true / false + */ public static function isLegacyEncryptedContent( $data, $relPath ) { - + // Fetch all file metadata from DB $metadata = \OC\Files\Filesystem::getFileInfo( $relPath, '' ); - + // If a file is flagged with encryption in DB, but isn't a // valid content + IV combination, it's probably using the // legacy encryption system - if ( - isset( $metadata['encrypted'] ) - and $metadata['encrypted'] === true - and ! self::isCatfile( $data ) + if ( + isset( $metadata['encrypted'] ) + and $metadata['encrypted'] === true + and ! self::isCatfile( $data ) ) { - + return true; - + } else { - + return false; - + } - + } - - /** - * @brief Symmetrically encrypt a string - * @returns encrypted file - */ + + /** + * @brief Symmetrically encrypt a string + * @returns encrypted file + */ public static function encrypt( $plainContent, $iv, $passphrase = '' ) { - + if ( $encryptedContent = openssl_encrypt( $plainContent, 'AES-128-CFB', $passphrase, false, $iv ) ) { return $encryptedContent; - + } else { - + \OC_Log::write( 'Encryption library', 'Encryption (symmetric) of content failed', \OC_Log::ERROR ); - + return false; - + } - + } - - /** - * @brief Symmetrically decrypt a string - * @returns decrypted file - */ + + /** + * @brief Symmetrically decrypt a string + * @returns decrypted file + */ public static function decrypt( $encryptedContent, $iv, $passphrase ) { - + if ( $plainContent = openssl_decrypt( $encryptedContent, 'AES-128-CFB', $passphrase, false, $iv ) ) { return $plainContent; - - + + } else { - + throw new \Exception( 'Encryption library: Decryption (symmetric) of content failed' ); - - return false; - + } - + } - - /** - * @brief Concatenate encrypted data with its IV and padding - * @param string $content content to be concatenated - * @param string $iv IV to be concatenated - * @returns string concatenated content - */ + + /** + * @brief Concatenate encrypted data with its IV and padding + * @param string $content content to be concatenated + * @param string $iv IV to be concatenated + * @returns string concatenated content + */ public static function concatIv ( $content, $iv ) { - + $combined = $content . '00iv00' . $iv; - + return $combined; - + } - - /** - * @brief Split concatenated data and IV into respective parts - * @param string $catFile concatenated data to be split - * @returns array keys: encrypted, iv - */ + + /** + * @brief Split concatenated data and IV into respective parts + * @param string $catFile concatenated data to be split + * @returns array keys: encrypted, iv + */ public static function splitIv ( $catFile ) { - + // Fetch encryption metadata from end of file $meta = substr( $catFile, -22 ); - + // Fetch IV from end of file $iv = substr( $meta, -16 ); - + // Remove IV and IV identifier text to expose encrypted content $encrypted = substr( $catFile, 0, -22 ); - + $split = array( 'encrypted' => $encrypted - , 'iv' => $iv + , 'iv' => $iv ); - + return $split; - + } - - /** - * @brief Symmetrically encrypts a string and returns keyfile content - * @param $plainContent content to be encrypted in keyfile - * @returns encrypted content combined with IV - * @note IV need not be specified, as it will be stored in the returned keyfile - * and remain accessible therein. - */ + + /** + * @brief Symmetrically encrypts a string and returns keyfile content + * @param $plainContent content to be encrypted in keyfile + * @returns encrypted content combined with IV + * @note IV need not be specified, as it will be stored in the returned keyfile + * and remain accessible therein. + */ public static function symmetricEncryptFileContent( $plainContent, $passphrase = '' ) { - + if ( !$plainContent ) { - + return false; - + } - + $iv = self::generateIv(); - + if ( $encryptedContent = self::encrypt( $plainContent, $iv, $passphrase ) ) { - - // Combine content to encrypt with IV identifier and actual IV - $catfile = self::concatIv( $encryptedContent, $iv ); - - $padded = self::addPadding( $catfile ); - - return $padded; - + + // Combine content to encrypt with IV identifier and actual IV + $catfile = self::concatIv( $encryptedContent, $iv ); + + $padded = self::addPadding( $catfile ); + + return $padded; + } else { - + \OC_Log::write( 'Encryption library', 'Encryption (symmetric) of keyfile content failed', \OC_Log::ERROR ); - + return false; - + } - + } /** - * @brief Symmetrically decrypts keyfile content - * @param string $source - * @param string $target - * @param string $key the decryption key - * @returns decrypted content - * - * This function decrypts a file - */ + * @brief Symmetrically decrypts keyfile content + * @param string $source + * @param string $target + * @param string $key the decryption key + * @returns decrypted content + * + * This function decrypts a file + */ public static function symmetricDecryptFileContent( $keyfileContent, $passphrase = '' ) { - + if ( !$keyfileContent ) { - + throw new \Exception( 'Encryption library: no data provided for decryption' ); - + } - + // Remove padding $noPadding = self::removePadding( $keyfileContent ); - + // Split into enc data and catfile $catfile = self::splitIv( $noPadding ); - + if ( $plainContent = self::decrypt( $catfile['encrypted'], $catfile['iv'], $passphrase ) ) { - + return $plainContent; - + } - + } - + /** - * @brief Creates symmetric keyfile content using a generated key - * @param string $plainContent content to be encrypted - * @returns array keys: key, encrypted - * @note symmetricDecryptFileContent() can be used to decrypt files created using this method - * - * This function decrypts a file - */ + * @brief Creates symmetric keyfile content using a generated key + * @param string $plainContent content to be encrypted + * @returns array keys: key, encrypted + * @note symmetricDecryptFileContent() can be used to decrypt files created using this method + * + * This function decrypts a file + */ public static function symmetricEncryptFileContentKeyfile( $plainContent ) { - + $key = self::generateKey(); - + if( $encryptedContent = self::symmetricEncryptFileContent( $plainContent, $key ) ) { - + return array( 'key' => $key - , 'encrypted' => $encryptedContent + , 'encrypted' => $encryptedContent ); - + } else { - + return false; - + } - + } - + /** - * @brief Create asymmetrically encrypted keyfile content using a generated key - * @param string $plainContent content to be encrypted - * @returns array keys: key, encrypted - * @note symmetricDecryptFileContent() can be used to decrypt files created using this method - * - * This function decrypts a file - */ + * @brief Create asymmetrically encrypted keyfile content using a generated key + * @param string $plainContent content to be encrypted + * @returns array keys: key, encrypted + * @note symmetricDecryptFileContent() can be used to decrypt files created using this method + * + * This function decrypts a file + */ public static function multiKeyEncrypt( $plainContent, array $publicKeys ) { - + // Set empty vars to be set by openssl by reference $sealed = ''; $envKeys = array(); - + if( openssl_seal( $plainContent, $sealed, $envKeys, $publicKeys ) ) { - + return array( 'keys' => $envKeys - , 'encrypted' => $sealed + , 'encrypted' => $sealed ); - + } else { - + return false; - + } - + } - + /** - * @brief Asymmetrically encrypt a file using multiple public keys - * @param string $plainContent content to be encrypted - * @returns string $plainContent decrypted string - * @note symmetricDecryptFileContent() can be used to decrypt files created using this method - * - * This function decrypts a file - */ + * @brief Asymmetrically encrypt a file using multiple public keys + * @param string $plainContent content to be encrypted + * @returns string $plainContent decrypted string + * @note symmetricDecryptFileContent() can be used to decrypt files created using this method + * + * This function decrypts a file + */ public static function multiKeyDecrypt( $encryptedContent, $envKey, $privateKey ) { - + if ( !$encryptedContent ) { - + return false; - + } - + if ( openssl_open( $encryptedContent, $plainContent, $envKey, $privateKey ) ) { - + return $plainContent; - + } else { - + \OC_Log::write( 'Encryption library', 'Decryption (asymmetric) of sealed content failed', \OC_Log::ERROR ); - + return false; - + } - + } - - /** - * @brief Asymetrically encrypt a string using a public key - * @returns encrypted file - */ + + /** + * @brief Asymmetrically encrypt a string using a public key + * @returns encrypted file + */ public static function keyEncrypt( $plainContent, $publicKey ) { - + openssl_public_encrypt( $plainContent, $encryptedContent, $publicKey ); - + return $encryptedContent; - + } - - /** - * @brief Asymetrically decrypt a file using a private key - * @returns decrypted file - */ + + /** + * @brief Asymetrically decrypt a file using a private key + * @returns decrypted file + */ public static function keyDecrypt( $encryptedContent, $privatekey ) { - + openssl_private_decrypt( $encryptedContent, $plainContent, $privatekey ); - + return $plainContent; - + } - /** - * @brief Encrypts content symmetrically and generates keyfile asymmetrically - * @returns array containing catfile and new keyfile. - * keys: data, key - * @note this method is a wrapper for combining other crypt class methods - */ + /** + * @brief Encrypts content symmetrically and generates keyfile asymmetrically + * @returns array containing catfile and new keyfile. + * keys: data, key + * @note this method is a wrapper for combining other crypt class methods + */ public static function keyEncryptKeyfile( $plainContent, $publicKey ) { - + // Encrypt plain data, generate keyfile & encrypted file $cryptedData = self::symmetricEncryptFileContentKeyfile( $plainContent ); - + // Encrypt keyfile $cryptedKey = self::keyEncrypt( $cryptedData['key'], $publicKey ); - + return array( 'data' => $cryptedData['encrypted'], 'key' => $cryptedKey ); - + } - - /** - * @brief Takes catfile, keyfile, and private key, and - * performs decryption - * @returns decrypted content - * @note this method is a wrapper for combining other crypt class methods - */ + + /** + * @brief Takes catfile, keyfile, and private key, and + * performs decryption + * @returns decrypted content + * @note this method is a wrapper for combining other crypt class methods + */ public static function keyDecryptKeyfile( $catfile, $keyfile, $privateKey ) { - + // Decrypt the keyfile with the user's private key $decryptedKeyfile = self::keyDecrypt( $keyfile, $privateKey ); - + // Decrypt the catfile symmetrically using the decrypted keyfile $decryptedData = self::symmetricDecryptFileContent( $catfile, $decryptedKeyfile ); - + return $decryptedData; - + } - + /** - * @brief Symmetrically encrypt a file by combining encrypted component data blocks - */ + * @brief Symmetrically encrypt a file by combining encrypted component data blocks + */ public static function symmetricBlockEncryptFileContent( $plainContent, $key ) { - + $crypted = ''; - + $remaining = $plainContent; - + $testarray = array(); - + while( strlen( $remaining ) ) { - + //echo "\n\n\$block = ".substr( $remaining, 0, 6126 ); - + // Encrypt a chunk of unencrypted data and add it to the rest $block = self::symmetricEncryptFileContent( substr( $remaining, 0, 6126 ), $key ); - + $padded = self::addPadding( $block ); - + $crypted .= $block; - + $testarray[] = $block; - + // Remove the data already encrypted from remaining unencrypted data $remaining = substr( $remaining, 6126 ); - + } - - //echo "hags "; - - //echo "\n\n\n\$crypted = $crypted\n\n\n"; - - //print_r($testarray); - + return $crypted; } /** - * @brief Symmetrically decrypt a file by combining encrypted component data blocks - */ + * @brief Symmetrically decrypt a file by combining encrypted component data blocks + */ public static function symmetricBlockDecryptFileContent( $crypted, $key ) { - + $decrypted = ''; - + $remaining = $crypted; - + $testarray = array(); - + while( strlen( $remaining ) ) { - + $testarray[] = substr( $remaining, 0, 8192 ); - + // Decrypt a chunk of unencrypted data and add it to the rest $decrypted .= self::symmetricDecryptFileContent( $remaining, $key ); - + // Remove the data already encrypted from remaining unencrypted data $remaining = substr( $remaining, 8192 ); - + } - - //echo "\n\n\$testarray = "; print_r($testarray); - + return $decrypted; - + } - - /** - * @brief Generates a pseudo random initialisation vector - * @return String $iv generated IV - */ + + /** + * @brief Generates a pseudo random initialisation vector + * @return String $iv generated IV + */ public static function generateIv() { - + if ( $random = openssl_random_pseudo_bytes( 12, $strong ) ) { - + if ( !$strong ) { - + // If OpenSSL indicates randomness is insecure, log error \OC_Log::write( 'Encryption library', 'Insecure symmetric key was generated using openssl_random_pseudo_bytes()', \OC_Log::WARN ); - + } - + // We encode the iv purely for string manipulation // purposes - it gets decoded before use $iv = base64_encode( $random ); - + return $iv; - + } else { - - throw new Exception( 'Generating IV failed' ); - + + throw new \Exception( 'Generating IV failed' ); + } - + } - - /** - * @brief Generate a pseudo random 1024kb ASCII key - * @returns $key Generated key - */ + + /** + * @brief Generate a pseudo random 1024kb ASCII key + * @returns $key Generated key + */ public static function generateKey() { - + // Generate key if ( $key = base64_encode( openssl_random_pseudo_bytes( 183, $strong ) ) ) { - + if ( !$strong ) { - + // If OpenSSL indicates randomness is insecure, log error - throw new Exception ( 'Encryption library, Insecure symmetric key was generated using openssl_random_pseudo_bytes()' ); - + throw new \Exception ( 'Encryption library, Insecure symmetric key was generated using openssl_random_pseudo_bytes()' ); + } - + return $key; - + } else { - + return false; - - } - - } - public static function changekeypasscode( $oldPassword, $newPassword ) { - - if ( \OCP\User::isLoggedIn() ) { - - $key = Keymanager::getPrivateKey( $user, $view ); - - if ( ( $key = Crypt::symmetricDecryptFileContent($key,$oldpasswd) ) ) { - - if ( ( $key = Crypt::symmetricEncryptFileContent( $key, $newpasswd ) ) ) { - - Keymanager::setPrivateKey( $key ); - - return true; - } - - } - } - - return false; - + } - + /** * @brief Get the blowfish encryption handeler for a key * @param $key string (optional) @@ -659,21 +608,21 @@ class Crypt { * if the key is left out, the default handeler will be used */ public static function getBlowfish( $key = '' ) { - + if ( $key ) { - + return new \Crypt_Blowfish( $key ); - + } else { - + return false; - + } - + } - + public static function legacyCreateKey( $passphrase ) { - + // Generate a random integer $key = mt_rand( 10000, 99999 ) . mt_rand( 10000, 99999 ) . mt_rand( 10000, 99999 ) . mt_rand( 10000, 99999 ); @@ -681,9 +630,9 @@ class Crypt { $legacyEncKey = self::legacyEncrypt( $key, $passphrase ); return $legacyEncKey; - + } - + /** * @brief encrypts content using legacy blowfish system * @param $content the cleartext message you want to encrypt @@ -693,54 +642,54 @@ class Crypt { * This function encrypts an content */ public static function legacyEncrypt( $content, $passphrase = '' ) { - + $bf = self::getBlowfish( $passphrase ); - + return $bf->encrypt( $content ); - + } - + /** - * @brief decrypts content using legacy blowfish system - * @param $content the cleartext message you want to decrypt - * @param $key the encryption key (optional) - * @returns cleartext content - * - * This function decrypts an content - */ + * @brief decrypts content using legacy blowfish system + * @param $content the cleartext message you want to decrypt + * @param $key the encryption key (optional) + * @returns cleartext content + * + * This function decrypts an content + */ public static function legacyDecrypt( $content, $passphrase = '' ) { - + $bf = self::getBlowfish( $passphrase ); - + $decrypted = $bf->decrypt( $content ); - + $trimmed = rtrim( $decrypted, "\0" ); - + return $trimmed; - + } - + public static function legacyKeyRecryptKeyfile( $legacyEncryptedContent, $legacyPassphrase, $publicKey, $newPassphrase ) { - + $decrypted = self::legacyDecrypt( $legacyEncryptedContent, $legacyPassphrase ); - + $recrypted = self::keyEncryptKeyfile( $decrypted, $publicKey ); - + return $recrypted; - + } - + /** - * @brief Re-encryptes a legacy blowfish encrypted file using AES with integrated IV - * @param $legacyContent the legacy encrypted content to re-encrypt - * @returns cleartext content - * - * This function decrypts an content - */ + * @brief Re-encryptes a legacy blowfish encrypted file using AES with integrated IV + * @param $legacyContent the legacy encrypted content to re-encrypt + * @returns cleartext content + * + * This function decrypts an content + */ public static function legacyRecrypt( $legacyContent, $legacyPassphrase, $newPassphrase ) { - + // TODO: write me - + } - + } \ No newline at end of file diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 43af70dacc2be7a6b502bc68dd397130cbb738a2..955877971540bf86144ec6048ec47742cefff752 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -1,325 +1,323 @@ -<?php - -/** - * ownCloud - * - * @author Bjoern Schiessle - * @copyright 2012 Bjoern Schiessle <schiessle@owncloud.com> - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - * - */ - -namespace OCA\Encryption; - -/** - * @brief Class to manage storage and retrieval of encryption keys - * @note Where a method requires a view object, it's root must be '/' - */ -class Keymanager { - - /** - * @brief retrieve the ENCRYPTED private key from a user - * - * @return string private key or false - * @note the key returned by this method must be decrypted before use - */ - public static function getPrivateKey( \OC_FilesystemView $view, $user ) { - - $path = '/' . $user . '/' . 'files_encryption' . '/' . $user.'.private.key'; - - $key = $view->file_get_contents( $path ); - - return $key; - } - - /** - * @brief retrieve public key for a specified user - * @return string public key or false - */ - public static function getPublicKey( \OC_FilesystemView $view, $userId ) { - - return $view->file_get_contents( '/public-keys/' . '/' . $userId . '.public.key' ); - - } - - /** - * @brief retrieve both keys from a user (private and public) - * @return array keys: privateKey, publicKey - */ - public static function getUserKeys( \OC_FilesystemView $view, $userId ) { - - return array( - 'publicKey' => self::getPublicKey( $view, $userId ) - , 'privateKey' => self::getPrivateKey( $view, $userId ) - ); - - } - - /** - * @brief Retrieve public keys of all users with access to a file - * @param string $path Path to file - * @return array of public keys for the given file - * @note Checks that the sharing app is enabled should be performed - * by client code, that isn't checked here - */ - public static function getPublicKeys( \OC_FilesystemView $view, $userId, $filePath ) { - - $path = ltrim( $path, '/' ); - - $filepath = '/' . $userId . '/files/' . $filePath; - - // Check if sharing is enabled - if ( OC_App::isEnabled( 'files_sharing' ) ) { - - - - } else { - - // check if it is a file owned by the user and not shared at all - $userview = new \OC_FilesystemView( '/'.$userId.'/files/' ); - - if ( $userview->file_exists( $path ) ) { - - $users[] = $userId; - - } - - } - - $view = new \OC_FilesystemView( '/public-keys/' ); - - $keylist = array(); - - $count = 0; - - foreach ( $users as $user ) { - - $keylist['key'.++$count] = $view->file_get_contents( $user.'.public.key' ); - - } - - return $keylist; - - } - - /** - * @brief store file encryption key - * - * @param string $path relative path of the file, including filename - * @param string $key - * @return bool true/false - * @note The keyfile is not encrypted here. Client code must - * asymmetrically encrypt the keyfile before passing it to this method - */ - public static function setFileKey( \OC_FilesystemView $view, $path, $userId, $catfile ) { - - $basePath = '/' . $userId . '/files_encryption/keyfiles'; - - $targetPath = self::keySetPreparation( $view, $path, $basePath, $userId ); - - if ( $view->is_dir( $basePath . '/' . $targetPath ) ) { - - - - } else { - - // Save the keyfile in parallel directory - return $view->file_put_contents( $basePath . '/' . $targetPath . '.key', $catfile ); - - } - - } - - /** - * @brief retrieve keyfile for an encrypted file - * @param string file name - * @return string file key or false on failure - * @note The keyfile returned is asymmetrically encrypted. Decryption - * of the keyfile must be performed by client code - */ - public static function getFileKey( \OC_FilesystemView $view, $userId, $filePath ) { - - $filePath_f = ltrim( $filePath, '/' ); - - $catfilePath = '/' . $userId . '/files_encryption/keyfiles/' . $filePath_f . '.key'; - - if ( $view->file_exists( $catfilePath ) ) { - - return $view->file_get_contents( $catfilePath ); - - } else { - - return false; - - } - - } - - /** - * @brief Delete a keyfile - * - * @param OC_FilesystemView $view - * @param string $userId username - * @param string $path path of the file the key belongs to - * @return bool Outcome of unlink operation - * @note $path must be relative to data/user/files. e.g. mydoc.txt NOT - * /data/admin/files/mydoc.txt - */ - public static function deleteFileKey( \OC_FilesystemView $view, $userId, $path ) { - - $trimmed = ltrim( $path, '/' ); - $keyPath = '/' . $userId . '/files_encryption/keyfiles/' . $trimmed . '.key'; - - // Unlink doesn't tell us if file was deleted (not found returns - // true), so we perform our own test - if ( $view->file_exists( $keyPath ) ) { - - return $view->unlink( $keyPath ); - - } else { - - \OC_Log::write( 'Encryption library', 'Could not delete keyfile; does not exist: "' . $keyPath, \OC_Log::ERROR ); - - return false; - - } - - } - - /** - * @brief store private key from the user - * @param string key - * @return bool - * @note Encryption of the private key must be performed by client code - * as no encryption takes place here - */ - public static function setPrivateKey( $key ) { - - $user = \OCP\User::getUser(); - - $view = new \OC_FilesystemView( '/' . $user . '/files_encryption' ); - - \OC_FileProxy::$enabled = false; - - if ( !$view->file_exists( '' ) ) $view->mkdir( '' ); - - return $view->file_put_contents( $user . '.private.key', $key ); - - \OC_FileProxy::$enabled = true; - - } - - /** - * @brief store private keys from the user - * - * @param string privatekey - * @param string publickey - * @return bool true/false - */ - public static function setUserKeys($privatekey, $publickey) { - - return ( self::setPrivateKey( $privatekey ) && self::setPublicKey( $publickey ) ); - - } - - /** - * @brief store public key of the user - * - * @param string key - * @return bool true/false - */ - public static function setPublicKey( $key ) { - - $view = new \OC_FilesystemView( '/public-keys' ); - - \OC_FileProxy::$enabled = false; - - if ( !$view->file_exists( '' ) ) $view->mkdir( '' ); - - return $view->file_put_contents( \OCP\User::getUser() . '.public.key', $key ); - - \OC_FileProxy::$enabled = true; - - } - - /** - * @note 'shareKey' is a more user-friendly name for env_key - */ - public static function setShareKey( \OC_FilesystemView $view, $path, $userId, $shareKey ) { - - $basePath = '/' . $userId . '/files_encryption/share-keys'; - - $shareKeyPath = self::keySetPreparation( $view, $path, $basePath, $userId ); - - return $view->file_put_contents( $basePath . '/' . $shareKeyPath . '.shareKey', $shareKey ); - - } - - /** - * @brief Make preparations to vars and filesystem for saving a keyfile - */ - public static function keySetPreparation( \OC_FilesystemView $view, $path, $basePath, $userId ) { - - $targetPath = ltrim( $path, '/' ); - - $path_parts = pathinfo( $targetPath ); - - // If the file resides within a subdirectory, create it - if ( - isset( $path_parts['dirname'] ) - && ! $view->file_exists( $basePath . '/' . $path_parts['dirname'] ) - ) { - - $view->mkdir( $basePath . '/' . $path_parts['dirname'] ); - - } - - return $targetPath; - - } - - /** - * @brief change password of private encryption key - * - * @param string $oldpasswd old password - * @param string $newpasswd new password - * @return bool true/false - */ - public static function changePasswd($oldpasswd, $newpasswd) { - - if ( \OCP\User::checkPassword(\OCP\User::getUser(), $newpasswd) ) { - return Crypt::changekeypasscode($oldpasswd, $newpasswd); - } - return false; - - } - - /** - * @brief Fetch the legacy encryption key from user files - * @param string $login used to locate the legacy key - * @param string $passphrase used to decrypt the legacy key - * @return true / false - * - * if the key is left out, the default handeler will be used - */ - public function getLegacyKey() { - - $user = \OCP\User::getUser(); - $view = new \OC_FilesystemView( '/' . $user ); - return $view->file_get_contents( 'encryption.key' ); - - } - +<?php + +/** + * ownCloud + * + * @author Bjoern Schiessle + * @copyright 2012 Bjoern Schiessle <schiessle@owncloud.com> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OCA\Encryption; + +/** + * @brief Class to manage storage and retrieval of encryption keys + * @note Where a method requires a view object, it's root must be '/' + */ +class Keymanager { + + /** + * @brief retrieve the ENCRYPTED private key from a user + * + * @return string private key or false + * @note the key returned by this method must be decrypted before use + */ + public static function getPrivateKey( \OC_FilesystemView $view, $user ) { + + $path = '/' . $user . '/' . 'files_encryption' . '/' . $user.'.private.key'; + + $key = $view->file_get_contents( $path ); + + return $key; + } + + /** + * @brief retrieve public key for a specified user + * @param \OC_FilesystemView $view + * @param $userId + * @return string public key or false + */ + public static function getPublicKey( \OC_FilesystemView $view, $userId ) { + + return $view->file_get_contents( '/public-keys/' . '/' . $userId . '.public.key' ); + + } + + /** + * @brief retrieve both keys from a user (private and public) + * @param \OC_FilesystemView $view + * @param $userId + * @return array keys: privateKey, publicKey + */ + public static function getUserKeys( \OC_FilesystemView $view, $userId ) { + + return array( + 'publicKey' => self::getPublicKey( $view, $userId ) + , 'privateKey' => self::getPrivateKey( $view, $userId ) + ); + + } + + /** + * @brief Retrieve public keys of all users with access to a file + * @param string $path Path to file + * @return array of public keys for the given file + * @note Checks that the sharing app is enabled should be performed + * by client code, that isn't checked here + */ + public static function getPublicKeys( \OC_FilesystemView $view, $userId, $filePath ) { + + $path = ltrim( $path, '/' ); + + $filepath = '/' . $userId . '/files/' . $filePath; + + // Check if sharing is enabled + if ( OC_App::isEnabled( 'files_sharing' ) ) { + + + + } else { + + // check if it is a file owned by the user and not shared at all + $userview = new \OC_FilesystemView( '/'.$userId.'/files/' ); + + if ( $userview->file_exists( $path ) ) { + + $users[] = $userId; + + } + + } + + $view = new \OC_FilesystemView( '/public-keys/' ); + + $keylist = array(); + + $count = 0; + + foreach ( $users as $user ) { + + $keylist['key'.++$count] = $view->file_get_contents( $user.'.public.key' ); + + } + + return $keylist; + + } + + /** + * @brief store file encryption key + * + * @param string $path relative path of the file, including filename + * @param string $key + * @return bool true/false + * @note The keyfile is not encrypted here. Client code must + * asymmetrically encrypt the keyfile before passing it to this method + */ + public static function setFileKey( \OC_FilesystemView $view, $path, $userId, $catfile ) { + + $basePath = '/' . $userId . '/files_encryption/keyfiles'; + + $targetPath = self::keySetPreparation( $view, $path, $basePath, $userId ); + + if ( $view->is_dir( $basePath . '/' . $targetPath ) ) { + + + + } else { + + // Save the keyfile in parallel directory + return $view->file_put_contents( $basePath . '/' . $targetPath . '.key', $catfile ); + + } + + } + + /** + * @brief retrieve keyfile for an encrypted file + * @param \OC_FilesystemView $view + * @param $userId + * @param $filePath + * @internal param \OCA\Encryption\file $string name + * @return string file key or false + * @note The keyfile returned is asymmetrically encrypted. Decryption + * of the keyfile must be performed by client code + */ + public static function getFileKey( \OC_FilesystemView $view, $userId, $filePath ) { + + $filePath_f = ltrim( $filePath, '/' ); + + $catfilePath = '/' . $userId . '/files_encryption/keyfiles/' . $filePath_f . '.key'; + + if ( $view->file_exists( $catfilePath ) ) { + + return $view->file_get_contents( $catfilePath ); + + } else { + + return false; + + } + + } + + /** + * @brief Delete a keyfile + * + * @param OC_FilesystemView $view + * @param string $userId username + * @param string $path path of the file the key belongs to + * @return bool Outcome of unlink operation + * @note $path must be relative to data/user/files. e.g. mydoc.txt NOT + * /data/admin/files/mydoc.txt + */ + public static function deleteFileKey( \OC_FilesystemView $view, $userId, $path ) { + + $trimmed = ltrim( $path, '/' ); + $keyPath = '/' . $userId . '/files_encryption/keyfiles/' . $trimmed . '.key'; + + // Unlink doesn't tell us if file was deleted (not found returns + // true), so we perform our own test + if ( $view->file_exists( $keyPath ) ) { + + return $view->unlink( $keyPath ); + + } else { + + \OC_Log::write( 'Encryption library', 'Could not delete keyfile; does not exist: "' . $keyPath, \OC_Log::ERROR ); + + return false; + + } + + } + + /** + * @brief store private key from the user + * @param string key + * @return bool + * @note Encryption of the private key must be performed by client code + * as no encryption takes place here + */ + public static function setPrivateKey( $key ) { + + $user = \OCP\User::getUser(); + + $view = new \OC_FilesystemView( '/' . $user . '/files_encryption' ); + + \OC_FileProxy::$enabled = false; + + if ( !$view->file_exists( '' ) ) + $view->mkdir( '' ); + + return $view->file_put_contents( $user . '.private.key', $key ); + + } + + /** + * @brief store private keys from the user + * + * @param string privatekey + * @param string publickey + * @return bool true/false + */ + public static function setUserKeys($privatekey, $publickey) { + + return ( self::setPrivateKey( $privatekey ) && self::setPublicKey( $publickey ) ); + + } + + /** + * @brief store public key of the user + * + * @param string key + * @return bool true/false + */ + public static function setPublicKey( $key ) { + + $view = new \OC_FilesystemView( '/public-keys' ); + + \OC_FileProxy::$enabled = false; + + if ( !$view->file_exists( '' ) ) + $view->mkdir( '' ); + + return $view->file_put_contents( \OCP\User::getUser() . '.public.key', $key ); + + + } + + /** + * @brief store file encryption key + * + * @param string $path relative path of the file, including filename + * @param string $key + * @param null $view + * @param string $dbClassName + * @return bool true/false + * @note The keyfile is not encrypted here. Client code must + * asymmetrically encrypt the keyfile before passing it to this method + */ + public static function setShareKey( \OC_FilesystemView $view, $path, $userId, $shareKey ) { + + $basePath = '/' . $userId . '/files_encryption/share-keys'; + + $shareKeyPath = self::keySetPreparation( $view, $path, $basePath, $userId ); + + return $view->file_put_contents( $basePath . '/' . $shareKeyPath . '.shareKey', $shareKey ); + + } + + /** + * @brief Make preparations to vars and filesystem for saving a keyfile + */ + public static function keySetPreparation( \OC_FilesystemView $view, $path, $basePath, $userId ) { + + $targetPath = ltrim( $path, '/' ); + + $path_parts = pathinfo( $targetPath ); + + // If the file resides within a subdirectory, create it + if ( + isset( $path_parts['dirname'] ) + && ! $view->file_exists( $basePath . '/' . $path_parts['dirname'] ) + ) { + + $view->mkdir( $basePath . '/' . $path_parts['dirname'] ); + + } + + return $targetPath; + + } + + /** + * @brief Fetch the legacy encryption key from user files + * @param string $login used to locate the legacy key + * @param string $passphrase used to decrypt the legacy key + * @return true / false + * + * if the key is left out, the default handler will be used + */ + public function getLegacyKey() { + + $user = \OCP\User::getUser(); + $view = new \OC_FilesystemView( '/' . $user ); + return $view->file_get_contents( 'encryption.key' ); + + } + } \ No newline at end of file diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index d4b993b4c0638a7a6596c56cfc5edd8fd7955814..65d7d57a05a740bd164e7476b1c3910afcd7f49f 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -173,7 +173,7 @@ class Stream { // $count will always be 8192 https://bugs.php.net/bug.php?id=21641 // This makes this function a lot simpler, but will break this class if the above 'bug' gets 'fixed' - \OCP\Util::writeLog( 'files_encryption', 'PHP "bug" 21641 no longer holds, decryption system requires refactoring', OCP\Util::FATAL ); + \OCP\Util::writeLog( 'files_encryption', 'PHP "bug" 21641 no longer holds, decryption system requires refactoring', \OCP\Util::FATAL ); die(); @@ -209,7 +209,7 @@ class Stream { } /** - * @brief Encrypt and pad data ready for writting to disk + * @brief Encrypt and pad data ready for writing to disk * @param string $plainData data to be encrypted * @param string $key key to use for encryption * @return encrypted data on success, false on failure @@ -403,7 +403,7 @@ class Stream { $encrypted = $this->preWriteEncrypt( $chunk, $this->keyfile ); // Write the data chunk to disk. This will be - // addended to the last data chunk if the file + // attended to the last data chunk if the file // being handled totals more than 6126 bytes fwrite( $this->handle, $encrypted ); diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 355ffb90ef0ea4a81ab5ac95b1fd13f59e67a0c8..52bc74db27a61ee0c26af4e2b2cffdca8b2df419 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -69,11 +69,6 @@ class Util { //// DONE: add method to fetch legacy key //// DONE: add method to decrypt legacy encrypted data - //// TODO: add method to encrypt all user files using new system - //// TODO: add method to decrypt all user files using new system - //// TODO: add method to encrypt all user files using old system - //// TODO: add method to decrypt all user files using old system - // Admin UI: @@ -93,7 +88,6 @@ class Util { // Integration testing: - //// TODO: test new encryption with webdav //// TODO: test new encryption with versioning //// TODO: test new encryption with sharing //// TODO: test new encryption with proxies @@ -278,7 +272,7 @@ class Util { // will eat server resources :( if ( Keymanager::getFileKey( $this->view, $this->userId, $file ) - && Crypt::isCatfile( $filePath ) + && Crypt::isCatfile( $data ) ) { $found['encrypted'][] = array( 'name' => $file, 'path' => $filePath ); @@ -391,7 +385,6 @@ class Util { } - // FIXME: Legacy recrypting here isn't finished yet // Encrypt legacy encrypted files if ( ! empty( $legacyPassphrase ) @@ -437,6 +430,11 @@ class Util { } + /** + * @brief Return important encryption related paths + * @param string $pathName Name of the directory to return the path of + * @return string path + */ public function getPath( $pathName ) { switch ( $pathName ) { diff --git a/apps/files_encryption/settings-personal.php b/apps/files_encryption/settings-personal.php index 6fe4ea6d564c1b84ed64901941155aaf77c32ccf..af0273cfdc4dc4cf1a5c31f6155ff158c8b04d5b 100644 --- a/apps/files_encryption/settings-personal.php +++ b/apps/files_encryption/settings-personal.php @@ -12,8 +12,6 @@ $blackList = explode( ',', \OCP\Config::getAppValue( 'files_encryption', 'type_b $tmpl->assign( 'blacklist', $blackList ); -OCP\Util::addscript('files_encryption','settings-personal'); - return $tmpl->fetchPage(); return null; diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php index 1f71efb1735772e8c864c7886ae3d36c903f6471..47467c52c08a3879064624754a3e271815e63146 100644 --- a/apps/files_encryption/templates/settings-personal.php +++ b/apps/files_encryption/templates/settings-personal.php @@ -16,7 +16,7 @@ <?php echo $type; ?> </li> <?php endforeach; ?> - </p> + </ul> <?php endif; ?> </fieldset> </form> diff --git a/apps/files_sharing/l10n/sr.php b/apps/files_sharing/l10n/sr.php index 2eb61a738e3d6db79d03f4c0a3e5eb812af935a4..6e277f677119ce3b1f1373b57267142b73463d4c 100644 --- a/apps/files_sharing/l10n/sr.php +++ b/apps/files_sharing/l10n/sr.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( "Password" => "Лозинка", -"Submit" => "Пошаљи" +"Submit" => "Пошаљи", +"Download" => "Преузми" ); diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php new file mode 100644 index 0000000000000000000000000000000000000000..7a6bd1342ea278ea53d29f66d17ef4f31cd42ecf --- /dev/null +++ b/apps/files_trashbin/ajax/delete.php @@ -0,0 +1,24 @@ +<?php + +OCP\JSON::checkLoggedIn(); +OCP\JSON::callCheck(); + +$file = $_REQUEST['file']; + +$path_parts = pathinfo($file); +if ($path_parts['dirname'] == '.') { + $delimiter = strrpos($file, '.d'); + $filename = substr($file, 0, $delimiter); + $timestamp = substr($file, $delimiter+2); +} else { + $filename = $file; + $timestamp = null; +} + +if (OCA\Files_Trashbin\Trashbin::delete($filename, $timestamp)) { + OCP\JSON::success(array("data" => array("filename" => $file))); +} else { + $l = OC_L10N::get('files_trashbin'); + OCP\JSON::error(array("data" => array("message" => $l->t("Couldn't delete %s permanently", array($file))))); +} + diff --git a/apps/files_trashbin/ajax/undelete.php b/apps/files_trashbin/ajax/undelete.php index ee1c64aaaf22890daa46dc6ab6ba6fee0beffcc4..cc010979c51e28d655639c6c00f640bae69d27da 100644 --- a/apps/files_trashbin/ajax/undelete.php +++ b/apps/files_trashbin/ajax/undelete.php @@ -22,7 +22,7 @@ foreach ($list as $file) { $timestamp = null; } - if ( !OCA_Trash\Trashbin::restore($file, $filename, $timestamp) ) { + if ( !OCA\Files_Trashbin\Trashbin::restore($file, $filename, $timestamp) ) { $error[] = $filename; } else { $success[$i]['filename'] = $file; @@ -37,8 +37,10 @@ if ( $error ) { foreach ( $error as $e ) { $filelist .= $e.', '; } - OCP\JSON::error(array("data" => array("message" => "Couldn't restore ".rtrim($filelist,', '), "success" => $success, "error" => $error))); + $l = OC_L10N::get('files_trashbin'); + $message = $l->t("Couldn't restore %s", array(rtrim($filelist,', '))); + OCP\JSON::error(array("data" => array("message" => $message, + "success" => $success, "error" => $error))); } else { OCP\JSON::success(array("data" => array("success" => $success))); } - diff --git a/apps/files_trashbin/appinfo/app.php b/apps/files_trashbin/appinfo/app.php index 3741d42c781a08848c14eeaae383ed74e880382f..b1a15cd13d19b8a99e03c9404c941f9cf9b714e9 100644 --- a/apps/files_trashbin/appinfo/app.php +++ b/apps/files_trashbin/appinfo/app.php @@ -1,7 +1,7 @@ <?php -OC::$CLASSPATH['OCA_Trash\Hooks'] = 'apps/files_trashbin/lib/hooks.php'; -OC::$CLASSPATH['OCA_Trash\Trashbin'] = 'apps/files_trashbin/lib/trash.php'; +OC::$CLASSPATH['OCA\Files_Trashbin\Hooks'] = 'apps/files_trashbin/lib/hooks.php'; +OC::$CLASSPATH['OCA\Files_Trashbin\Trashbin'] = 'apps/files_trashbin/lib/trash.php'; -OCP\Util::connectHook('OC_Filesystem', 'delete', "OCA_Trash\Hooks", "remove_hook"); +OCP\Util::connectHook('OC_Filesystem', 'delete', "OCA\Files_Trashbin\Hooks", "remove_hook"); diff --git a/apps/files_trashbin/js/disableDefaultActions.js b/apps/files_trashbin/js/disableDefaultActions.js index 56b95407dd34cb105f90f8f00776dfffd5b185f5..27c3e13db4d12d05a8c8e9796b031d72c1232247 100644 --- a/apps/files_trashbin/js/disableDefaultActions.js +++ b/apps/files_trashbin/js/disableDefaultActions.js @@ -1,3 +1,4 @@ /* disable download and sharing actions */ var disableDownloadActions = true; var disableSharing = true; +var trashBinApp = true; \ No newline at end of file diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index f1241fce51e2b9e6fcdedb106bae72667e95e006..6c810e4c2bd017ac92e8ad1b2e62f1c3ebd2c31b 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -22,6 +22,31 @@ $(document).ready(function() { }); }; + FileActions.register('all', 'Delete', OC.PERMISSION_READ, function () { + return OC.imagePath('core', 'actions/delete'); + }, function (filename) { + $('.tipsy').remove(); + + var tr=$('tr').filterAttr('data-file', filename); + var deleteAction = $('tr').filterAttr('data-file',filename).children("td.date").children(".action.delete"); + var oldHTML = deleteAction[0].outerHTML; + var newHTML = '<img class="move2trash" data-action="Delete" title="'+t('files', 'delete file permanently')+'" src="'+ OC.imagePath('core', 'loading.gif') +'"></a>'; + deleteAction[0].outerHTML = newHTML; + + $.post(OC.filePath('files_trashbin','ajax','delete.php'), + {file:tr.attr('data-file') }, + function(result){ + if ( result.status == 'success' ) { + var row = document.getElementById(result.data.filename); + row.parentNode.removeChild(row); + } else { + deleteAction[0].outerHTML = oldHTML; + OC.dialogs.alert(result.data.message, 'Error'); + } + }); + + }); + // Sets the select_all checkbox behaviour : $('#select_all').click(function() { if($(this).attr('checked')){ diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index 3af33c8a31013f9aae44fbd7edeef3ce247d13e8..803b0c81ef0e411c1e7e1f6ef8d37e23c005f235 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -1,5 +1,8 @@ <?php $TRANSLATIONS = array( +"Couldn't delete %s permanently" => "No s'ha pogut esborrar permanentment %s", +"Couldn't restore %s" => "No s'ha pogut restaurar %s", "perform restore operation" => "executa l'operació de restauració", +"delete file permanently" => "esborra el fitxer permanentment", "Name" => "Nom", "Deleted" => "Eliminat", "1 folder" => "1 carpeta", diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index caaaea37436476582651e17660df73acb69f6252..eeb27784d3e8ee52eba471ff90fd954f662744f0 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -1,5 +1,8 @@ <?php $TRANSLATIONS = array( +"Couldn't delete %s permanently" => "Nelze trvale odstranit %s", +"Couldn't restore %s" => "Nelze obnovit %s", "perform restore operation" => "provést obnovu", +"delete file permanently" => "trvale odstranit soubor", "Name" => "Název", "Deleted" => "Smazáno", "1 folder" => "1 složka", diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 45e30d85a3b90a267c50fc37f2cf425b476c71d1..e293bf0b2eb623eaf351318fef234cf2d85efd48 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( "perform restore operation" => "Führe die Wiederherstellung aus", +"delete file permanently" => "Datei entgültig löschen", "Name" => "Name", "Deleted" => "Gelöscht", "1 folder" => "1 Ordner", diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index b191ffc42469f0296a53b2196358a35185a08e73..c14b9776473022b05a89e3e977e55f9c9fc171cc 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -1,5 +1,8 @@ <?php $TRANSLATIONS = array( +"Couldn't delete %s permanently" => "No se puede eliminar %s permanentemente", +"Couldn't restore %s" => "No se puede restaurar %s", "perform restore operation" => "Restaurar", +"delete file permanently" => "Eliminar archivo permanentemente", "Name" => "Nombre", "Deleted" => "Eliminado", "1 folder" => "1 carpeta", diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 51ade82d90833b85f5fff56a2e4d35b403eb8b87..609b2fa9bd75989ec4e5154dcd95439407b49467 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -1,5 +1,8 @@ <?php $TRANSLATIONS = array( +"Couldn't delete %s permanently" => "Impossible d'effacer %s de façon permanente", +"Couldn't restore %s" => "Impossible de restaurer %s", "perform restore operation" => "effectuer l'opération de restauration", +"delete file permanently" => "effacer définitivement le fichier", "Name" => "Nom", "Deleted" => "Effacé", "1 folder" => "1 dossier", diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index 7def431a42a3fc5b10f380a131505438e2a40798..8627682d088d08ab2a646ce43bd6094ef3abfde1 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -1,5 +1,8 @@ <?php $TRANSLATIONS = array( +"Couldn't delete %s permanently" => "Impossibile eliminare %s definitivamente", +"Couldn't restore %s" => "Impossibile ripristinare %s", "perform restore operation" => "esegui operazione di ripristino", +"delete file permanently" => "elimina il file definitivamente", "Name" => "Nome", "Deleted" => "Eliminati", "1 folder" => "1 cartella", diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index 0b4e1954e7426c26b597861f835bce6c56484f82..2bccf3f3bd5c036b95116f0969e11d682dd5f01d 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -1,5 +1,8 @@ <?php $TRANSLATIONS = array( +"Couldn't delete %s permanently" => "%s を完全ã«å‰Šé™¤å‡ºæ¥ã¾ã›ã‚“ã§ã—ãŸ", +"Couldn't restore %s" => "%s を復元出æ¥ã¾ã›ã‚“ã§ã—ãŸ", "perform restore operation" => "復元æ“作を実行ã™ã‚‹", +"delete file permanently" => "ファイルを完全ã«å‰Šé™¤ã™ã‚‹", "Name" => "åå‰", "Deleted" => "削除済ã¿", "1 folder" => "1 フォルダ", diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index 017a8d285c04bfeb0cf7a6cae0799c2372620f87..5ecb99b9892bc777115aacf5a3e036a5b8e4a270 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -1,5 +1,8 @@ <?php $TRANSLATIONS = array( +"Couldn't delete %s permanently" => "NevarÄ“ja pilnÄ«bÄ izdzÄ“st %s", +"Couldn't restore %s" => "NevarÄ“ja atjaunot %s", "perform restore operation" => "veikt atjaunoÅ¡anu", +"delete file permanently" => "dzÄ“st datni pavisam", "Name" => "Nosaukums", "Deleted" => "DzÄ“sts", "1 folder" => "1 mape", diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index 4efa6ecf662274d4b97e6b5bd318066862b9ac49..a41a5c2fd9cfa6d81eb9e9cf3e86abdceb83938b 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( "perform restore operation" => "uitvoeren restore operatie", +"delete file permanently" => "verwijder bestanden definitief", "Name" => "Naam", "Deleted" => "Verwijderd", "1 folder" => "1 map", diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index 23d739a2ff75c6ebcaeb42e3a30ddc2589693af1..f6c85a6800ef0c2ef47b678c009d62be89cc12a2 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -1,7 +1,14 @@ <?php $TRANSLATIONS = array( +"Couldn't delete %s permanently" => "%s не может быть удалён навÑегда", +"Couldn't restore %s" => "%s не может быть воÑÑтановлен", +"perform restore operation" => "выполнить операцию воÑÑтановлениÑ", +"delete file permanently" => "удалить файл навÑегда", "Name" => "ИмÑ", +"Deleted" => "Удалён", "1 folder" => "1 папка", "{count} folders" => "{count} папок", "1 file" => "1 файл", -"{count} files" => "{count} файлов" +"{count} files" => "{count} файлов", +"Nothing in here. Your trash bin is empty!" => "ЗдеÑÑŒ ничего нет. Ваша корзина пуÑта!", +"Restore" => "ВоÑÑтановить" ); diff --git a/apps/files_trashbin/l10n/ru_RU.php b/apps/files_trashbin/l10n/ru_RU.php index 8ef2658cf2435413d33b0258e06430cfab40e8e7..c5b1408e2cc0e9a75f2ff3a5e1ca1fd6ffe12fd3 100644 --- a/apps/files_trashbin/l10n/ru_RU.php +++ b/apps/files_trashbin/l10n/ru_RU.php @@ -3,5 +3,6 @@ "1 folder" => "1 папка", "{count} folders" => "{количеÑтво} папок", "1 file" => "1 файл", -"{count} files" => "{количеÑтво} файлов" +"{count} files" => "{количеÑтво} файлов", +"Restore" => "ВоÑÑтановить" ); diff --git a/apps/files_trashbin/l10n/sk_SK.php b/apps/files_trashbin/l10n/sk_SK.php index 81d43614d7be45840ba386ee67f9d7111918a524..759850783e268a6e6ab38966efd2dbd4b839de72 100644 --- a/apps/files_trashbin/l10n/sk_SK.php +++ b/apps/files_trashbin/l10n/sk_SK.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( +"Couldn't restore %s" => "Nemožno obnoviÅ¥ %s", "perform restore operation" => "vykonaÅ¥ obnovu", +"delete file permanently" => "trvalo zmazaÅ¥ súbor", "Name" => "Meno", "Deleted" => "Zmazané", "1 folder" => "1 prieÄinok", diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index ca4dba0496787fad610dd5002cb39c2f6f380ba3..5bde85e7056c0ca62647f39eda2140e5a5f0cbe4 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"perform restore operation" => "utför Ã¥terställning", "Name" => "Namn", "Deleted" => "Raderad", "1 folder" => "1 mapp", diff --git a/apps/files_trashbin/lib/hooks.php b/apps/files_trashbin/lib/hooks.php index d3bee105b510ca2974d109e57362d4924a01d733..d6a62d447b88a580c0ba3d21c6464426b3f8e53b 100644 --- a/apps/files_trashbin/lib/hooks.php +++ b/apps/files_trashbin/lib/hooks.php @@ -24,7 +24,7 @@ * This class contains all hooks. */ -namespace OCA_Trash; +namespace OCA\Files_Trashbin; class Hooks { diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index a7eff3d44e0bdf1539e2b6f8515242d2b328427e..bc6562b2080d569b59262ccfa1290e12efd2e973 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -20,7 +20,7 @@ * */ -namespace OCA_Trash; +namespace OCA\Files_Trashbin; class Trashbin { @@ -65,7 +65,7 @@ class Trashbin { if ( \OCP\App::isEnabled('files_versions') ) { if ( $view->is_dir('files_versions'.$file_path) ) { $view->rename('files_versions'.$file_path, 'versions_trashbin/'. $deleted.'.d'.$timestamp); - } else if ( $versions = \OCA_Versions\Storage::getVersions($file_path) ) { + } else if ( $versions = \OCA\Files_Versions\Storage::getVersions($file_path) ) { foreach ($versions as $v) { $view->rename('files_versions'.$v['path'].'.v'.$v['version'], 'versions_trashbin/'. $deleted.'.v'.$v['version'].'.d'.$timestamp); } @@ -150,6 +150,45 @@ class Trashbin { return false; } + /** + * delete file from trash bin permanently + * @param $filename path to the file + * @param $timestamp of deletion time + * @return true/false + */ + public static function delete($filename, $timestamp=null) { + + $user = \OCP\User::getUser(); + $view = new \OC_FilesystemView('/'.$user); + + if ( $timestamp ) { + $query = \OC_DB::prepare('DELETE FROM *PREFIX*files_trash WHERE user=? AND id=? AND timestamp=?'); + $query->execute(array($user,$filename,$timestamp)); + $file = $filename.'.d'.$timestamp; + } else { + $file = $filename; + } + + if ( \OCP\App::isEnabled('files_versions') ) { + if ($view->is_dir('versions_trashbin/'.$file)) { + $view->unlink('versions_trashbin/'.$file); + } else if ( $versions = self::getVersionsFromTrash($file, $timestamp) ) { + foreach ($versions as $v) { + if ($timestamp ) { + $view->unlink('versions_trashbin/'.$filename.'.v'.$v.'.d'.$timestamp); + } else { + $view->unlink('versions_trashbin/'.$file.'.v'.$v); + } + } + } + } + + $view->unlink('/files_trashbin/'.$file); + + return true; + } + + /** * clean up the trash bin */ diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index c3e51b4becdfe4d5aad5e30a61c508453416000f..24e4a0e6c697249c5aeb5a5150028c747616bcaa 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -9,7 +9,7 @@ <div id="emptyfolder"><?php echo $l->t('Nothing in here. Your trash bin is empty!')?></div> <?php endif; ?> -<table> +<table class="hascontrols"> <thead> <tr> <th id='headerName'> diff --git a/apps/files_versions/ajax/rollbackVersion.php b/apps/files_versions/ajax/rollbackVersion.php index dc5a59cb4af626961652496c85f22b1bb16d6a78..2970915ac6360dddd22b47589a6d2ae8d128f73c 100644 --- a/apps/files_versions/ajax/rollbackVersion.php +++ b/apps/files_versions/ajax/rollbackVersion.php @@ -11,6 +11,7 @@ $revision=(int)$_GET['revision']; if(OCA\Files_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 ))); + $l = OC_L10N::get('files_versions'); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not revert: %s", array($file) )))); } diff --git a/apps/files_versions/history.php b/apps/files_versions/history.php index 1bd5cde44bec45d9a1616af143f9385c6a3ef737..437a3fec0652c281c9ea351e1bbab926d6550180 100644 --- a/apps/files_versions/history.php +++ b/apps/files_versions/history.php @@ -24,6 +24,7 @@ OCP\User::checkLoggedIn( ); OCP\Util::addStyle('files_versions', 'versions'); $tmpl = new OCP\Template( 'files_versions', 'history', 'user' ); +$l = OC_L10N::get('files_versions'); if ( isset( $_GET['path'] ) ) { @@ -36,15 +37,21 @@ if ( isset( $_GET['path'] ) ) { if( $versions->rollback( $path, $_GET['revert'] ) ) { - $tmpl->assign( 'outcome_stat', 'success' ); + $tmpl->assign( 'outcome_stat', $l->t('success') ); - $tmpl->assign( 'outcome_msg', "File {$_GET['path']} was reverted to version ".OCP\Util::formatDate( doubleval($_GET['revert']) ) ); + $message = $l->t('File %s was reverted to version %s', + array($_GET['path'], OCP\Util::formatDate( doubleval($_GET['revert']) ) ) ); + + $tmpl->assign( 'outcome_msg', $message); } else { - $tmpl->assign( 'outcome_stat', 'failure' ); + $tmpl->assign( 'outcome_stat', $l->t('failure') ); + + $message = $l->t('File %s could not be reverted to version %s', + array($_GET['path'], OCP\Util::formatDate( doubleval($_GET['revert']) ) ) ); - $tmpl->assign( 'outcome_msg', "File {$_GET['path']} could not be reverted to version ".OCP\Util::formatDate( doubleval($_GET['revert']) ) ); + $tmpl->assign( 'outcome_msg', $message); } @@ -58,12 +65,12 @@ if ( isset( $_GET['path'] ) ) { }else{ - $tmpl->assign( 'message', 'No old versions available' ); + $tmpl->assign( 'message', $l->t('No old versions available') ); } }else{ - $tmpl->assign( 'message', 'No path specified' ); + $tmpl->assign( 'message', $l->t('No path specified') ); } diff --git a/apps/files_versions/l10n/ca.php b/apps/files_versions/l10n/ca.php index 01e0a116873ae558685316cf0dd2e9522ee15e60..fc900c47dc7e5b857f11170c34d05fda8de2e785 100644 --- a/apps/files_versions/l10n/ca.php +++ b/apps/files_versions/l10n/ca.php @@ -1,5 +1,13 @@ <?php $TRANSLATIONS = array( +"Could not revert: %s" => "No s'ha pogut revertir: %s", +"success" => "èxit", +"File %s was reverted to version %s" => "El fitxer %s s'ha revertit a la versió %s", +"failure" => "fallada", +"File %s could not be reverted to version %s" => "El fitxer %s no s'ha pogut revertir a la versió %s", +"No old versions available" => "No hi ha versións antigues disponibles", +"No path specified" => "No heu especificat el camÃ", "History" => "Historial", +"Revert a file to a previous version by clicking on its revert button" => "Reverteix un fitxer a una versió anterior fent clic en el seu botó de reverteix", "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 d219c3e68daea5c2f6b14ffa182c1d5ed580af1f..22d4a2ad827235619e465c7712732c96797aab6f 100644 --- a/apps/files_versions/l10n/cs_CZ.php +++ b/apps/files_versions/l10n/cs_CZ.php @@ -1,5 +1,13 @@ <?php $TRANSLATIONS = array( +"Could not revert: %s" => "Nelze navrátit: %s", +"success" => "úspÄ›ch", +"File %s was reverted to version %s" => "Soubor %s byl navrácen na verzi %s", +"failure" => "sehlhánÃ", +"File %s could not be reverted to version %s" => "Soubor %s nemohl být navrácen na verzi %s", +"No old versions available" => "Nejsou dostupné žádné starÅ¡Ã verze", +"No path specified" => "Nezadána cesta", "History" => "Historie", +"Revert a file to a previous version by clicking on its revert button" => "NavraÅ¥te soubor do pÅ™edchozà verze kliknutÃm na tlaÄÃtko navrátit", "Files Versioning" => "Verzovánà souborů", "Enable" => "Povolit" ); diff --git a/apps/files_versions/l10n/de_DE.php b/apps/files_versions/l10n/de_DE.php index 2fcb996de7bae035700e178be957b88e65c44bc7..cf33bb071e6e2b5bd9fc265150d57765cf432431 100644 --- a/apps/files_versions/l10n/de_DE.php +++ b/apps/files_versions/l10n/de_DE.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"success" => "Erfolgreich", +"failure" => "Fehlgeschlagen", +"No old versions available" => "keine älteren Versionen verfügbar", +"No path specified" => "Kein Pfad angegeben", "History" => "Historie", "Files Versioning" => "Dateiversionierung", "Enable" => "Aktivieren" diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php index 4a8c34e518081a2891fff577419c1d2af91266e6..608e171a4b12a99b7f5efc4c043e77787675b1eb 100644 --- a/apps/files_versions/l10n/es.php +++ b/apps/files_versions/l10n/es.php @@ -1,5 +1,13 @@ <?php $TRANSLATIONS = array( +"Could not revert: %s" => "No se puede revertir: %s", +"success" => "exitoso", +"File %s was reverted to version %s" => "El archivo %s fue revertido a la version %s", +"failure" => "fallo", +"File %s could not be reverted to version %s" => "El archivo %s no puede ser revertido a la version %s", +"No old versions available" => "No hay versiones antiguas disponibles", +"No path specified" => "Ruta no especificada", "History" => "Historial", +"Revert a file to a previous version by clicking on its revert button" => "Revertir un archivo a una versión anterior haciendo clic en el boton de revertir", "Files Versioning" => "Versionado de archivos", "Enable" => "Habilitar" ); diff --git a/apps/files_versions/l10n/fr.php b/apps/files_versions/l10n/fr.php index 2d26b98860ac147ac64d03e4c8fea11f1c4ace58..6b2cf9ba6b5f141fd8b87e7447eb81f6e427aacd 100644 --- a/apps/files_versions/l10n/fr.php +++ b/apps/files_versions/l10n/fr.php @@ -1,5 +1,13 @@ <?php $TRANSLATIONS = array( +"Could not revert: %s" => "Impossible de restaurer %s", +"success" => "succès", +"File %s was reverted to version %s" => "Le fichier %s a été restauré dans sa version %s", +"failure" => "échec", +"File %s could not be reverted to version %s" => "Le fichier %s ne peut être restauré dans sa version %s", +"No old versions available" => "Aucune ancienne version n'est disponible", +"No path specified" => "Aucun chemin spécifié", "History" => "Historique", +"Revert a file to a previous version by clicking on its revert button" => "Restaurez un fichier dans une version antérieure en cliquant sur son bouton de restauration", "Files Versioning" => "Versionnage des fichiers", "Enable" => "Activer" ); diff --git a/apps/files_versions/l10n/it.php b/apps/files_versions/l10n/it.php index c57b09301110bb6c825b9118ea1587f35cc95728..3289f7f68d179e5bb696cb9be0a4440225f50237 100644 --- a/apps/files_versions/l10n/it.php +++ b/apps/files_versions/l10n/it.php @@ -1,5 +1,13 @@ <?php $TRANSLATIONS = array( +"Could not revert: %s" => "Impossibild ripristinare: %s", +"success" => "completata", +"File %s was reverted to version %s" => "Il file %s è stato ripristinato alla versione %s", +"failure" => "non riuscita", +"File %s could not be reverted to version %s" => "Il file %s non può essere ripristinato alla versione %s", +"No old versions available" => "Non sono disponibili versioni precedenti", +"No path specified" => "Nessun percorso specificato", "History" => "Cronologia", +"Revert a file to a previous version by clicking on its revert button" => "Ripristina un file a una versione precedente facendo clic sul rispettivo pulsante di ripristino", "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 c97ba3d00ee81849ce81d15f60d062a44211d59a..16018765708033fcbf6b8ebeb30c19532b0d20a1 100644 --- a/apps/files_versions/l10n/ja_JP.php +++ b/apps/files_versions/l10n/ja_JP.php @@ -1,5 +1,13 @@ <?php $TRANSLATIONS = array( +"Could not revert: %s" => "å…ƒã«æˆ»ã›ã¾ã›ã‚“ã§ã—ãŸ: %s", +"success" => "æˆåŠŸ", +"File %s was reverted to version %s" => "ファイル %s ã‚’ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %s ã«æˆ»ã—ã¾ã—ãŸ", +"failure" => "失敗", +"File %s could not be reverted to version %s" => "ファイル %s ã‚’ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %s ã«æˆ»ã›ã¾ã›ã‚“ã§ã—ãŸ", +"No old versions available" => "利用å¯èƒ½ãªå¤ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¯ã‚ã‚Šã¾ã›ã‚“", +"No path specified" => "パスãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“", "History" => "å±¥æ´", +"Revert a file to a previous version by clicking on its revert button" => "ã‚‚ã¨ã«æˆ»ã™ãƒœã‚¿ãƒ³ã‚’クリックã™ã‚‹ã¨ã€ãƒ•ã‚¡ã‚¤ãƒ«ã‚’éŽåŽ»ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«æˆ»ã—ã¾ã™", "Files Versioning" => "ファイルã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ç®¡ç†", "Enable" => "有効化" ); diff --git a/apps/files_versions/l10n/lv.php b/apps/files_versions/l10n/lv.php index ae2ead12f4c22a6aab360bbdca6ee272952929b9..2203dc706b82565bcd4535c88b108d147791e2b0 100644 --- a/apps/files_versions/l10n/lv.php +++ b/apps/files_versions/l10n/lv.php @@ -1,5 +1,13 @@ <?php $TRANSLATIONS = array( +"Could not revert: %s" => "NevarÄ“ja atgriezt — %s", +"success" => "veiksme", +"File %s was reverted to version %s" => "Datne %s tika atgriezt uz versiju %s", +"failure" => "neveiksme", +"File %s could not be reverted to version %s" => "Datni %s nevarÄ“ja atgriezt uz versiju %s", +"No old versions available" => "Nav pieejamu vecÄku versiju", +"No path specified" => "Nav norÄdÄ«ts ceļš", "History" => "VÄ“sture", +"Revert a file to a previous version by clicking on its revert button" => "Atgriez datni uz iepriekÅ¡Ä“ju versiju, spiežot uz tÄs atgrieÅ¡anas pogu", "Files Versioning" => "Datņu versiju izskoÅ¡ana", "Enable" => "AktivÄ“t" ); diff --git a/apps/files_versions/l10n/ru.php b/apps/files_versions/l10n/ru.php index 4c7fb5010912d39808cbc267d4a926f7efba29b3..221d24ce8d118c0677a730d5a10a7519b8670820 100644 --- a/apps/files_versions/l10n/ru.php +++ b/apps/files_versions/l10n/ru.php @@ -1,5 +1,13 @@ <?php $TRANSLATIONS = array( +"Could not revert: %s" => "Ðе может быть возвращён: %s", +"success" => "уÑпех", +"File %s was reverted to version %s" => "Файл %s был возвращён к верÑии %s", +"failure" => "провал", +"File %s could not be reverted to version %s" => "Файл %s не может быть возвращён к верÑии %s", +"No old versions available" => "Ðет доÑтупных Ñтарых верÑий", +"No path specified" => "Путь не указан", "History" => "ИÑториÑ", +"Revert a file to a previous version by clicking on its revert button" => "Вернуть файл к предыдущей верÑии нажатием на кнопку возврата", "Files Versioning" => "ВерÑии файлов", "Enable" => "Включить" ); diff --git a/apps/files_versions/l10n/sk_SK.php b/apps/files_versions/l10n/sk_SK.php index a3a3567cb4f99465180f82a8b5f4c2e47914b3e1..8a59286b5a54b2de8cc82fe46efc3ed4c9a349fe 100644 --- a/apps/files_versions/l10n/sk_SK.php +++ b/apps/files_versions/l10n/sk_SK.php @@ -1,4 +1,9 @@ <?php $TRANSLATIONS = array( +"success" => "uspech", +"File %s was reverted to version %s" => "Subror %s bol vrateny na verziu %s", +"failure" => "chyba", +"No old versions available" => "Nie sú dostupné žiadne starÅ¡ie verzie", +"No path specified" => "Nevybrali ste cestu", "History" => "História", "Files Versioning" => "Vytváranie verzià súborov", "Enable" => "Zapnúť" diff --git a/apps/files_versions/templates/history.php b/apps/files_versions/templates/history.php index cc5a494f19ed0f8cad273880f91a29104fd124d4..850ece89c98fc30277d22bbc785e57e8dd61da94 100644 --- a/apps/files_versions/templates/history.php +++ b/apps/files_versions/templates/history.php @@ -17,7 +17,7 @@ if( isset( $_['message'] ) ) { } echo( '<strong>Versions of '.$_['path'] ).'</strong><br>'; - echo('<p><em>Revert a file to a previous version by clicking on its revert button</em></p><br />'); + echo('<p><em>'.$l->t('Revert a file to a previous version by clicking on its revert button').'</em></p><br />'); foreach ( $_['versions'] as $v ) { echo ' '; diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php index 6c347eab8799e6284b4facc2e72c191ca26dd24f..69dfc8961792f1c28f914ec45f4b8907398869e6 100644 --- a/apps/user_ldap/l10n/bn_BD.php +++ b/apps/user_ldap/l10n/bn_BD.php @@ -18,7 +18,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "কোন সà§à¦¥à¦¾à¦¨ ধারক বà§à¦¯à¦¤à§€à¦¤, উদাহরণঃ\"objectClass=posixGroup\"।", "Port" => "পোরà§à¦Ÿ", "Use TLS" => "TLS বà§à¦¯à¦¬à¦¹à¦¾à¦° কর", -"Do not use it for SSL connections, it will fail." => "SSL সংযোগের জনà§à¦¯ à¦à¦Ÿà¦¿ বà§à¦¯à¦¬à¦¹à¦¾à¦° করবেন না, তাহলে বà§à¦¯à¦°à§à¦¥ হবেনই।", "Case insensitve LDAP server (Windows)" => "বরà§à¦£ অসংবেদী LDAP সারà§à¦à¦¾à¦° (উইনà§à¦¡à§‹à¦œ)", "Turn off SSL certificate validation." => "SSL সনদপতà§à¦° যাচাইকরণ বনà§à¦§ রাক।", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "শà§à¦§à§à¦®à¦¾à¦¤à§à¦° যদি à¦à¦‡ বিকলà§à¦ªà¦Ÿà¦¿ বà§à¦¯à¦¬à¦¹à¦¾à¦° করেই সংযোগ কারà§à¦¯à¦•à¦°à§€ হয় তবে আপনার ownCloud সারà§à¦à¦¾à¦°à§‡ LDAP সারà§à¦à¦¾à¦°à§‡à¦° SSL সনদপতà§à¦°à¦Ÿà¦¿ আমদানি করà§à¦¨à¥¤", diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index 5cf03b6787b72526d92e4f6dab8b8a351a49353b..e4f27e25a7fab324d162cf5d6dfc1cab603a982d 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -43,7 +43,7 @@ "Disable Main Server" => "Desactiva el servidor principal", "When switched on, ownCloud will only connect to the replica server." => "Quan està connectat, ownCloud només es connecta al servidor de la rèplica.", "Use TLS" => "Usa TLS", -"Do not use it for SSL connections, it will fail." => "No ho useu en connexions SSL, fallarà .", +"Do not use it additionally for LDAPS connections, it will fail." => "No ho useu adicionalment per a conexions LDAPS, fallarà .", "Case insensitve LDAP server (Windows)" => "Servidor LDAP sense distinció entre majúscules i minúscules (Windows)", "Turn off SSL certificate validation." => "Desactiva la validació de certificat SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la connexió només funciona amb aquesta opció, importeu el certificat SSL del servidor LDAP en el vostre servidor ownCloud.", diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 0aace1f74107a80aeca911df28ba1b1ecabdfdbe..4c74f195cf44d5718bd2fba58f234cd0e1e1bd4a 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -43,7 +43,7 @@ "Disable Main Server" => "Zakázat hlavnà serveru", "When switched on, ownCloud will only connect to the replica server." => "PÅ™i zapnutà se ownCloud pÅ™ipojà pouze k záložnÃmu serveru", "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.", +"Do not use it additionally for LDAPS connections, it will fail." => "NepoužÃvejte pro spojenà LDAP, selže.", "Case insensitve LDAP server (Windows)" => "LDAP server nerozliÅ¡ujÃcà velikost znaků (Windows)", "Turn off SSL certificate validation." => "Vypnout ověřovánà SSL certifikátu.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Pokud pÅ™ipojenà pracuje pouze s touto možnostÃ, tak importujte SSL certifikát SSL serveru do VaÅ¡eho serveru ownCloud", diff --git a/apps/user_ldap/l10n/da.php b/apps/user_ldap/l10n/da.php index dd7fb8a1a0ca9c0d9007bb0458b9f4f938c2c4a3..9329c4e8a2416f1db1fd0993a1d6f28f76f62c0d 100644 --- a/apps/user_ldap/l10n/da.php +++ b/apps/user_ldap/l10n/da.php @@ -14,7 +14,6 @@ "Defines the filter to apply, when retrieving groups." => "Definere filteret der bruges nÃ¥r der indlæses grupper.", "Port" => "Port", "Use TLS" => "Brug TLS", -"Do not use it for SSL connections, it will fail." => "Brug ikke til SSL forbindelser, da den vil fejle.", "Turn off SSL certificate validation." => "Deaktiver SSL certifikat validering", "Not recommended, use for testing only." => "Anbefales ikke, brug kun for at teste.", "User Display Name Field" => "User Display Name Field", diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index df680465c98eb3269d7207a4bf3ff4c2c0e10d63..618e7a32457a6c00d56efa5e760d27f917b7dd1c 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -23,7 +23,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ohne Platzhalter, z.B.: \"objectClass=posixGroup\"", "Port" => "Port", "Use TLS" => "Nutze TLS", -"Do not use it for SSL connections, it will fail." => "Verwende dies nicht für SSL-Verbindungen, es wird fehlschlagen.", "Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalte die SSL-Zertifikatsprüfung aus.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden.", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 1b47cfec2a661979545421e1b142f171262f2dc5..7d3847f8a891c6be9f810b134be11ada73129d96 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -43,7 +43,6 @@ "Disable Main Server" => "Hauptserver deaktivieren", "When switched on, ownCloud will only connect to the replica server." => "Wenn eingeschaltet wird sich ownCloud nur mit dem Replilat-Server verbinden.", "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.", "Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalten Sie die SSL-Zertifikatsprüfung aus.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden.", diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 3951c94dfa74a698fd11f6bf31e4400762cfdd99..7c0940dc09c6466fc406a25d63eee02ac103ac06 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -20,7 +20,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "χωÏίς κάποια μεταβλητή, Ï€.χ. \"objectClass=ΟμάδαPosix\".", "Port" => "ΘÏÏα", "Use TLS" => "ΧÏήση TLS", -"Do not use it for SSL connections, it will fail." => "Μην χÏησιμοποιείτε για συνδÎσεις SSL, θα αποτÏχει.", "Case insensitve LDAP server (Windows)" => "LDAP server (Windows) με διάκÏιση πεζών-ΚΕΦΑΛΑΙΩÎ", "Turn off SSL certificate validation." => "ΑπενεÏγοποίηση επικÏÏωσης Ï€Î¹ÏƒÏ„Î¿Ï€Î¿Î¹Î·Ï„Î¹ÎºÎ¿Ï SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Εάν η σÏνδεση δουλεÏει μόνο με αυτή την επιλογή, εισάγετε το LDAP SSL πιστοποιητικό του διακομιστή στον ownCloud server σας.", diff --git a/apps/user_ldap/l10n/eo.php b/apps/user_ldap/l10n/eo.php index 2a2b70603c5156e2c698cfbc2e73958c3029b3e3..3ffcbddb3e3652e6d2696ed333520bef2b883414 100644 --- a/apps/user_ldap/l10n/eo.php +++ b/apps/user_ldap/l10n/eo.php @@ -17,7 +17,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "sen ajna referencilo, ekz.: \"objectClass=posixGroup\".", "Port" => "Pordo", "Use TLS" => "Uzi TLS-on", -"Do not use it for SSL connections, it will fail." => "Ne uzu Äin por SSL-konektoj, Äi malsukcesos.", "Case insensitve LDAP server (Windows)" => "LDAP-servilo blinda je litergrandeco (Vindozo)", "Turn off SSL certificate validation." => "Malkapabligi validkontrolon de SSL-atestiloj.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se la konekto nur funkcias kun ĉi tiu malnepro, enportu la SSL-atestilo de la LDAP-servilo en via ownCloud-servilo.", diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 3740d13e2244b2f996db124cc5acd2662a9d4d14..c0a444c0c7d1666d58eeaadd1c82c51d9d799855 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -43,7 +43,7 @@ "Disable Main Server" => "Deshabilitar servidor principal", "When switched on, ownCloud will only connect to the replica server." => "Cuando se inicie, ownCloud unicamente estara conectado al servidor replica", "Use TLS" => "Usar TLS", -"Do not use it for SSL connections, it will fail." => "No usarlo para SSL, habrá error.", +"Do not use it additionally for LDAPS connections, it will fail." => "No usar adicionalmente para conecciones LDAPS, estas fallaran", "Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)", "Turn off SSL certificate validation." => "Apagar la validación por certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor ownCloud.", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index dce2321e6b165491eed9177aca4582e00e6ec68e..a87444a270cff8f7eab5c1cfff897537dab34722 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -1,7 +1,17 @@ <?php $TRANSLATIONS = array( +"Failed to delete the server configuration" => "Fallo al borrar la configuración del servidor", +"The configuration is valid and the connection could be established!" => "La configuración es valida y la conexión pudo ser establecida.", "Deletion failed" => "Error al borrar", +"Keep settings?" => "¿Mantener preferencias?", +"Cannot add server configuration" => "No se pudo añadir la configuración del servidor", +"Connection test succeeded" => "El este de conexión ha sido completado satisfactoriamente", +"Connection test failed" => "Falló es test de conexión", +"Do you really want to delete the current Server Configuration?" => "¿Realmente desea borrar la configuración actual del servidor?", +"Confirm Deletion" => "Confirmar borrado", "<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 is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Atención:</b> El módulo PHP LDAP no está instalado, este elemento no va a funcionar. Por favor, pedile al administrador que lo instale.", +"Server configuration" => "Configuración del Servidor", +"Add Server Configuration" => "Añadir Configuración del Servidor", "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", @@ -20,14 +30,17 @@ "Group Filter" => "Filtro de grupo", "Defines the filter to apply, when retrieving groups." => "Define el filtro a aplicar cuando se obtienen grupos.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "Sin ninguna plantilla, p. ej.: \"objectClass=posixGroup\".", +"Connection Settings" => "Configuración de Conección", +"Configuration Active" => "Configuración activa", "Port" => "Puerto", +"Disable Main Server" => "Deshabilitar el Servidor Principal", "Use TLS" => "Usar TLS", -"Do not use it for SSL connections, it will fail." => "No usarlo para SSL, dará error.", "Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)", "Turn off SSL certificate validation." => "Desactivar la validación por certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la conexión sólo funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor ownCloud.", "Not recommended, use for testing only." => "No recomendado, sólo para pruebas.", "in seconds. A change empties the cache." => "en segundos. Cambiarlo vacÃa la cache.", +"Directory Settings" => "Configuración de Directorio", "User Display Name Field" => "Campo de nombre de usuario a mostrar", "The LDAP attribute to use to generate the user`s ownCloud name." => "El atributo LDAP a usar para generar el nombre de usuario de ownCloud.", "Base User Tree" => "Ãrbol base de usuario", @@ -37,6 +50,7 @@ "Base Group Tree" => "Ãrbol base de grupo", "One Group Base DN per line" => "Una DN base de grupo por lÃnea", "Group-Member association" => "Asociación Grupo-Miembro", +"Special Attributes" => "Atributos Especiales", "in bytes" => "en bytes", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "VacÃo para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD.", "Help" => "Ayuda" diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index ba03a8a80938fe83d3e4f12568fa2140274b49fa..91eb38c7c5f7b90078958f2dad13fd73eb2e3ffe 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -19,7 +19,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ilma ühegi kohatäitjata, nt. \"objectClass=posixGroup\".", "Port" => "Port", "Use TLS" => "Kasutaja TLS", -"Do not use it for SSL connections, it will fail." => "Ära kasuta seda SSL ühenduse jaoks, see ei toimi.", "Case insensitve LDAP server (Windows)" => "Mittetõstutundlik LDAP server (Windows)", "Turn off SSL certificate validation." => "Lülita SSL sertifikaadi kontrollimine välja.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma ownCloud serverisse.", diff --git a/apps/user_ldap/l10n/eu.php b/apps/user_ldap/l10n/eu.php index 2aad2363ce9330f1bd2febc5bfe63ea00fb25cfc..97c23f86480891f7d4979c1c983afc7b19a35f06 100644 --- a/apps/user_ldap/l10n/eu.php +++ b/apps/user_ldap/l10n/eu.php @@ -22,7 +22,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "txantiloirik gabe, adb. \"objectClass=posixGroup\".", "Port" => "Portua", "Use TLS" => "Erabili TLS", -"Do not use it for SSL connections, it will fail." => "Ez erabili SSL konexioetan, huts egingo du.", "Case insensitve LDAP server (Windows)" => "Maiuskulak eta minuskulak ezberditzen ez dituen LDAP zerbitzaria (windows)", "Turn off SSL certificate validation." => "Ezgaitu SSL ziurtagirien egiaztapena.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Konexioa aukera hau ezinbestekoa badu, inportatu LDAP zerbitzariaren SSL ziurtagiria zure ownCloud zerbitzarian.", diff --git a/apps/user_ldap/l10n/fi_FI.php b/apps/user_ldap/l10n/fi_FI.php index 4f8fd3f2d1730e73a0a6c988d66e8274cf8780df..1c2a92f844a47629183aaed528b5effbc2ab6f03 100644 --- a/apps/user_ldap/l10n/fi_FI.php +++ b/apps/user_ldap/l10n/fi_FI.php @@ -19,7 +19,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ilman paikanvaraustermiä, ts. \"objectClass=posixGroup\".", "Port" => "Portti", "Use TLS" => "Käytä TLS:ää", -"Do not use it for SSL connections, it will fail." => "Älä käytä SSL-yhteyttä varten, se epäonnistuu. ", "Case insensitve LDAP server (Windows)" => "Kirjainkoosta piittamaton LDAP-palvelin (Windows)", "Turn off SSL certificate validation." => "Poista käytöstä SSL-varmenteen vahvistus", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Jos yhteys toimii vain tällä valinnalla, siirrä LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi.", diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 9bb350ea23c36e9725c279c10c48eca3119784a3..abe136356983e549bb928774fcd98a3680eb6ca8 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -43,7 +43,7 @@ "Disable Main Server" => "Désactiver le serveur principal", "When switched on, ownCloud will only connect to the replica server." => "Lorsqu'activé, ownCloud ne se connectera qu'au serveur répliqué.", "Use TLS" => "Utiliser TLS", -"Do not use it for SSL connections, it will fail." => "Ne pas utiliser pour les connexions SSL, car cela échouera.", +"Do not use it additionally for LDAPS connections, it will fail." => "À ne pas utiliser pour les connexions LDAPS (cela échouera).", "Case insensitve LDAP server (Windows)" => "Serveur LDAP insensible à la casse (Windows)", "Turn off SSL certificate validation." => "Désactiver la validation du certificat SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la connexion ne fonctionne qu'avec cette option, importez le certificat SSL du serveur LDAP dans le serveur ownCloud.", diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index a2531a40a838232a50565409ffdb742253ec5330..36c1f7af11483e626e05e5094aa6e7767da4398c 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -20,7 +20,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "sen ningunha marca de posición, como p.ex «objectClass=grupoPosix».", "Port" => "Porto", "Use TLS" => "Usar TLS", -"Do not use it for SSL connections, it will fail." => "Non empregalo para conexións SSL: fallará.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP que non distingue entre maiúsculas e minúsculas (Windows)", "Turn off SSL certificate validation." => "Desactiva a validación do certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a conexión só funciona con esta opción importa o certificado SSL do servidor LDAP no seu servidor ownCloud.", diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index 64de16fa65f248fe5c2d08092eb7a5538a041f5a..48a0823a5836c8e55e79f48f022b486eedcd452e 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -22,7 +22,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "itt ne használjunk változót, pl. \"objectClass=posixGroup\".", "Port" => "Port", "Use TLS" => "Használjunk TLS-t", -"Do not use it for SSL connections, it will fail." => "Ne használjuk SSL-kapcsolat esetén, mert nem fog működni!", "Case insensitve LDAP server (Windows)" => "Az LDAP-kiszolgáló nem tesz különbséget a kis- és nagybetűk között (Windows)", "Turn off SSL certificate validation." => "Ne ellenÅ‘rizzük az SSL-tanúsÃtvány érvényességét", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Ha a kapcsolat csak ezzel a beállÃtással működik, akkor importálja az LDAP-kiszolgáló SSL tanúsÃtványát az ownCloud kiszolgálóra!", diff --git a/apps/user_ldap/l10n/id.php b/apps/user_ldap/l10n/id.php index 33e8cc70e937ff008337e5f3b5224716c5c898d4..c07892386d6a2f747c582afcbd0a8202ab8cca8f 100644 --- a/apps/user_ldap/l10n/id.php +++ b/apps/user_ldap/l10n/id.php @@ -6,7 +6,6 @@ "Group Filter" => "saringan grup", "Port" => "port", "Use TLS" => "gunakan TLS", -"Do not use it for SSL connections, it will fail." => "jangan gunakan untuk koneksi SSL, itu akan gagal.", "Turn off SSL certificate validation." => "matikan validasi sertivikat SSL", "Not recommended, use for testing only." => "tidak disarankan, gunakan hanya untuk pengujian.", "in seconds. A change empties the cache." => "dalam detik. perubahan mengosongkan cache", diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index 0220aa958ce1b2cd628f89d22c8bcff645a72e78..594529190d94cf28dbeea404d8461aa0e073a9dd 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -43,7 +43,7 @@ "Disable Main Server" => "Disabilita server principale", "When switched on, ownCloud will only connect to the replica server." => "Se abilitata, ownCloud si collegherà solo al server di replica.", "Use TLS" => "Usa TLS", -"Do not use it for SSL connections, it will fail." => "Non utilizzare per le connessioni SSL, fallirà .", +"Do not use it additionally for LDAPS connections, it will fail." => "Da non utilizzare per le connessioni LDAPS, non funzionerà .", "Case insensitve LDAP server (Windows)" => "Case insensitve LDAP server (Windows)", "Turn off SSL certificate validation." => "Disattiva il controllo del certificato SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se la connessione funziona esclusivamente con questa opzione, importa il certificato SSL del server LDAP nel tuo server ownCloud.", diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index 7706357cbf372c582b025d8cc8babb4959f4d5f4..11ad6cc7a377ab93bc5ab2c3a11c163010e33c32 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -43,7 +43,7 @@ "Disable Main Server" => "メインサーãƒã‚’無効ã«ã™ã‚‹", "When switched on, ownCloud will only connect to the replica server." => "有効ã«ã™ã‚‹ã¨ã€ownCloudã¯ãƒ¬ãƒ—リカサーãƒã«ã®ã¿æŽ¥ç¶šã—ã¾ã™ã€‚", "Use TLS" => "TLSを利用", -"Do not use it for SSL connections, it will fail." => "SSL接続ã«åˆ©ç”¨ã—ãªã„ã§ãã ã•ã„ã€å¤±æ•—ã—ã¾ã™ã€‚", +"Do not use it additionally for LDAPS connections, it will fail." => "LDAPS接続ã®ãŸã‚ã«è¿½åŠ ã§ãれを利用ã—ãªã„ã§ä¸‹ã•ã„。失敗ã—ã¾ã™ã€‚", "Case insensitve LDAP server (Windows)" => "大文å—ï¼å°æ–‡å—を区別ã—ãªã„LDAPサーãƒï¼ˆWindows)", "Turn off SSL certificate validation." => "SSL証明書ã®ç¢ºèªã‚’無効ã«ã™ã‚‹ã€‚", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "接続ãŒã“ã®ã‚ªãƒ—ションã§ã®ã¿å‹•ä½œã™ã‚‹å ´åˆã¯ã€LDAPサーãƒã®SSL証明書をownCloudサーãƒã«ã‚¤ãƒ³ãƒãƒ¼ãƒˆã—ã¦ãã ã•ã„。", diff --git a/apps/user_ldap/l10n/ko.php b/apps/user_ldap/l10n/ko.php index 9ff8ff99d081edb8e616da47111a207cc4cb78ba..419e2d0a690d837dfd13c63a4c341a3e344bd599 100644 --- a/apps/user_ldap/l10n/ko.php +++ b/apps/user_ldap/l10n/ko.php @@ -22,7 +22,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ìžë¦¬ 비움ìžë¥¼ ì‚¬ìš©í• ìˆ˜ 없습니다. ì˜ˆì œ: \"objectClass=posixGroup\"", "Port" => "í¬íŠ¸", "Use TLS" => "TLS 사용", -"Do not use it for SSL connections, it will fail." => "SSL ì—°ê²° ì‹œ 사용하는 경우 ì—°ê²°ë˜ì§€ 않습니다.", "Case insensitve LDAP server (Windows)" => "서버ì—ì„œ 대소문ìžë¥¼ 구분하지 ì•ŠìŒ (Windows)", "Turn off SSL certificate validation." => "SSL ì¸ì¦ì„œ ìœ íš¨ì„± 검사를 í•´ì œí•©ë‹ˆë‹¤.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "ì´ ì˜µì…˜ì„ ì‚¬ìš©í•´ì•¼ ì—°ê²°í• ìˆ˜ 있는 경우ì—는 LDAP ì„œë²„ì˜ SSL ì¸ì¦ì„œë¥¼ ownCloudë¡œ ê°€ì ¸ì˜¬ 수 있습니다.", diff --git a/apps/user_ldap/l10n/lv.php b/apps/user_ldap/l10n/lv.php index 48cee737c749a1a976531919a22d2b601b18363e..34e9196b8d9b04e9c5a3461b4fea233f2be1bdea 100644 --- a/apps/user_ldap/l10n/lv.php +++ b/apps/user_ldap/l10n/lv.php @@ -43,7 +43,7 @@ "Disable Main Server" => "DeaktivÄ“t galveno serveri", "When switched on, ownCloud will only connect to the replica server." => "Kad ieslÄ“gts, ownCloud savienosies tikai ar kopijas serveri.", "Use TLS" => "Lietot TLS", -"Do not use it for SSL connections, it will fail." => "Neizmanto to SSL savienojumiem, tas neizdosies.", +"Do not use it additionally for LDAPS connections, it will fail." => "Neizmanto papildu LDAPS savienojumus! Tas nestrÄdÄs.", "Case insensitve LDAP server (Windows)" => "ReÄ£istrnejutÄ«gs LDAP serveris (Windows)", "Turn off SSL certificate validation." => "IzslÄ“gt SSL sertifikÄtu validÄ“Å¡anu.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Ja savienojums darbojas ar Å¡o opciju, importÄ“ LDAP serveru SSL sertifikÄtu savÄ ownCloud serverÄ«.", diff --git a/apps/user_ldap/l10n/nb_NO.php b/apps/user_ldap/l10n/nb_NO.php index 295166b0a505e52111e650c046aa4915ac5718f5..8aab71354b092f141150b5078b6b643ecf5df111 100644 --- a/apps/user_ldap/l10n/nb_NO.php +++ b/apps/user_ldap/l10n/nb_NO.php @@ -4,7 +4,6 @@ "Group Filter" => "Gruppefilter", "Port" => "Port", "Use TLS" => "Bruk TLS", -"Do not use it for SSL connections, it will fail." => "Ikke bruk for SSL tilkoblinger, dette vil ikke fungere.", "Not recommended, use for testing only." => "Ikke anbefalt, bruk kun for testing", "in seconds. A change empties the cache." => "i sekunder. En endring tømmer bufferen.", "in bytes" => "i bytes", diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index cc5e85fc30bdf98d983b24e9956e0f27727d375c..6879a4c4b9480489b5d0f2e09fd9a9566b18ec07 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "Failed to delete the server configuration" => "Verwijderen serverconfiguratie mislukt", "The configuration is valid and the connection could be established!" => "De configuratie is geldig en de verbinding is geslaagd!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "De configuratie is geldig, maar Bind mislukte. Controleer de serverinstellingen en inloggegevens.", "The configuration is invalid. Please look in the ownCloud log for further details." => "De configuratie is ongeldig. Controleer de ownCloud log voor meer details.", "Deletion failed" => "Verwijderen mislukt", "Take over settings from recent server configuration?" => "Overnemen instellingen van de recente serverconfiguratie?", @@ -32,29 +33,35 @@ "Group Filter" => "Groep Filter", "Defines the filter to apply, when retrieving groups." => "Definiëerd de toe te passen filter voor het ophalen van groepen.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "zonder een placeholder, bijv. \"objectClass=posixGroup\"", +"Connection Settings" => "Verbindingsinstellingen", "Configuration Active" => "Configuratie actief", +"When unchecked, this configuration will be skipped." => "Als dit niet is ingeschakeld wordt deze configuratie overgeslagen.", "Port" => "Poort", "Backup (Replica) Host" => "Backup (Replica) Host", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Opgeven optionele backup host. Het moet een replica van de hoofd LDAP/AD server.", "Backup (Replica) Port" => "Backup (Replica) Poort", "Disable Main Server" => "Deactiveren hoofdserver", "When switched on, ownCloud will only connect to the replica server." => "Wanneer ingeschakeld, zal ownCloud allen verbinden met de replicaserver.", "Use TLS" => "Gebruik TLS", -"Do not use it for SSL connections, it will fail." => "Gebruik niet voor SSL connecties, deze mislukken.", "Case insensitve LDAP server (Windows)" => "Niet-hoofdlettergevoelige LDAP server (Windows)", "Turn off SSL certificate validation." => "Schakel SSL certificaat validatie uit.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Als de connectie alleen werkt met deze optie, importeer dan het LDAP server SSL certificaat naar je ownCloud server.", "Not recommended, use for testing only." => "Niet aangeraden, gebruik alleen voor test doeleinden.", "in seconds. A change empties the cache." => "in seconden. Een verandering maakt de cache leeg.", +"Directory Settings" => "Mapinstellingen", "User Display Name Field" => "Gebruikers Schermnaam Veld", "The LDAP attribute to use to generate the user`s ownCloud name." => "Het te gebruiken LDAP attribuut voor het genereren van de ownCloud naam voor de gebruikers.", "Base User Tree" => "Basis Gebruikers Structuur", "One User Base DN per line" => "Een User Base DN per regel", +"User Search Attributes" => "Attributen voor gebruikerszoekopdrachten", "Optional; one attribute per line" => "Optioneel; één attribuut per regel", "Group Display Name Field" => "Groep Schermnaam Veld", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Het te gebruiken LDAP attribuut voor het genereren van de ownCloud naam voor de groepen.", "Base Group Tree" => "Basis Groupen Structuur", "One Group Base DN per line" => "Een Group Base DN per regel", +"Group Search Attributes" => "Attributen voor groepszoekopdrachten", "Group-Member association" => "Groepslid associatie", +"Special Attributes" => "Speciale attributen", "in bytes" => "in bytes", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Laat leeg voor de gebruikersnaam (standaard). Of, specificeer een LDAP/AD attribuut.", "Help" => "Help" diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index 83a8d1615ae5ade9e927619c35c26f76b3d3252d..ef3f9140ef75365d2312e498d67ed46c424bbf40 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -20,7 +20,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "bez żadnych symboli zastÄ™pczych np. \"objectClass=posixGroup\".", "Port" => "Port", "Use TLS" => "Użyj TLS", -"Do not use it for SSL connections, it will fail." => "Nie używaj SSL dla poÅ‚Ä…czeÅ„, jeÅ›li siÄ™ nie powiedzie.", "Case insensitve LDAP server (Windows)" => "Wielkość liter serwera LDAP (Windows)", "Turn off SSL certificate validation." => "WyÅ‚Ä…czyć sprawdzanie poprawnoÅ›ci certyfikatu SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "JeÅ›li poÅ‚Ä…czenie dziaÅ‚a tylko z tÄ… opcjÄ…, zaimportuj certyfikat SSL serwera LDAP w serwerze ownCloud.", diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php index 79e56eeb652b8f89d8698fe47e386a7aa18f465a..514ceb7027ea5c16d6c5d77bd4f0f87cec1e65ba 100644 --- a/apps/user_ldap/l10n/pt_BR.php +++ b/apps/user_ldap/l10n/pt_BR.php @@ -19,7 +19,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "sem nenhum espaço reservado, ex. \"objectClass=posixGroup\"", "Port" => "Porta", "Use TLS" => "Usar TLS", -"Do not use it for SSL connections, it will fail." => "Não use-o para conexões SSL, pois falhará.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP sensÃvel à caixa alta (Windows)", "Turn off SSL certificate validation." => "Desligar validação de certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a conexão só funciona com essa opção, importe o certificado SSL do servidor LDAP no seu servidor ownCloud.", diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index 21735b497c641319762bd429773d8ded73172be1..058e7ba25323abe9d78245223f73c023ea71f265 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -33,6 +33,7 @@ "Group Filter" => "Filtrar por grupo", "Defines the filter to apply, when retrieving groups." => "Defina o filtro a aplicar, ao recuperar grupos.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "Sem nenhuma variável. Exemplo: \"objectClass=posixGroup\".", +"Connection Settings" => "Definições de ligação", "Configuration Active" => "Configuração activa", "When unchecked, this configuration will be skipped." => "Se não estiver marcada, esta definição não será tida em conta.", "Port" => "Porto", @@ -42,12 +43,12 @@ "Disable Main Server" => "Desactivar servidor principal", "When switched on, ownCloud will only connect to the replica server." => "Se estiver ligado, o ownCloud vai somente ligar-se a este servidor de réplicas.", "Use TLS" => "Usar TLS", -"Do not use it for SSL connections, it will fail." => "Não use para ligações SSL, irá falhar.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP (Windows) não sensÃvel a maiúsculas.", "Turn off SSL certificate validation." => "Desligar a validação de certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a ligação apenas funcionar com está opção, importe o certificado SSL do servidor LDAP para o seu servidor do ownCloud.", "Not recommended, use for testing only." => "Não recomendado, utilizado apenas para testes!", "in seconds. A change empties the cache." => "em segundos. Uma alteração esvazia a cache.", +"Directory Settings" => "Definições de directorias", "User Display Name Field" => "Mostrador do nome de utilizador.", "The LDAP attribute to use to generate the user`s ownCloud name." => "Atributo LDAP para gerar o nome de utilizador do ownCloud.", "Base User Tree" => "Base da árvore de utilizadores.", @@ -60,6 +61,7 @@ "One Group Base DN per line" => "Uma base de grupo DN por linha", "Group Search Attributes" => "Atributos de pesquisa de grupo", "Group-Member association" => "Associar utilizador ao grupo.", +"Special Attributes" => "Atributos especiais", "in bytes" => "em bytes", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD.", "Help" => "Ajuda" diff --git a/apps/user_ldap/l10n/ro.php b/apps/user_ldap/l10n/ro.php index 3e7e75004296e864b23186e12149caf79b8717be..8f55a35b4916dccc41dc74146411ebcd3200d550 100644 --- a/apps/user_ldap/l10n/ro.php +++ b/apps/user_ldap/l10n/ro.php @@ -22,7 +22,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "fără substituenÈ›i, d.e. \"objectClass=posixGroup\"", "Port" => "Portul", "Use TLS" => "Utilizează TLS", -"Do not use it for SSL connections, it will fail." => "A nu se utiliza pentru conexiuni SSL, va eÈ™ua.", "Case insensitve LDAP server (Windows)" => "Server LDAP insensibil la majuscule (Windows)", "Turn off SSL certificate validation." => "OpreÈ™te validarea certificatelor SSL ", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Dacă conexiunea lucrează doar cu această opÈ›iune, importează certificatul SSL al serverului LDAP în serverul ownCloud.", diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index 45f6c171bf3c7c7ab231617cb7c1f4870d044e08..4c4b9708667c34206bec63e5e119b38c4e02b1f8 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -1,6 +1,18 @@ <?php $TRANSLATIONS = array( +"Failed to delete the server configuration" => "Ðе удалоÑÑŒ удалить конфигурацию Ñервера", +"The configuration is valid and the connection could be established!" => "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ Ð¸ подключение может быть уÑтановлено!", +"The configuration is invalid. Please look in the ownCloud log for further details." => "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð½Ðµ верна. ПожалуйÑта, поÑмотрите в журнале ownCloud детали.", "Deletion failed" => "Удаление не удалоÑÑŒ", +"Take over settings from recent server configuration?" => "ПринÑÑ‚ÑŒ наÑтройки из поÑледней конфигурации Ñервера?", +"Keep settings?" => "Сохранить наÑтройки?", +"Cannot add server configuration" => "Ðе получилоÑÑŒ добавить конфигурацию Ñервера", +"Connection test succeeded" => "Проверка ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ ÑƒÐ´Ð°Ð»Ð°ÑÑŒ", +"Connection test failed" => "Проверка ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð½Ðµ удалаÑÑŒ", +"Do you really want to delete the current Server Configuration?" => "Ð’Ñ‹ дейÑтвительно хотите удалить ÑущеÑтвующую конфигурацию Ñервера?", +"Confirm Deletion" => "Подтверждение удалениÑ", "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Внимание:</b>ÐŸÑ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ user_ldap и user_webdavauth неÑовмеÑтимы. Ð’Ñ‹ можете ÑтолкнутьÑÑ Ñ Ð½ÐµÐ¾Ð¶Ð¸Ð´Ð°Ð½Ð½Ñ‹Ð¼ поведением. ПожалуйÑта, обратитеÑÑŒ к ÑиÑтемному админиÑтратору, чтобы отключить одно из них.", +"Server configuration" => "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ñервера", +"Add Server Configuration" => "Добавить конфигурацию Ñервера", "Host" => "Сервер", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Можно опуÑтить протокол, за иÑключением того, когда вам требуетÑÑ SSL. Тогда начните Ñ ldaps :/ /", "Base DN" => "Базовый DN", @@ -18,21 +30,27 @@ "Group Filter" => "Фильтр группы", "Defines the filter to apply, when retrieving groups." => "ОпределÑет фильтр Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸ получении группы.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "без заполнениÑ, например \"objectClass=posixGroup\".", +"Connection Settings" => "ÐаÑтройки подключениÑ", +"Configuration Active" => "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð°", "Port" => "Порт", +"Disable Main Server" => "Отключение главного Ñервера", "Use TLS" => "ИÑпользовать TLS", -"Do not use it for SSL connections, it will fail." => "Ðе иÑпользуйте Ð´Ð»Ñ Ñоединений SSL", "Case insensitve LDAP server (Windows)" => "ÐечувÑтвительный к региÑтру Ñервер LDAP (Windows)", "Turn off SSL certificate validation." => "Отключить проверку Ñертификата SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "ЕÑли Ñоединение работает только Ñ Ñтой опцией, импортируйте на ваш Ñервер ownCloud Ñертификат SSL Ñервера LDAP.", "Not recommended, use for testing only." => "Ðе рекомендуетÑÑ, иÑпользуйте только Ð´Ð»Ñ Ñ‚ÐµÑтированиÑ.", "in seconds. A change empties the cache." => "в Ñекундах. Изменение очиÑтит кÑш.", +"Directory Settings" => "ÐаÑтройки каталога", "User Display Name Field" => "Поле отображаемого имени пользователÑ", "The LDAP attribute to use to generate the user`s ownCloud name." => "Ðтрибут LDAP Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ð¸ имени Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ ownCloud.", "Base User Tree" => "База пользовательÑкого дерева", +"User Search Attributes" => "ПоиÑковые атрибуты пользователÑ", +"Optional; one attribute per line" => "Опционально; один атрибут на линию", "Group Display Name Field" => "Поле отображаемого имени группы", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Ðтрибут LDAP Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ð¸ имени группы ownCloud.", "Base Group Tree" => "База группового дерева", "Group-Member association" => "ÐÑÑÐ¾Ñ†Ð¸Ð°Ñ†Ð¸Ñ Ð“Ñ€ÑƒÐ¿Ð¿Ð°-УчаÑтник", +"Special Attributes" => "Специальные атрибуты", "in bytes" => "в байтах", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ОÑтавьте Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¿ÑƒÑтым (по умолчанию). Иначе укажите атрибут LDAP/AD.", "Help" => "Помощь" diff --git a/apps/user_ldap/l10n/ru_RU.php b/apps/user_ldap/l10n/ru_RU.php index f62d2cd4eafb90586922813728642356112e8bff..a4ed503b1d12d3646de81295be67ae5e718e9d5f 100644 --- a/apps/user_ldap/l10n/ru_RU.php +++ b/apps/user_ldap/l10n/ru_RU.php @@ -22,7 +22,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "без каких-либо заполнителей, например, \"objectClass=posixGroup\".", "Port" => "Порт", "Use TLS" => "ИÑпользовать TLS", -"Do not use it for SSL connections, it will fail." => "Ðе иÑпользуйте Ñто SSL-Ñоединений, Ñто не будет выполнено.", "Case insensitve LDAP server (Windows)" => "ÐечувÑтвительный к региÑтру LDAP-Ñервер (Windows)", "Turn off SSL certificate validation." => "Выключить проверку Ñертификата SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "ЕÑли Ñоединение работает только Ñ Ñтой опцией, импортируйте SSL-Ñертификат LDAP Ñервера в ваш ownCloud Ñервер.", diff --git a/apps/user_ldap/l10n/sk_SK.php b/apps/user_ldap/l10n/sk_SK.php index 77cb039c7ed5bdd77fefafc14abab97e1115292b..af8ff0307a7584661ae575b71029dd4ad42c5700 100644 --- a/apps/user_ldap/l10n/sk_SK.php +++ b/apps/user_ldap/l10n/sk_SK.php @@ -43,7 +43,6 @@ "Disable Main Server" => "ZakázaÅ¥ hlavný server", "When switched on, ownCloud will only connect to the replica server." => "Pri zapnutà sa ownCloud pripojà len k záložnému serveru.", "Use TLS" => "Použi TLS", -"Do not use it for SSL connections, it will fail." => "NepoužÃvajte pre pripojenie SSL, pripojenie zlyhá.", "Case insensitve LDAP server (Windows)" => "LDAP server nerozliÅ¡uje veľkosÅ¥ znakov (Windows)", "Turn off SSL certificate validation." => "Vypnúť overovanie SSL certifikátu.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Ak pripojenie pracuje len s touto možnosÅ¥ou, tak importujte SSL certifikát LDAP serveru do vášho servera ownCloud.", diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index 133d7ee9119ffe16c5b25620895ff34488f10c6a..e1734a90780d661b5f8346820033e320d4df2c6e 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -20,7 +20,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "Brez katerekoli vsebnika, npr. \"objectClass=posixGroup\".", "Port" => "Vrata", "Use TLS" => "Uporabi TLS", -"Do not use it for SSL connections, it will fail." => "Uporaba SSL za povezave bo spodletela.", "Case insensitve LDAP server (Windows)" => "Strežnik LDAP ne upoÅ¡teva velikosti Ärk (Windows)", "Turn off SSL certificate validation." => "OnemogoÄi potrditev veljavnosti potrdila SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "V primeru, da povezava deluje le s to možnostjo, uvozite potrdilo SSL iz strežnika LDAP na vaÅ¡ strežnik ownCloud.", diff --git a/apps/user_ldap/l10n/sr.php b/apps/user_ldap/l10n/sr.php index 418d94afca5183ea559b7f0f7ed7557fef859b6c..52569a08ef831d37f4a082678d442192c8a1b414 100644 --- a/apps/user_ldap/l10n/sr.php +++ b/apps/user_ldap/l10n/sr.php @@ -18,7 +18,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "без икаквог чувара меÑта, нпр. „objectClass=posixGroup“.", "Port" => "Порт", "Use TLS" => "КориÑти TLS", -"Do not use it for SSL connections, it will fail." => "Ðе кориÑтите за SSL везе јер неће радити.", "Case insensitve LDAP server (Windows)" => "LDAP Ñервер оÑетљив на велика и мала Ñлова (Windows)", "Turn off SSL certificate validation." => "ИÑкључите потврду SSL Ñертификата.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Увезите SSL Ñертификат LDAP Ñервера у Ñвој ownCloud ако веза ради Ñамо Ñа овом опцијом.", diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 509906934cb7290b5d5c622ab4d8a7fe4714fc5c..c100fc94afe97f79f7d9883fed8f4389156c4f8c 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -43,7 +43,6 @@ "Disable Main Server" => "Inaktivera huvudserver", "When switched on, ownCloud will only connect to the replica server." => "När denna är pÃ¥kopplad kommer ownCloud att koppla upp till replika-servern, endast.", "Use TLS" => "Använd TLS", -"Do not use it for SSL connections, it will fail." => "Använd inte för SSL-anslutningar, det kommer inte att fungera.", "Case insensitve LDAP server (Windows)" => "LDAP-servern är okänslig för gemener och versaler (Windows)", "Turn off SSL certificate validation." => "Stäng av verifiering av SSL-certifikat.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Om anslutningen bara fungerar med det här alternativet, importera LDAP-serverns SSL-certifikat i din ownCloud-server.", diff --git a/apps/user_ldap/l10n/ta_LK.php b/apps/user_ldap/l10n/ta_LK.php index d617f49700f3b59b5b31f94f8d0d485813264bb7..f6beb3c48630c51f702acdac786cfc320da4ef22 100644 --- a/apps/user_ldap/l10n/ta_LK.php +++ b/apps/user_ldap/l10n/ta_LK.php @@ -9,7 +9,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "எநà¯à®¤ ஒதà¯à®•à¯à®•à¯€à®Ÿà¯à®®à¯ இலà¯à®²à®¾à®®à®²à¯, உதாரணமà¯. \"objectClass=posixGroup\".", "Port" => "தà¯à®±à¯ˆ ", "Use TLS" => "TLS ஠பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®µà¯à®®à¯", -"Do not use it for SSL connections, it will fail." => "SSL இணைபà¯à®ªà®¿à®±à¯à®•à¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®µà¯‡à®£à¯à®Ÿà®¾à®®à¯, அத௠தோலà¯à®µà®¿à®¯à®Ÿà¯ˆà®¯à¯à®®à¯.", "Case insensitve LDAP server (Windows)" => "உணரà¯à®šà¯à®šà®¿à®¯à®¾à®© LDAP சேவையகம௠(சாளரஙà¯à®•à®³à¯)", "Turn off SSL certificate validation." => "SSL சானà¯à®±à®¿à®¤à®´à®¿à®©à¯ செலà¯à®²à¯à®ªà®Ÿà®¿à®¯à¯ˆ நிறà¯à®¤à¯à®¤à®¿à®µà®¿à®Ÿà®µà¯à®®à¯", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "இநà¯à®¤ தெரிவà¯à®•à®³à®¿à®²à¯ மடà¯à®Ÿà¯à®®à¯ இணைபà¯à®ªà¯ வேலைசெயà¯à®¤à®¾à®²à¯, உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ owncloud சேவையகதà¯à®¤à®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯ LDAP சேவையகதà¯à®¤à®¿à®©à¯ SSL சானà¯à®±à®¿à®¤à®´à¯ˆ இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯à®µà¯à®®à¯", diff --git a/apps/user_ldap/l10n/th_TH.php b/apps/user_ldap/l10n/th_TH.php index 07dbc835b31ae162e4e7b50f7e7fa6a5f1da355d..802badb2f0304e4352af8874496f64f328087cc4 100644 --- a/apps/user_ldap/l10n/th_TH.php +++ b/apps/user_ldap/l10n/th_TH.php @@ -36,7 +36,6 @@ "Port" => "พà¸à¸£à¹Œà¸•", "Disable Main Server" => "ปิดใช้งานเซิร์ฟเวà¸à¸£à¹Œà¸«à¸¥à¸±à¸", "Use TLS" => "ใช้ TLS", -"Do not use it for SSL connections, it will fail." => "à¸à¸£à¸¸à¸“าà¸à¸¢à¹ˆà¸²à¹ƒà¸Šà¹‰à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•à¹ˆà¸à¹à¸šà¸š SSL à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•à¹ˆà¸à¸ˆà¸°à¹€à¸à¸´à¸”à¸à¸²à¸£à¸¥à¹‰à¸¡à¹€à¸«à¸¥à¸§", "Case insensitve LDAP server (Windows)" => "เซิร์ฟเวà¸à¸£à¹Œ LDAP ประเภท Case insensitive (วินโดวส์)", "Turn off SSL certificate validation." => "ปิดใช้งานà¸à¸²à¸£à¸•à¸£à¸§à¸ˆà¸ªà¸à¸šà¸„วามถูà¸à¸•à¹‰à¸à¸‡à¸‚à¸à¸‡à¹ƒà¸šà¸£à¸±à¸šà¸£à¸à¸‡à¸„วามปลà¸à¸”ภัย SSL", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "หาà¸à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•à¹ˆà¸à¸ªà¸²à¸¡à¸²à¸£à¸–ทำงานได้เฉพาะà¸à¸±à¸šà¸•à¸±à¸§à¹€à¸¥à¸·à¸à¸à¸™à¸µà¹‰à¹€à¸—่านั้น, ให้นำเข้าข้à¸à¸¡à¸¹à¸¥à¹ƒà¸šà¸£à¸±à¸šà¸£à¸à¸‡à¸„วามปลà¸à¸”ภัยà¹à¸šà¸š SSL ขà¸à¸‡à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œ LDAP ดังà¸à¸¥à¹ˆà¸²à¸§à¹€à¸‚้าไปไว้ในเซิร์ฟเวà¸à¸£à¹Œ ownCloud", diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index 8ded27a29523354abc221b67f1d5b2a3273d6f03..1bed9e246c924af9031d228ae725d191a4ecfb6c 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -12,7 +12,6 @@ "Group Filter" => "Grup Süzgeci", "Port" => "Port", "Use TLS" => "TLS kullan", -"Do not use it for SSL connections, it will fail." => "SSL baÄŸlantıları ile kullanmayın, baÅŸarısız olacaktır.", "Turn off SSL certificate validation." => "SSL sertifika doÄŸrulamasını kapat.", "Not recommended, use for testing only." => "Önerilmez, sadece test için kullanın.", "in seconds. A change empties the cache." => "saniye cinsinden. Bir deÄŸiÅŸiklik önbelleÄŸi temizleyecektir.", diff --git a/apps/user_ldap/l10n/uk.php b/apps/user_ldap/l10n/uk.php index 4dd1256ee333834c8c11b7cfd9194071571fe675..643a7495890b89e6ef74ac4c75ef6d04e0e337e5 100644 --- a/apps/user_ldap/l10n/uk.php +++ b/apps/user_ldap/l10n/uk.php @@ -1,9 +1,24 @@ <?php $TRANSLATIONS = array( +"Failed to delete the server configuration" => "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ конфігурацію Ñервера", +"The configuration is valid and the connection could be established!" => "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ð²Ñ–Ñ€Ð½Ð° Ñ– зв'Ñзок може бути вÑтановлений ​​!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ð²Ñ–Ñ€Ð½Ð°, але вÑтановити зв'Ñзок не вдалоÑÑ. Будь лаÑка, перевірте Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñервера Ñ– облікові дані.", +"The configuration is invalid. Please look in the ownCloud log for further details." => "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ð½ÐµÐ²Ñ–Ñ€Ð½Ð°. Подробиці подивітьÑÑ, будь лаÑка, в журналі ownCloud.", "Deletion failed" => "Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð½Ðµ було виконано", +"Take over settings from recent server configuration?" => "ЗаÑтоÑувати Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð· оÑтанньої конфігурації Ñервера ?", +"Keep settings?" => "Зберегти Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ ?", +"Cannot add server configuration" => "Ðеможливо додати конфігурацію Ñервера", +"Connection test succeeded" => "Перевірка з'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾Ð¹ÑˆÐ»Ð° уÑпішно", +"Connection test failed" => "Перевірка з'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐ¸Ð»Ð°ÑÑŒ неуÑпішно", +"Do you really want to delete the current Server Configuration?" => "Ви дійÑно бажаєте видалити поточну конфігурацію Ñервера ?", +"Confirm Deletion" => "Підтвердіть ВидаленнÑ", "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Увага:</b> ЗаÑтоÑунки user_ldap та user_webdavauth не ÑуміÑні. Ви можете зіткнутиÑÑ Ð· неÑподіваною поведінкою. Будь лаÑка, звернітьÑÑ Ð´Ð¾ ÑиÑтемного адмініÑтратора, щоб відключити одну з них.", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Увага:</ b> Потрібний модуль PHP LDAP не вÑтановлено, базова програма працювати не буде. Будь лаÑка, звернітьÑÑ Ð´Ð¾ ÑиÑтемного адмініÑтратора, щоб вÑтановити його.", +"Server configuration" => "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¡ÐµÑ€Ð²ÐµÑ€Ð°", +"Add Server Configuration" => "Додати Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¡ÐµÑ€Ð²ÐµÑ€Ð°", "Host" => "ХоÑÑ‚", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Можна не вказувати протокол, Ñкщо вам не потрібен SSL. Тоді почніть з ldaps://", "Base DN" => "Базовий DN", +"One Base DN per line" => "Один Base 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 Ñ– Пароль порожніми.", @@ -18,9 +33,10 @@ "Group Filter" => "Фільтр Груп", "Defines the filter to apply, when retrieving groups." => "Визначає фільтр, Ñкий заÑтоÑовуєтьÑÑ Ð¿Ñ€Ð¸ отриманні груп.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "без будь-Ñкого заповнювача, наприклад: \"objectClass=posixGroup\".", +"Configuration Active" => "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ðктивне", +"When unchecked, this configuration will be skipped." => "Якщо \"галочка\" знÑта, Ñ†Ñ ÐºÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ð±ÑƒÐ´Ðµ пропущена.", "Port" => "Порт", "Use TLS" => "ВикориÑтовуйте TLS", -"Do not use it for SSL connections, it will fail." => "Ðе викориÑтовуйте його Ð´Ð»Ñ SSL з'єднань, це не буде виконано.", "Case insensitve LDAP server (Windows)" => "Ðечутливий до регіÑтру LDAP Ñервер (Windows)", "Turn off SSL certificate validation." => "Вимкнути перевірку SSL Ñертифіката.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Якщо з'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð¿Ñ€Ð°Ñ†ÑŽÑ” лише з цією опцією, імпортуйте SSL Ñертифікат LDAP Ñервера у ваший ownCloud Ñервер.", @@ -29,9 +45,11 @@ "User Display Name Field" => "Поле, Ñке відображає Ім'Ñ ÐšÐ¾Ñ€Ð¸Ñтувача", "The LDAP attribute to use to generate the user`s ownCloud name." => "Ðтрибут LDAP, Ñкий викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ†Ñ–Ñ— імен кориÑтувачів ownCloud.", "Base User Tree" => "ОÑновне Дерево КориÑтувачів", +"One User Base DN per line" => "Один КориÑтувач Base DN на одній Ñтрочці", "Group Display Name Field" => "Поле, Ñке відображає Ім'Ñ Ð“Ñ€ÑƒÐ¿Ð¸", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Ðтрибут LDAP, Ñкий викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ†Ñ–Ñ— імен груп ownCloud.", "Base Group Tree" => "ОÑновне Дерево Груп", +"One Group Base DN per line" => "Одна Група Base DN на одній Ñтрочці", "Group-Member association" => "ÐÑÐ¾Ñ†Ñ–Ð°Ñ†Ñ–Ñ Ð“Ñ€ÑƒÐ¿Ð°-Член", "in bytes" => "в байтах", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Залиште порожнім Ð´Ð»Ñ Ñ–Ð¼ÐµÐ½Ñ– кориÑтувача (за замовчаннÑм). Інакше, вкажіть атрибут LDAP/AD.", diff --git a/apps/user_ldap/l10n/vi.php b/apps/user_ldap/l10n/vi.php index 76ff6fe33a4c32909c11b15611326e63d1bd9ba0..46054e4a4e21b3c07ca4f76b6595bb49b37f8562 100644 --- a/apps/user_ldap/l10n/vi.php +++ b/apps/user_ldap/l10n/vi.php @@ -19,7 +19,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "mà không giữ chá»— nà o, và dụ nhÆ° \"objectClass = osixGroup\".", "Port" => "Cổng", "Use TLS" => "Sá» dụng TLS", -"Do not use it for SSL connections, it will fail." => "Kết nối SSL bị lá»—i. ", "Case insensitve LDAP server (Windows)" => "TrÆ°á»ng hợp insensitve LDAP máy chủ (Windows)", "Turn off SSL certificate validation." => "Tắt xác thá»±c chứng nháºn SSL", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Nếu kết nối chỉ hoạt Ä‘á»™ng vá»›i tùy chá»n nà y, vui lòng import LDAP certificate SSL trong máy chủ ownCloud của bạn.", diff --git a/apps/user_ldap/l10n/zh_CN.GB2312.php b/apps/user_ldap/l10n/zh_CN.GB2312.php index 91b059afd0be46f0260c3f4a25825ae197e8e8f0..f5bc41fd46b3df5cf756bc50d09df33f7a78036a 100644 --- a/apps/user_ldap/l10n/zh_CN.GB2312.php +++ b/apps/user_ldap/l10n/zh_CN.GB2312.php @@ -19,7 +19,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ä¸èƒ½ä½¿ç”¨å ä½ç¬¦ï¼Œä¾‹å¦‚ \"objectClass=posixGroup\"。", "Port" => "端å£", "Use TLS" => "使用 TLS", -"Do not use it for SSL connections, it will fail." => "ä¸è¦ä½¿ç”¨å®ƒè¿›è¡Œ SSL 连接,会失败的。", "Case insensitve LDAP server (Windows)" => "大å°å†™ä¸æ•æ„Ÿçš„ LDAP æœåŠ¡å™¨ (Windows)", "Turn off SSL certificate validation." => "å…³é— SSL è¯ä¹¦æ ¡éªŒã€‚", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "如果åªæœ‰ä½¿ç”¨æ¤é€‰é¡¹æ‰èƒ½è¿žæŽ¥ï¼Œè¯·å¯¼å…¥ LDAP æœåŠ¡å™¨çš„ SSL è¯ä¹¦åˆ°æ‚¨çš„ ownCloud æœåŠ¡å™¨ã€‚", diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php index d0c32e94e0808f61ab2d54761b48d0a3864e6903..d494945e2e45155c94a33fb46bafac9a34486278 100644 --- a/apps/user_ldap/l10n/zh_CN.php +++ b/apps/user_ldap/l10n/zh_CN.php @@ -20,7 +20,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "æ— éœ€å ä½ç¬¦ï¼Œä¾‹å¦‚\"objectClass=posixGroup\"", "Port" => "端å£", "Use TLS" => "使用TLS", -"Do not use it for SSL connections, it will fail." => "ä¸è¦åœ¨SSL链接ä¸ä½¿ç”¨æ¤é€‰é¡¹ï¼Œä¼šå¯¼è‡´å¤±è´¥ã€‚", "Case insensitve LDAP server (Windows)" => "大å°å†™æ•æ„ŸLDAPæœåŠ¡å™¨(Windows)", "Turn off SSL certificate validation." => "å…³é—SSLè¯ä¹¦éªŒè¯", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "如果链接仅在æ¤é€‰é¡¹æ—¶å¯ç”¨ï¼Œåœ¨æ‚¨çš„ownCloudæœåŠ¡å™¨ä¸å¯¼å…¥LDAPæœåŠ¡å™¨çš„SSLè¯ä¹¦ã€‚", diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index acc33e047c64b9c1c6f9fd6b9bbd56fab1934c5f..f92779b1cada27d8e7012c80e212da1ce9f73aa7 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -409,6 +409,11 @@ class Connection { $this->config[$key] = array(); } } + if((strpos($this->config['ldapHost'], 'ldaps') === 0) + && $this->config['ldapTLS']) { + $this->config['ldapTLS'] = false; + \OCP\Util::writeLog('user_ldap', 'LDAPS (already using secure connection) and TLS do not work together. Switched off TLS.', \OCP\Util::INFO); + } @@ -523,7 +528,7 @@ class Connection { if(!$this->config['ldapOverrideMainServer'] && !$this->getFromCache('overrideMainServer')) { $this->doConnect($this->config['ldapHost'], $this->config['ldapPort']); $bindStatus = $this->bind(); - $error = ldap_errno($this->ldapConnectionRes); + $error = is_resource($this->ldapConnectionRes) ? ldap_errno($this->ldapConnectionRes) : -1; } else { $bindStatus = false; $error = null; @@ -547,6 +552,9 @@ class Connection { } private function doConnect($host, $port) { + if(empty($host)) { + return false; + } $this->ldapConnectionRes = ldap_connect($host, $port); if(ldap_set_option($this->ldapConnectionRes, LDAP_OPT_PROTOCOL_VERSION, 3)) { if(ldap_set_option($this->ldapConnectionRes, LDAP_OPT_REFERRALS, 0)) { @@ -564,9 +572,13 @@ class Connection { if(!$this->config['ldapConfigurationActive']) { return false; } - $ldapLogin = @ldap_bind($this->getConnectionResource(), $this->config['ldapAgentName'], $this->config['ldapAgentPassword']); + $cr = $this->getConnectionResource(); + if(!is_resource($cr)) { + return false; + } + $ldapLogin = @ldap_bind($cr, $this->config['ldapAgentName'], $this->config['ldapAgentPassword']); if(!$ldapLogin) { - \OCP\Util::writeLog('user_ldap', 'Bind failed: ' . ldap_errno($this->ldapConnectionRes) . ': ' . ldap_error($this->ldapConnectionRes), \OCP\Util::ERROR); + \OCP\Util::writeLog('user_ldap', 'Bind failed: ' . ldap_errno($cr) . ': ' . ldap_error($cr), \OCP\Util::ERROR); $this->ldapConnectionRes = null; return false; } diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index eb3840a611bd5865ef9669528680e593ed155b68..c6f1834e0131100b85203f0d5e20b2d5eb44f675 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -35,7 +35,7 @@ <p><label for="ldap_backup_host"><?php echo $l->t('Backup (Replica) Host');?></label><input type="text" id="ldap_backup_host" name="ldap_backup_host" data-default="<?php echo $_['ldap_backup_host_default']; ?>" title="<?php echo $l->t('Give an optional backup host. It must be a replica of the main LDAP/AD server.');?>"></p> <p><label for="ldap_backup_port"><?php echo $l->t('Backup (Replica) Port');?></label><input type="number" id="ldap_backup_port" name="ldap_backup_port" data-default="<?php echo $_['ldap_backup_port_default']; ?>" /></p> <p><label for="ldap_override_main_server"><?php echo $l->t('Disable Main Server');?></label><input type="checkbox" id="ldap_override_main_server" name="ldap_override_main_server" value="1" data-default="<?php echo $_['ldap_override_main_server_default']; ?>" title="<?php echo $l->t('When switched on, ownCloud will only connect to the replica server.');?>" /></p> - <p><label for="ldap_tls"><?php echo $l->t('Use TLS');?></label><input type="checkbox" id="ldap_tls" name="ldap_tls" value="1" data-default="<?php echo $_['ldap_tls_default']; ?>" title="<?php echo $l->t('Do not use it for SSL connections, it will fail.');?>" /></p> + <p><label for="ldap_tls"><?php echo $l->t('Use TLS');?></label><input type="checkbox" id="ldap_tls" name="ldap_tls" value="1" data-default="<?php echo $_['ldap_tls_default']; ?>" title="<?php echo $l->t('Do not use it additionally for LDAPS 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" data-default="<?php echo $_['ldap_nocase_default']; ?>" value="1"<?php if (isset($_['ldap_nocase']) && ($_['ldap_nocase'])) echo ' checked'; ?>></p> <p><label for="ldap_turn_off_cert_check"><?php echo $l->t('Turn off SSL certificate validation.');?></label><input type="checkbox" id="ldap_turn_off_cert_check" name="ldap_turn_off_cert_check" title="<?php echo $l->t('If connection only works with this option, import the LDAP server\'s SSL certificate in your ownCloud server.');?>" data-default="<?php echo $_['ldap_turn_off_cert_check_default']; ?>" value="1"><br/><small><?php echo $l->t('Not recommended, use for testing only.');?></small></p> <p><label for="ldap_cache_ttl">Cache Time-To-Live</label><input type="number" id="ldap_cache_ttl" name="ldap_cache_ttl" title="<?php echo $l->t('in seconds. A change empties the cache.');?>" data-default="<?php echo $_['ldap_cache_ttl_default']; ?>" /></p> diff --git a/core/ajax/translations.php b/core/ajax/translations.php index e22cbad4708f09979e41273c6eef1bbda2d4f5ba..e52a2e9b1e8292b8d90295b77858ddc465c9261f 100644 --- a/core/ajax/translations.php +++ b/core/ajax/translations.php @@ -22,6 +22,7 @@ */ $app = $_POST["app"]; +$app = OC_App::cleanAppId($app); $l = OC_L10N::get( $app ); diff --git a/core/ajax/vcategories/add.php b/core/ajax/vcategories/add.php index 23d00af70ab8c185ae44ab4780b9bdebf5d5dff3..16a1461be08b23c57fd00fc4ec9e15d8aa7b5acb 100644 --- a/core/ajax/vcategories/add.php +++ b/core/ajax/vcategories/add.php @@ -34,7 +34,7 @@ debug(print_r($category, true)); $categories = new OC_VCategories($type); if($categories->hasCategory($category)) { - bailOut(OC_Contacts_App::$l10n->t('This category already exists: '.$category)); + bailOut($l->t('This category already exists: %s', array($category))); } else { $categories->add($category, true); } diff --git a/core/ajax/vcategories/removeFromFavorites.php b/core/ajax/vcategories/removeFromFavorites.php index ba6e95c249735d3aeed236c6a7cfb2340b5164e6..78a528caa861b1ed474c3196512778e66d9e1f07 100644 --- a/core/ajax/vcategories/removeFromFavorites.php +++ b/core/ajax/vcategories/removeFromFavorites.php @@ -27,12 +27,12 @@ if(is_null($type)) { } if(is_null($id)) { - bailOut($l->t('%s ID not provided.', $type)); + bailOut($l->t('%s ID not provided.', array($type))); } $categories = new OC_VCategories($type); if(!$categories->removeFromFavorites($id, $type)) { - bailOut($l->t('Error removing %s from favorites.', $id)); + bailOut($l->t('Error removing %s from favorites.', array($id))); } OC_JSON::success(); diff --git a/core/css/styles.css b/core/css/styles.css index 268040525bf3219f768e60f78e18b93e04835639..e6a4bf6199530571f156fec6d4939e9b8802465d 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -59,25 +59,6 @@ input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:# ::-webkit-scrollbar-thumb { background:#ddd; } -#show { float: right; position: absolute; right: 1em; top: 0.8em; display:none; } -#login form input[name="show"] + label { background: url("../img/actions/toggle.png") no-repeat; opacity:0.3; -float: right; width: 24px; position: absolute !important; height: 14px; right: 1em; top: 1.25em;} -#login form input[name="show"]:checked + label { background:url("../img/actions/toggle.png") no-repeat; opacity:0.8; } - - - -/* SHOW PASSWORD TOGGLE */ -#show { - position:absolute; right:1em; top:.8em; float:right; - display:none; -} -#login form input[name="show"] + label { - position:absolute !important; height:14px; width:24px; right:1em; top:1.25em; float:right; - background-image:url("../img/actions/toggle.png"); background-repeat:no-repeat; opacity:.3; -} -#login form input[name="show"]:checked + label { opacity:.8; } - - /* BUTTONS */ input[type="submit"], input[type="button"], button, .button, #quota, div.jp-progress, select, .pager li a { width:auto; padding:.4em; @@ -166,17 +147,14 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b #login #datadirContent label { display:block; margin:0; color:#999; } #login form #datadirField legend { margin-bottom:15px; } - /* Icons for username and password fields to better recognize them */ #adminlogin, #adminpass, #user, #password { width:11.7em!important; padding-left:1.8em; } -#adminlogin+label+img, #adminpass+label+img, #user+label+img, #password+label+img { +#adminlogin+label+img, #adminpass-icon, #user+label+img, #password-icon { position:absolute; left:1.25em; top:1.65em; opacity:.3; } -#adminpass+label+img, #password+label+img { top:1.1em; } +#adminpass-icon, #password-icon { top:1.1em; } input[name="password-clone"] { padding-left:1.8em; width:11.7em !important; } -#pass_image { position: absolute; top: 1.2em; left: 1.4em; opacity: 0.3; } - /* Nicely grouping input field sets */ .grouptop input { @@ -194,15 +172,28 @@ input[name="password-clone"] { padding-left:1.8em; width:11.7em !important; } box-shadow:0 1px 1px #fff,0 1px 0 #ddd inset; } +/* In field labels. No, HTML placeholder does not work as well. */ #login form label { color:#666; } #login .groupmiddle label, #login .groupbottom label { top:.65em; } -/* NEEDED FOR INFIELD LABELS */ p.infield { position:relative; } label.infield { cursor:text !important; top:1.05em; left:.85em; } #login form label.infield { position:absolute; font-size:19px; color:#aaa; white-space:nowrap; padding-left:1.4em; } +#login #databaseField .infield { padding-left:0; } #login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; } #login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } +/* Show password toggle */ +#show { + position:absolute; right:1em; top:.8em; float:right; + display:none; +} +#show + label { + position:absolute!important; height:14px; width:24px; right:1em; top:1.25em!important; + background-image:url("../img/actions/toggle.png"); background-repeat:no-repeat; opacity:.3; +} +#show:checked + label { opacity:.8; } + +/* Database selector */ #login form #selectDbType { text-align:center; } #login form #selectDbType label { position:static; margin:0 -3px 5px; padding:.4em; @@ -212,12 +203,14 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } } #login form #selectDbType label.ui-state-hover, #login form #selectDbType label.ui-state-active { color:#000; background-color:#e8e8e8; } +/* Warnings */ fieldset.warning { padding:8px; color:#b94a48; background-color:#f2dede; border:1px solid #eed3d7; border-radius:5px; } fieldset.warning legend { color:#b94a48 !important; } +fieldset.warning a { color:#b94a48 !important; font-weight:bold; } /* Alternative Logins */ #alternative-logins legend { margin-bottom:10px; } @@ -227,14 +220,14 @@ fieldset.warning legend { color:#b94a48 !important; } /* NAVIGATION ------------------------------------------------------------- */ #navigation { position:fixed; top:3.5em; float:left; width:64px; padding:0; z-index:75; height:100%; - background:#30343a url('../img/noise.png') repeat; border-right:1px #333 solid; + background:#383c43 url('../img/noise.png') repeat; border-right:1px #333 solid; -moz-box-shadow:0 0 7px #000; -webkit-box-shadow:0 0 7px #000; box-shadow:0 0 7px #000; overflow-x:scroll; } #navigation a { display:block; padding:8px 0 4px; text-decoration:none; font-size:10px; text-align:center; - color:#fff; text-shadow:#000 0 -1px 0; opacity:.4; + color:#fff; text-shadow:#000 0 -1px 0; opacity:.5; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; // ellipsize long app names } #navigation a:hover, #navigation a:focus { opacity:.8; } @@ -326,6 +319,8 @@ a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;paddin .arrow.left { left:-13px; bottom:1.2em; -webkit-transform:rotate(270deg); -moz-transform:rotate(270deg); -o-transform:rotate(270deg); -ms-transform:rotate(270deg); transform:rotate(270deg); } .arrow.up { top:-8px; right:2em; } .arrow.down { -webkit-transform:rotate(180deg); -moz-transform:rotate(180deg); -o-transform:rotate(180deg); -ms-transform:rotate(180deg); transform:rotate(180deg); } +.help-includes {overflow: hidden; width: 100%; height: 100%; -moz-box-sizing: border-box; box-sizing: border-box; padding-top: 2.8em; } +.help-iframe {width: 100%; height: 100%; margin: 0;padding: 0; border: 0; overflow: auto;} /* ---- BREADCRUMB ---- */ div.crumb { float:left; display:block; background:url('../img/breadcrumb.svg') no-repeat right 0; padding:.75em 1.5em 0 1em; height:2.9em; } diff --git a/core/img/filetypes/application.png b/core/img/filetypes/application.png new file mode 100644 index 0000000000000000000000000000000000000000..1dee9e366094e87db68c606d0522d72d4b939818 Binary files /dev/null and b/core/img/filetypes/application.png differ diff --git a/core/js/js.js b/core/js/js.js index 6b0c289850cade70591e9ef89819c36f3d7f734e..5f1870eb6ceb28488e3f7285477131dedc2f8487 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -5,6 +5,12 @@ * To the end of config/config.php to enable debug mode. * The undefined checks fix the broken ie8 console */ +var oc_debug; +var oc_webroot; +var oc_requesttoken; +if (typeof oc_webroot === "undefined") { + oc_webroot = location.pathname.substr(0, location.pathname.lastIndexOf('/')); +} if (oc_debug !== true || typeof console === "undefined" || typeof console.log === "undefined") { if (!window.console) { window.console = {}; diff --git a/core/js/setup.js b/core/js/setup.js index 9aded6591ca0b23aa434b4b6b9fb556f18bd0b35..2656cac2f45be916b0be82d31c5e28208dea08b1 100644 --- a/core/js/setup.js +++ b/core/js/setup.js @@ -52,12 +52,10 @@ $(document).ready(function() { // Save form parameters var post = $(this).serializeArray(); - // FIXME: This lines are breaking the installation // Disable inputs - // $(':submit', this).attr('disabled','disabled').val('Finishing …'); - // $('input', this).addClass('ui-state-disabled').attr('disabled','disabled'); - // $('#selectDbType').button('disable'); - // $('label.ui-button', this).addClass('ui-state-disabled').attr('aria-disabled', 'true').button('disable'); + $(':submit', this).attr('disabled','disabled').val('Finishing …'); + $('input', this).addClass('ui-state-disabled').attr('disabled','disabled'); + $('#selectDbType').buttonset('disable'); // Create the form var form = $('<form>'); diff --git a/core/js/share.js b/core/js/share.js index 6ad4130690d4e382f9be35082ee5bb0adacdc817..58cb787b6d1038585748c2b5fccfd9d19ed18d29 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -185,10 +185,10 @@ OC.Share={ html += '<input id="linkPassText" type="password" placeholder="'+t('core', 'Password')+'" />'; html += '</div>'; html += '</div>'; - html += '<form id="emailPrivateLink" >'; - html += '<input id="email" style="display:none; width:65%;" value="" placeholder="'+t('core', 'Email link to person')+'" type="text" />'; - html += '<input id="emailButton" style="display:none; float:right;" type="submit" value="'+t('core', 'Send')+'" />'; - html += '</form>'; + html += '<form id="emailPrivateLink" >'; + html += '<input id="email" style="display:none; width:65%;" value="" placeholder="'+t('core', 'Email link to person')+'" type="text" />'; + html += '<input id="emailButton" style="display:none; float:right;" type="submit" value="'+t('core', 'Send')+'" />'; + html += '</form>'; } html += '<div id="expiration">'; html += '<input type="checkbox" name="expirationCheckbox" id="expirationCheckbox" value="1" /><label for="expirationCheckbox">'+t('core', 'Set expiration date')+'</label>'; @@ -373,18 +373,18 @@ OC.Share={ $('#linkPassText').attr('placeholder', t('core', 'Password protected')); } $('#expiration').show(); - $('#emailPrivateLink #email').show(); - $('#emailPrivateLink #emailButton').show(); + $('#emailPrivateLink #email').show(); + $('#emailPrivateLink #emailButton').show(); }, hideLink:function() { $('#linkText').hide('blind'); $('#showPassword').hide(); $('#showPassword+label').hide(); $('#linkPass').hide(); - $('#emailPrivateLink #email').hide(); - $('#emailPrivateLink #emailButton').hide(); - }, - dirname:function(path) { + $('#emailPrivateLink #email').hide(); + $('#emailPrivateLink #emailButton').hide(); + }, + dirname:function(path) { return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, ''); }, showExpirationDate:function(date) { @@ -401,16 +401,16 @@ OC.Share={ $(document).ready(function() { if(typeof monthNames != 'undefined'){ - $.datepicker.setDefaults({ - monthNames: monthNames, - monthNamesShort: $.map(monthNames, function(v) { return v.slice(0,3)+'.'; }), - dayNames: dayNames, - dayNamesMin: $.map(dayNames, function(v) { return v.slice(0,2); }), - dayNamesShort: $.map(dayNames, function(v) { return v.slice(0,3)+'.'; }), - firstDay: firstDay - }); - } - $('#fileList').on('click', 'a.share', function(event) { + $.datepicker.setDefaults({ + monthNames: monthNames, + monthNamesShort: $.map(monthNames, function(v) { return v.slice(0,3)+'.'; }), + dayNames: dayNames, + dayNamesMin: $.map(dayNames, function(v) { return v.slice(0,2); }), + dayNamesShort: $.map(dayNames, function(v) { return v.slice(0,3)+'.'; }), + firstDay: firstDay + }); + } + $(document).on('click', 'a.share', function(event) { event.stopPropagation(); if ($(this).data('item-type') !== undefined && $(this).data('item') !== undefined) { var itemType = $(this).data('item-type'); @@ -444,12 +444,12 @@ $(document).ready(function() { } }); - $('#fileList').on('mouseenter', '#dropdown #shareWithList li', function(event) { + $(document).on('mouseenter', '#dropdown #shareWithList li', function(event) { // Show permissions and unshare button $(':hidden', this).filter(':not(.cruds)').show(); }); - $('#fileList').on('mouseleave', '#dropdown #shareWithList li', function(event) { + $(document).on('mouseleave', '#dropdown #shareWithList li', function(event) { // Hide permissions and unshare button if (!$('.cruds', this).is(':visible')) { $('a', this).hide(); @@ -462,11 +462,11 @@ $(document).ready(function() { } }); - $('#fileList').on('click', '#dropdown .showCruds', function() { + $(document).on('click', '#dropdown .showCruds', function() { $(this).parent().find('.cruds').toggle(); }); - $('#fileList').on('click', '#dropdown .unshare', function() { + $(document).on('click', '#dropdown .unshare', function() { var li = $(this).parent(); var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); @@ -483,7 +483,7 @@ $(document).ready(function() { }); }); - $('#fileList').on('change', '#dropdown .permissions', function() { + $(document).on('change', '#dropdown .permissions', function() { if ($(this).attr('name') == 'edit') { var li = $(this).parent().parent() var checkboxes = $('.permissions', li); @@ -496,10 +496,17 @@ $(document).ready(function() { var li = $(this).parent().parent().parent(); var checkboxes = $('.permissions', li); // Uncheck Edit if Create, Update, and Delete are not checked - if (!$(this).is(':checked') && !$(checkboxes).filter('input[name="create"]').is(':checked') && !$(checkboxes).filter('input[name="update"]').is(':checked') && !$(checkboxes).filter('input[name="delete"]').is(':checked')) { + if (!$(this).is(':checked') + && !$(checkboxes).filter('input[name="create"]').is(':checked') + && !$(checkboxes).filter('input[name="update"]').is(':checked') + && !$(checkboxes).filter('input[name="delete"]').is(':checked')) + { $(checkboxes).filter('input[name="edit"]').attr('checked', false); // Check Edit if Create, Update, or Delete is checked - } else if (($(this).attr('name') == 'create' || $(this).attr('name') == 'update' || $(this).attr('name') == 'delete')) { + } else if (($(this).attr('name') == 'create' + || $(this).attr('name') == 'update' + || $(this).attr('name') == 'delete')) + { $(checkboxes).filter('input[name="edit"]').attr('checked', true); } } @@ -507,10 +514,14 @@ $(document).ready(function() { $(checkboxes).filter(':not(input[name="edit"])').filter(':checked').each(function(index, checkbox) { permissions |= $(checkbox).data('permissions'); }); - OC.Share.setPermissions($('#dropdown').data('item-type'), $('#dropdown').data('item-source'), $(li).data('share-type'), $(li).data('share-with'), permissions); + OC.Share.setPermissions($('#dropdown').data('item-type'), + $('#dropdown').data('item-source'), + $(li).data('share-type'), + $(li).data('share-with'), + permissions); }); - $('#fileList').on('change', '#dropdown #linkCheckbox', function() { + $(document).on('change', '#dropdown #linkCheckbox', function() { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); if (this.checked) { @@ -532,12 +543,12 @@ $(document).ready(function() { } }); - $('#fileList').on('click', '#dropdown #linkText', function() { + $(document).on('click', '#dropdown #linkText', function() { $(this).focus(); $(this).select(); }); - $('#fileList').on('click', '#dropdown #showPassword', function() { + $(document).on('click', '#dropdown #showPassword', function() { $('#linkPass').toggle('blind'); if (!$('#showPassword').is(':checked') ) { var itemType = $('#dropdown').data('item-type'); @@ -548,7 +559,7 @@ $(document).ready(function() { } }); - $('#fileList').on('focusout keyup', '#dropdown #linkPassText', function(event) { + $(document).on('focusout keyup', '#dropdown #linkPassText', function(event) { if ( $('#linkPassText').val() != '' && (event.type == 'focusout' || event.keyCode == 13) ) { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); @@ -560,7 +571,7 @@ $(document).ready(function() { } }); - $('#fileList').on('click', '#dropdown #expirationCheckbox', function() { + $(document).on('click', '#dropdown #expirationCheckbox', function() { if (this.checked) { OC.Share.showExpirationDate(''); } else { @@ -575,7 +586,7 @@ $(document).ready(function() { } }); - $('#fileList').on('change', '#dropdown #expirationDate', function() { + $(document).on('change', '#dropdown #expirationDate', function() { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setExpirationDate', itemType: itemType, itemSource: itemSource, date: $(this).val() }, function(result) { @@ -586,33 +597,33 @@ $(document).ready(function() { }); - $('#fileList').on('submit', '#dropdown #emailPrivateLink', function(event) { - event.preventDefault(); - var link = $('#linkText').val(); - var itemType = $('#dropdown').data('item-type'); - var itemSource = $('#dropdown').data('item-source'); - var file = $('tr').filterAttr('data-id', String(itemSource)).data('file'); - var email = $('#email').val(); - if (email != '') { - $('#email').attr('disabled', "disabled"); - $('#email').val(t('core', 'Sending ...')); - $('#emailButton').attr('disabled', "disabled"); + $(document).on('submit', '#dropdown #emailPrivateLink', function(event) { + event.preventDefault(); + var link = $('#linkText').val(); + var itemType = $('#dropdown').data('item-type'); + var itemSource = $('#dropdown').data('item-source'); + var file = $('tr').filterAttr('data-id', String(itemSource)).data('file'); + var email = $('#email').val(); + if (email != '') { + $('#email').attr('disabled', "disabled"); + $('#email').val(t('core', 'Sending ...')); + $('#emailButton').attr('disabled', "disabled"); - $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'email', toaddress: email, link: link, itemType: itemType, itemSource: itemSource, file: file}, - function(result) { - $('#email').attr('disabled', "false"); - $('#emailButton').attr('disabled', "false"); - if (result && result.status == 'success') { - $('#email').css('font-weight', 'bold'); - $('#email').animate({ fontWeight: 'normal' }, 2000, function() { - $(this).val(''); - }).val(t('core','Email sent')); - } else { - OC.dialogs.alert(result.data.message, t('core', 'Error while sharing')); - } - }); - } - }); + $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'email', toaddress: email, link: link, itemType: itemType, itemSource: itemSource, file: file}, + function(result) { + $('#email').attr('disabled', "false"); + $('#emailButton').attr('disabled', "false"); + if (result && result.status == 'success') { + $('#email').css('font-weight', 'bold'); + $('#email').animate({ fontWeight: 'normal' }, 2000, function() { + $(this).val(''); + }).val(t('core','Email sent')); + } else { + OC.dialogs.alert(result.data.message, t('core', 'Error while sharing')); + } + }); + } + }); }); diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 218eeed07227db618fd5369f1094cf1bf1728c2e..67514723e751300960b42add4329728088c9860b 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "No category to add?" => "ألا توجد Ùئة للإضاÙة؟", -"This category already exists: " => "هذه الÙئة موجودة مسبقاً", "No categories selected for deletion." => "لم يتم اختيار Ùئة للØØ°Ù", "Sunday" => "الاØد", "Monday" => "الأثنين", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index deac6afa3598520d733fbad79c4445508624d80f..426b4856707ad07bd86841cf5fa0c53b97cff96a 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s নামের বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦•à¦¾à¦°à§€ \"%s\" ফোলà§à¦¡à¦¾à¦°à¦Ÿà¦¿ আপনার সাথে à¦à¦¾à¦—াà¦à¦¾à¦—ি করেছেন। à¦à¦Ÿà¦¿ à¦à¦–ন à¦à¦–ানে ডাউনলোড করার জনà§à¦¯ সà§à¦²à¦à¦ƒ %s", "Category type not provided." => "কà§à¦¯à¦¾à¦Ÿà§‡à¦—রির ধরণটি পà§à¦°à¦¦à¦¾à¦¨ করা হয় নি।", "No category to add?" => "যোগ করার মত কোন কà§à¦¯à¦¾à¦Ÿà§‡à¦—রি নেই ?", -"This category already exists: " => "à¦à¦‡ কà§à¦¯à¦¾à¦Ÿà§‡à¦—রিটি পূরà§à¦¬ থেকেই বিদà§à¦¯à¦®à¦¾à¦¨à¦ƒ", "Object type not provided." => "অবজেকà§à¦Ÿà§‡à¦° ধরণটি পà§à¦°à¦¦à¦¾à¦¨ করা হয় নি।", "%s ID not provided." => "%s ID পà§à¦°à¦¦à¦¾à¦¨ করা হয় নি।", "Error adding %s to favorites." => "পà§à¦°à¦¿à§Ÿà¦¤à§‡ %s যোগ করতে সমসà§à¦¯à¦¾ দেখা দিয়েছে।", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 780366aaf0eff219b823d8ca8583248ac00c9ead..c60a818a4eed8b4f5be523bdebeedc4e5eb9c724 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -5,7 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'usuari %s ha compartit la carpeta \"%s\" amb vós. Està disponible per a la descà rrega a: %s", "Category type not provided." => "No s'ha especificat el tipus de categoria.", "No category to add?" => "No voleu afegir cap categoria?", -"This category already exists: " => "Aquesta categoria ja existeix:", +"This category already exists: %s" => "Aquesta categoria ja existeix: %s", "Object type not provided." => "No s'ha proporcionat el tipus d'objecte.", "%s ID not provided." => "No s'ha proporcionat la ID %s.", "Error adding %s to favorites." => "Error en afegir %s als preferits.", @@ -109,7 +109,6 @@ "Security Warning" => "AvÃs de seguretat", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "No està disponible el generador de nombres aleatoris segurs, habiliteu l'extensió de PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sense un generador de nombres aleatoris segurs un atacant podria predir els senyals per restablir la contrasenya i prendre-us el compte.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La carpeta de dades i els fitxers provablement són accessibles des d'internet. El fitxer .htaccess que proporciona ownCloud no funciona. Us recomanem que configureu el vostre servidor web de manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de la carpeta arrel del servidor web.", "Create an <strong>admin account</strong>" => "Crea un <strong>compte d'administrador</strong>", "Advanced" => "Avançat", "Data folder" => "Carpeta de dades", @@ -129,6 +128,7 @@ "Lost your password?" => "Heu perdut la contrasenya?", "remember" => "recorda'm", "Log in" => "Inici de sessió", +"Alternative Logins" => "Acreditacions alternatives", "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." diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index a8fa035711c4797846dc3e68488089c5ca7923e5..c95854bc623aee8d36cfe65ccf4cf05033b546ce 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -5,7 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uživatel %s s vámi sdÃlà složku \"%s\". Můžete ji stáhnout zde: %s", "Category type not provided." => "Nezadán typ kategorie.", "No category to add?" => "Žádná kategorie k pÅ™idánÃ?", -"This category already exists: " => "Tato kategorie již existuje: ", +"This category already exists: %s" => "Kategorie již existuje: %s", "Object type not provided." => "Nezadán typ objektu.", "%s ID not provided." => "Nezadáno ID %s.", "Error adding %s to favorites." => "Chyba pÅ™i pÅ™idávánà %s k oblÃbeným.", @@ -109,7 +109,6 @@ "Security Warning" => "BezpeÄnostnà upozornÄ›nÃ", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nenà dostupný žádný bezpeÄný generátor náhodných ÄÃsel. Povolte, prosÃm, rozÅ¡ÃÅ™enà OpenSSL v PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpeÄného generátoru náhodných ÄÃsel může útoÄnÃk pÅ™edpovÄ›dÄ›t token pro obnovu hesla a pÅ™evzÃt kontrolu nad VaÅ¡Ãm úÄtem.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš adresář dat a vÅ¡echny VaÅ¡e soubory jsou pravdÄ›podobnÄ› pÅ™Ãstupné z internetu. Soubor .htaccess, který je poskytován ownCloud, nefunguje. DůraznÄ› Vám doporuÄujeme nastavit váš webový server tak, aby nebyl adresář dat pÅ™Ãstupný, nebo pÅ™esunout adresář dat mimo koÅ™enovou složku dokumentů webového serveru.", "Create an <strong>admin account</strong>" => "VytvoÅ™it <strong>úÄet správce</strong>", "Advanced" => "PokroÄilé", "Data folder" => "Složka s daty", @@ -129,6 +128,7 @@ "Lost your password?" => "Ztratili jste své heslo?", "remember" => "zapamatovat si", "Log in" => "PÅ™ihlásit", +"Alternative Logins" => "Alternativnà pÅ™ihlášenÃ", "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." diff --git a/core/l10n/da.php b/core/l10n/da.php index ca23b62228941e6fb5a934d3d3264902682d8af0..ebe4808544b22767a3d3254382e788e9ba9c55d0 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Bruger %s delte mappe \"%s\" med dig. Det kan hentes her: %s", "Category type not provided." => "Kategori typen ikke er fastsat.", "No category to add?" => "Ingen kategori at tilføje?", -"This category already exists: " => "Denne kategori eksisterer allerede: ", "Object type not provided." => "Object type ikke er fastsat.", "%s ID not provided." => "%s ID ikke oplyst.", "Error adding %s to favorites." => "Fejl ved tilføjelse af %s til favoritter.", @@ -108,7 +107,6 @@ "Security Warning" => "Sikkerhedsadvarsel", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen sikker tilfældighedsgenerator til tal er tilgængelig. Aktiver venligst OpenSSL udvidelsen.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Uden en sikker tilfældighedsgenerator til tal kan en angriber mÃ¥ske gætte dit gendan kodeord og overtage din konto", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen som ownCloud leverer virker ikke. Vi anbefaler pÃ¥ det kraftigste at du konfigurerer din webserver pÃ¥ en mÃ¥ske sÃ¥ data mappen ikke længere er tilgængelig eller at du flytter data mappen uden for webserverens dokument rod. ", "Create an <strong>admin account</strong>" => "Opret en <strong>administratorkonto</strong>", "Advanced" => "Avanceret", "Data folder" => "Datamappe", diff --git a/core/l10n/de.php b/core/l10n/de.php index bc7a7dada1d11e33b9dba64aa0a7dae9d7e00ac1..d14af6639c921b3bf3da20cfce93466c698e5b1d 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat eine Verzeichnis \"%s\" für Dich freigegeben. Es ist zum Download hier ferfügbar: %s", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", -"This category already exists: " => "Kategorie existiert bereits:", "Object type not provided." => "Objekttyp nicht angegeben.", "%s ID not provided." => "%s ID nicht angegeben.", "Error adding %s to favorites." => "Fehler beim Hinzufügen von %s zu den Favoriten.", @@ -109,7 +108,6 @@ "Security Warning" => "Sicherheitswarnung", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktiviere die PHP-Erweiterung für OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Konten zu übernehmen.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Dein Datenverzeichnis und deine Datein sind vielleicht vom Internet aus erreichbar. Die .htaccess Datei, die ownCloud verwendet, arbeitet nicht richtig. Wir schlagen Dir dringend vor, dass du deinen Webserver so konfigurierst, dass das Datenverzeichnis nicht länger erreichbar ist oder, dass du dein Datenverzeichnis aus dem Dokumenten-root des Webservers bewegst.", "Create an <strong>admin account</strong>" => "<strong>Administrator-Konto</strong> anlegen", "Advanced" => "Fortgeschritten", "Data folder" => "Datenverzeichnis", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index ca5b843a832690acc0b04ba6f527d896207aefb5..fdebfeb6587145f2dc581d09dd333d6a142cbe37 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -5,7 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat eine Verzeichnis \"%s\" für Sie freigegeben. Es ist zum Download hier ferfügbar: %s", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", -"This category already exists: " => "Kategorie existiert bereits:", +"This category already exists: %s" => "Die Kategorie '%s' existiert bereits.", "Object type not provided." => "Objekttyp nicht angegeben.", "%s ID not provided." => "%s ID nicht angegeben.", "Error adding %s to favorites." => "Fehler beim Hinzufügen von %s zu den Favoriten.", @@ -109,7 +109,6 @@ "Security Warning" => "Sicherheitshinweis", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage, die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Ihr Konto zu übernehmen.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Internet erreichbar. Die von ownCloud bereitgestellte .htaccess Datei funktioniert nicht. Wir empfehlen Ihnen dringend, Ihren Webserver so zu konfigurieren, dass das Datenverzeichnis nicht mehr über das Internet erreichbar ist. Alternativ können Sie auch das Datenverzeichnis aus dem Dokumentenverzeichnis des Webservers verschieben.", "Create an <strong>admin account</strong>" => "<strong>Administrator-Konto</strong> anlegen", "Advanced" => "Fortgeschritten", "Data folder" => "Datenverzeichnis", @@ -129,6 +128,7 @@ "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", +"Alternative Logins" => "Alternative Logins", "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." diff --git a/core/l10n/el.php b/core/l10n/el.php index 74ec378b9df14929c37b51c46308557df3ae677c..01c6eb818a2d837a6f774dc4e7feb551a29609ad 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Ο χÏήστης %s διαμοιÏάστηκε τον φάκελο \"%s\" μαζί σας. Είναι διαθÎσιμος για λήψη εδώ: %s", "Category type not provided." => "Δεν δώθηκε Ï„Ïπος κατηγοÏίας.", "No category to add?" => "Δεν Îχετε κατηγοÏία να Ï€ÏοσθÎσετε;", -"This category already exists: " => "Αυτή η κατηγοÏία υπάÏχει ήδη:", "Object type not provided." => "Δεν δώθηκε Ï„Ïπος αντικειμÎνου.", "%s ID not provided." => "Δεν δώθηκε η ID για %s.", "Error adding %s to favorites." => "Σφάλμα Ï€Ïοσθήκης %s στα αγαπημÎνα.", @@ -106,7 +105,6 @@ "Security Warning" => "Î Ïοειδοποίηση Ασφαλείας", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Δεν είναι διαθÎσιμο το Ï€Ïόσθετο δημιουÏγίας τυχαίων αÏιθμών ασφαλείας, παÏακαλώ ενεÏγοποιήστε το Ï€Ïόσθετο της PHP, OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ΧωÏίς το Ï€Ïόσθετο δημιουÏγίας τυχαίων αÏιθμών ασφαλείας, μποÏεί να διαÏÏεÏσει ο λογαÏιασμός σας από επιθÎσεις στο διαδίκτυο.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ο κατάλογος data και τα αÏχεία σας πιθανόν να είναι διαθÎσιμα στο διαδίκτυο. Το αÏχείο .htaccess που παÏÎχει το ownCloud δεν δουλεÏει. Σας Ï€Ïοτείνουμε ανεπιφÏλακτα να Ïυθμίσετε το διακομιστή σας με Ï„Îτοιο Ï„Ïόπο ώστε ο κατάλογος data να μην είναι πλÎον Ï€Ïοσβάσιμος ή να μετακινήσετε τον κατάλογο data Îξω από τον κατάλογο του διακομιστή.", "Create an <strong>admin account</strong>" => "ΔημιουÏγήστε Îναν <strong>λογαÏιασμό διαχειÏιστή</strong>", "Advanced" => "Για Ï€ÏοχωÏημÎνους", "Data folder" => "Φάκελος δεδομÎνων", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 7c0e65f4e03a3db82d985bd09d6f7f6ea0698b94..f2297bd3d97394d759367736bb2508ed4206c8a4 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "La uzanto %s kunhavigis la dosierujon “%s†kun vi. Äœi elÅuteblas el tie ĉi: %s", "Category type not provided." => "Ne proviziÄis tipon de kategorio.", "No category to add?" => "Ĉu neniu kategorio estas aldonota?", -"This category already exists: " => "Ĉi tiu kategorio jam ekzistas: ", "Object type not provided." => "Ne proviziÄis tipon de objekto.", "%s ID not provided." => "Ne proviziÄis ID-on de %s.", "Error adding %s to favorites." => "Eraro dum aldono de %s al favoratoj.", diff --git a/core/l10n/es.php b/core/l10n/es.php index e046e3bf7a0ac90a7c215863814ca056f63e98c8..a95d408a0bede3795479fbabcfeda1833abf4791 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -5,7 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquÃ: %s", "Category type not provided." => "Tipo de categoria no proporcionado.", "No category to add?" => "¿Ninguna categorÃa para añadir?", -"This category already exists: " => "Esta categorÃa ya existe: ", +"This category already exists: %s" => "Esta categoria ya existe: %s", "Object type not provided." => "ipo de objeto no proporcionado.", "%s ID not provided." => "%s ID no proporcionado.", "Error adding %s to favorites." => "Error añadiendo %s a los favoritos.", @@ -109,7 +109,6 @@ "Security Warning" => "Advertencia de seguridad", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "No está disponible un generador de números aleatorios seguro, por favor habilite la extensión OpenSSL de PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro un atacante podrÃa predecir los tokens de reinicio de su contraseña y tomar control de su cuenta.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Su directorio de datos y sus archivos están probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no está funcionando. Sugerimos fuertemente que configure su servidor web de manera que el directorio de datos ya no esté accesible o mueva el directorio de datos fuera del documento raÃz de su servidor web.", "Create an <strong>admin account</strong>" => "Crea una <strong>cuenta de administrador</strong>", "Advanced" => "Avanzado", "Data folder" => "Directorio de almacenamiento", @@ -129,6 +128,7 @@ "Lost your password?" => "¿Has perdido tu contraseña?", "remember" => "recuérdame", "Log in" => "Entrar", +"Alternative Logins" => "Nombre de usuarios alternativos", "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." diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 1ce26416f6e2c13e8d3190e9b918a182086c95f1..819e52a7856a6819417c89ac61e1787d27fd6f09 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquÃ: %s", "Category type not provided." => "Tipo de categorÃa no provisto. ", "No category to add?" => "¿Ninguna categorÃa para añadir?", -"This category already exists: " => "Esta categorÃa ya existe: ", "Object type not provided." => "Tipo de objeto no provisto. ", "%s ID not provided." => "%s ID no provista. ", "Error adding %s to favorites." => "Error al agregar %s a favoritos. ", @@ -109,7 +108,6 @@ "Security Warning" => "Advertencia de seguridad", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "No hay disponible ningún generador de números aleatorios seguro. Por favor habilitá la extensión OpenSSL de PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro un atacante podrÃa predecir los tokens de reinicio de tu contraseña y tomar control de tu cuenta.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Tu directorio de datos y tus archivos son probablemente accesibles desde internet. El archivo .htaccess provisto por ownCloud no está funcionando. Te sugerimos que configures tu servidor web de manera que el directorio de datos ya no esté accesible, o que muevas el directorio de datos afuera del directorio raÃz de tu servidor web.", "Create an <strong>admin account</strong>" => "Crear una <strong>cuenta de administrador</strong>", "Advanced" => "Avanzado", "Data folder" => "Directorio de almacenamiento", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index f4328de9901981d305bc94db46b8507a7458c3bf..b0fc75736a0c3cd852e82c24d27d43de06f7386d 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "No category to add?" => "Pole kategooriat, mida lisada?", -"This category already exists: " => "See kategooria on juba olemas: ", "No categories selected for deletion." => "Kustutamiseks pole kategooriat valitud.", "Sunday" => "Pühapäev", "Monday" => "Esmaspäev", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index ed919d64d9dd0790d0d37fb35155cbc750abdb61..7dce8c53fb9d32808361a12e7089c6a203837862 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s erabiltzaileak \"%s\" karpeta zurekin partekatu du. Hemen duzu eskuragarri: %s", "Category type not provided." => "Kategoria mota ez da zehaztu.", "No category to add?" => "Ez dago gehitzeko kategoriarik?", -"This category already exists: " => "Kategoria hau dagoeneko existitzen da:", "Object type not provided." => "Objetu mota ez da zehaztu.", "%s ID not provided." => "%s ID mota ez da zehaztu.", "Error adding %s to favorites." => "Errorea gertatu da %s gogokoetara gehitzean.", @@ -109,7 +108,6 @@ "Security Warning" => "Segurtasun abisua", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ez dago hausazko zenbaki sortzaile segururik eskuragarri, mesedez gatiu PHP OpenSSL extensioa.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Hausazko zenbaki sortzaile segururik gabe erasotzaile batek pasahitza berrezartzeko kodeak iragarri ditzake eta zure kontuaz jabetu.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.", "Create an <strong>admin account</strong>" => "Sortu <strong>kudeatzaile kontu<strong> bat", "Advanced" => "Aurreratua", "Data folder" => "Datuen karpeta", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 359eddb73efccea9a4b268e9baa1c9fcb21b385a..10a57962f649ab01958fa69b2b1fd9bb34c0ce46 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "کاربر %s پوشه \"%s\" را با شما به اشتراک گذاشته است. پرونده برای دانلود اینجاست : %s", "Category type not provided." => "نوع دسته بندی ارائه نشده است.", "No category to add?" => "آیا گروه دیگری برای اÙزودن ندارید", -"This category already exists: " => "این گروه از قبل اضاÙÙ‡ شده", "Object type not provided." => "نوع Ø´ÛŒ ارائه نشده است.", "%s ID not provided." => "شناسه %s ارائه نشده است.", "Error adding %s to favorites." => "خطای اضاÙÙ‡ کردن %s به علاقه مندی ها.", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 1f2568f95132983a548909543aee190db085258b..dedbf6723f79b416bd6eb7acc41b2c86aa0f1076 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -4,7 +4,6 @@ "User %s shared the file \"%s\" with you. It is available for download here: %s" => "Käyttäjä %s jakoi tiedoston \"%s\" kanssasi. Se on ladattavissa täältä: %s", "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Käyttäjä %s jakoi kansion \"%s\" kanssasi. Se on ladattavissa täältä: %s", "No category to add?" => "Ei lisättävää luokkaa?", -"This category already exists: " => "Tämä luokka on jo olemassa: ", "Error adding %s to favorites." => "Virhe lisätessä kohdetta %s suosikkeihin.", "No categories selected for deletion." => "Luokkia ei valittu poistettavaksi.", "Error removing %s from favorites." => "Virhe poistaessa kohdetta %s suosikeista.", @@ -101,7 +100,6 @@ "Edit categories" => "Muokkaa luokkia", "Add" => "Lisää", "Security Warning" => "Turvallisuusvaroitus", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta.", "Create an <strong>admin account</strong>" => "Luo <strong>ylläpitäjän tunnus</strong>", "Advanced" => "Lisäasetukset", "Data folder" => "Datakansio", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index e3b7083652119e381073b05afe556e15731bbf0e..ad8ff0a6fcadf98ed31586713b0aa4d4d413e701 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -5,7 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utilisateur %s a partagé le dossier \"%s\" avec vous. Il est disponible au téléchargement ici : %s", "Category type not provided." => "Type de catégorie non spécifié.", "No category to add?" => "Pas de catégorie à ajouter ?", -"This category already exists: " => "Cette catégorie existe déjà : ", +"This category already exists: %s" => "Cette catégorie existe déjà : %s", "Object type not provided." => "Type d'objet non spécifié.", "%s ID not provided." => "L'identifiant de %s n'est pas spécifié.", "Error adding %s to favorites." => "Erreur lors de l'ajout de %s aux favoris.", @@ -109,7 +109,6 @@ "Security Warning" => "Avertissement de sécurité", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Aucun générateur de nombre aléatoire sécurisé n'est disponible, veuillez activer l'extension PHP OpenSSL", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sans générateur de nombre aléatoire sécurisé, un attaquant peut être en mesure de prédire les jetons de réinitialisation du mot de passe, et ainsi prendre le contrôle de votre compte utilisateur.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre dossier data et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni par ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de manière à ce que le dossier data ne soit plus accessible ou bien de déplacer le dossier data en dehors du dossier racine des documents du serveur web.", "Create an <strong>admin account</strong>" => "Créer un <strong>compte administrateur</strong>", "Advanced" => "Avancé", "Data folder" => "Répertoire des données", @@ -129,6 +128,7 @@ "Lost your password?" => "Mot de passe perdu ?", "remember" => "se souvenir de moi", "Log in" => "Connexion", +"Alternative Logins" => "Logins alternatifs", "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." diff --git a/core/l10n/gl.php b/core/l10n/gl.php index e96d6962c903a23c2a8d879e47773fa0235f8f8a..8fd9292ce610a7f5507921ca3c0774ca24f59dd7 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o cartafol «%s» con vostede. Teno dispoñÃbel en: %s", "Category type not provided." => "Non se indicou o tipo de categorÃa", "No category to add?" => "Sen categorÃa que engadir?", -"This category already exists: " => "Esta categorÃa xa existe: ", "Object type not provided." => "Non se forneceu o tipo de obxecto.", "%s ID not provided." => "Non se forneceu o ID %s.", "Error adding %s to favorites." => "Produciuse un erro ao engadir %s aos favoritos.", @@ -106,7 +105,6 @@ "Security Warning" => "Aviso de seguranza", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non hai un xerador de números ao chou dispoñÃbel. Active o engadido de OpenSSL para PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sen un xerador seguro de números ao chou poderÃa acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa súa conta.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesÃbeis a través da Internet. O ficheiro .htaccess que fornece ownCloud non está a empregarse. Suxerimoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesÃbel ou mova o cartafol de datos fora do directorio raÃz de datos do servidor web.", "Create an <strong>admin account</strong>" => "Crear unha <strong>contra de administrador</strong>", "Advanced" => "Avanzado", "Data folder" => "Cartafol de datos", diff --git a/core/l10n/he.php b/core/l10n/he.php index b7292c6edeeb0520eea0a70dcd893c3c98bf0959..75c378ceceb61fa6db5626a44b68dabbb033f643 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "המשתמש %s שיתף ×תך ×ת התיקייה „%s“. × ×™×ª×Ÿ להוריד ×ת התיקייה מכ×ן: %s", "Category type not provided." => "סוג הקטגוריה ×œ× ×¡×•×¤×§.", "No category to add?" => "×ין קטגוריה להוספה?", -"This category already exists: " => "קטגוריה ×–×ת כבר קיימת: ", "Object type not provided." => "סוג הפריט ×œ× ×¡×•×¤×§.", "%s ID not provided." => "מזהה %s ×œ× ×¡×•×¤×§.", "Error adding %s to favorites." => "×ירעה שגי××” בעת הוספת %s למועדפי×.", @@ -106,7 +105,6 @@ "Security Warning" => "×זהרת ×בטחה", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "×ין מחולל ×ž×¡×¤×¨×™× ×קר××™×™× ×ž×ובטח, × × ×œ×”×¤×¢×™×œ ×ת ההרחבה OpenSSL ב־PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "×œ×œ× ×ž×—×•×œ×œ ×ž×¡×¤×¨×™× ×קר××™×™× ×ž×ובטח תוקף יכול ×œ× ×‘× ×ת מחרוזות ×יפוס הססמה ולהשתלט על החשבון שלך.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "יתכן שתיקיית ×”× ×ª×•× ×™× ×•×”×§×‘×¦×™× ×©×œ×š × ×’×™×©×™× ×“×¨×š ×”××™× ×˜×¨× ×˜. קובץ ה־‎.htaccess שמסופק על ידי ownCloud ×›× ×¨××” ××™× ×• עובד. ×× ×• ×ž×ž×œ×™×¦×™× ×‘×—×•× ×œ×”×’×“×™×¨ ×ת שרת ×”××™× ×˜×¨× ×˜ שלך בדרך שבה תיקיית ×”× ×ª×•× ×™× ×œ× ×ª×”×™×” ×–×ž×™× ×” עוד ×ו להעביר ×ת תיקיית ×”× ×ª×•× ×™× ×ž×—×•×¥ לספריית העל של שרת ×”××™× ×˜×¨× ×˜.", "Create an <strong>admin account</strong>" => "יצירת <strong>חשבון ×ž× ×”×œ</strong>", "Advanced" => "מתקד×", "Data folder" => "תיקיית × ×ª×•× ×™×", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 78b767305a35320701aedf292e1f9dd7b8b21e0e..86136329d8f696c5a9d959434e79378b08fffc19 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "No category to add?" => "Nemate kategorija koje možete dodati?", -"This category already exists: " => "Ova kategorija već postoji: ", "No categories selected for deletion." => "Nema odabranih kategorija za brisanje.", "Sunday" => "nedelja", "Monday" => "ponedeljak", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 30ddc7b8677e7ed8b42160f3c6930908a26d268e..fc71a669e8953057ae660f994f7373dea59bf7d2 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s felhasználó megosztotta ezt a mappát Önnel: %s. A mappa innen tölthetÅ‘ le: %s", "Category type not provided." => "Nincs megadva a kategória tÃpusa.", "No category to add?" => "Nincs hozzáadandó kategória?", -"This category already exists: " => "Ez a kategória már létezik: ", "Object type not provided." => "Az objektum tÃpusa nincs megadva.", "%s ID not provided." => "%s ID nincs megadva.", "Error adding %s to favorites." => "Nem sikerült a kedvencekhez adni ezt: %s", @@ -106,7 +105,6 @@ "Security Warning" => "Biztonsági figyelmeztetés", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nem érhetÅ‘ el megfelelÅ‘ véletlenszám-generátor, telepÃteni kellene a PHP OpenSSL kiegészÃtését.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "MegfelelÅ‘ véletlenszám-generátor hiányában egy támadó szándékú idegen képes lehet megjósolni a jelszóvisszaállÃtó tokent, és Ön helyett belépni.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Az adatkönytára és az itt levÅ‘ fájlok valószÃnűleg elérhetÅ‘k az internetrÅ‘l. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon fontos, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár nem legyen közvetlenül kÃvülrÅ‘l elérhetÅ‘, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kÃvülre.", "Create an <strong>admin account</strong>" => "<strong>Rendszergazdai belépés</strong> létrehozása", "Advanced" => "Haladó", "Data folder" => "Adatkönyvtár", diff --git a/core/l10n/ia.php b/core/l10n/ia.php index 7f2eac17367c621473b87582d7662a8fd40a9e5e..8adc38f0bba595f065e6a630d4649b8e7ab6624c 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -1,5 +1,4 @@ <?php $TRANSLATIONS = array( -"This category already exists: " => "Iste categoria jam existe:", "Sunday" => "Dominica", "Monday" => "Lunedi", "Tuesday" => "Martedi", diff --git a/core/l10n/id.php b/core/l10n/id.php index 896d444e83346be697963e9c75d42d05a4a00e64..697195e75149fec21ceecb792eed7cbf30365b76 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "No category to add?" => "Tidak ada kategori yang akan ditambahkan?", -"This category already exists: " => "Kategori ini sudah ada:", "No categories selected for deletion." => "Tidak ada kategori terpilih untuk penghapusan.", "Sunday" => "minggu", "Monday" => "senin", diff --git a/core/l10n/is.php b/core/l10n/is.php index 98766efc2c996e941b27387a7ceb5d2fcd137371..997a582d22867cb4f4285f0114ac20574802232b 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi möppunni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s", "Category type not provided." => "Flokkur ekki gefin", "No category to add?" => "Enginn flokkur til að bæta við?", -"This category already exists: " => "Þessi flokkur er þegar til:", "Object type not provided." => "Tegund ekki à boði.", "%s ID not provided." => "%s ID ekki à boði.", "Error adding %s to favorites." => "Villa við að bæta %s við eftirlæti.", @@ -106,7 +105,6 @@ "Security Warning" => "Öryggis aðvörun", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Enginn traustur slembitölugjafi à boði, vinsamlegast virkjaðu PHP OpenSSL viðbótina.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ãn öruggs slembitölugjafa er mögulegt að sjá fyrir öryggis auðkenni til að endursetja lykilorð og komast inn á aðganginn þinn.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Gagnamappan þÃn er að öllum lÃkindum aðgengileg frá internetinu. Skráin .htaccess sem fylgir með ownCloud er ekki að virka. Við mælum eindregið með þvà að þú stillir vefþjóninn þannig að gagnamappan verði ekki aðgengileg frá internetinu eða færir hana út fyrir vefrótina.", "Create an <strong>admin account</strong>" => "Útbúa <strong>vefstjóra aðgang</strong>", "Advanced" => "Ãtarlegt", "Data folder" => "Gagnamappa", diff --git a/core/l10n/it.php b/core/l10n/it.php index ec094f643a47bb932240a1aca9af79200f419044..1068e0c31c7f90cdd221120c1bcd287a1416991e 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -5,7 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utente %s ha condiviso la cartella \"%s\" con te. È disponibile per lo scaricamento qui: %s", "Category type not provided." => "Tipo di categoria non fornito.", "No category to add?" => "Nessuna categoria da aggiungere?", -"This category already exists: " => "Questa categoria esiste già : ", +"This category already exists: %s" => "Questa categoria esiste già : %s", "Object type not provided." => "Tipo di oggetto non fornito.", "%s ID not provided." => "ID %s non fornito.", "Error adding %s to favorites." => "Errore durante l'aggiunta di %s ai preferiti.", @@ -109,7 +109,6 @@ "Security Warning" => "Avviso di sicurezza", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non è disponibile alcun generatore di numeri casuali sicuro. Abilita l'estensione OpenSSL di PHP", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Senza un generatore di numeri casuali sicuro, un malintenzionato potrebbe riuscire a individuare i token di ripristino delle password e impossessarsi del tuo account.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet. Il file .htaccess fornito da ownCloud non funziona. Ti suggeriamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o sposta tale cartella fuori dalla radice del sito.", "Create an <strong>admin account</strong>" => "Crea un <strong>account amministratore</strong>", "Advanced" => "Avanzate", "Data folder" => "Cartella dati", @@ -129,6 +128,7 @@ "Lost your password?" => "Hai perso la password?", "remember" => "ricorda", "Log in" => "Accedi", +"Alternative Logins" => "Accessi alternativi", "prev" => "precedente", "next" => "successivo", "Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, ciò potrebbe richiedere del tempo." diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 155c201d9b74273a74bddfb19eddc1f90c5afc32..803faaf75a68a01732b7bf6b17560af46875132b 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -5,7 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ユーザ %s ã¯ã‚ãªãŸã¨ãƒ•ã‚©ãƒ«ãƒ€ \"%s\" を共有ã—ã¦ã„ã¾ã™ã€‚ã“ã¡ã‚‰ã‹ã‚‰ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã§ãã¾ã™: %s", "Category type not provided." => "カテゴリタイプã¯æä¾›ã•ã‚Œã¦ã„ã¾ã›ã‚“。", "No category to add?" => "è¿½åŠ ã™ã‚‹ã‚«ãƒ†ã‚´ãƒªã¯ã‚ã‚Šã¾ã›ã‚“ã‹ï¼Ÿ", -"This category already exists: " => "ã“ã®ã‚«ãƒ†ã‚´ãƒªã¯ã™ã§ã«å˜åœ¨ã—ã¾ã™: ", +"This category already exists: %s" => "ã“ã®ã‚«ãƒ†ã‚´ãƒªã¯ã™ã§ã«å˜åœ¨ã—ã¾ã™: %s", "Object type not provided." => "オブジェクトタイプã¯æä¾›ã•ã‚Œã¦ã„ã¾ã›ã‚“。", "%s ID not provided." => "%s ID ã¯æä¾›ã•ã‚Œã¦ã„ã¾ã›ã‚“。", "Error adding %s to favorites." => "ãŠæ°—ã«å…¥ã‚Šã« %s ã‚’è¿½åŠ ã‚¨ãƒ©ãƒ¼", @@ -109,7 +109,6 @@ "Security Warning" => "ã‚»ã‚ュリティè¦å‘Š", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ã‚»ã‚ュアãªä¹±æ•°ç”Ÿæˆå™¨ãŒåˆ©ç”¨å¯èƒ½ã§ã¯ã‚ã‚Šã¾ã›ã‚“。PHPã®OpenSSL拡張を有効ã«ã—ã¦ä¸‹ã•ã„。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ã‚»ã‚ュアãªä¹±æ•°ç”Ÿæˆå™¨ãŒç„¡ã„å ´åˆã€æ”»æ’ƒè€…ã¯ãƒ‘スワードリセットã®ãƒˆãƒ¼ã‚¯ãƒ³ã‚’予測ã—ã¦ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã‚’ä¹—ã£å–られるå¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "データディレクトリã¨ãƒ•ã‚¡ã‚¤ãƒ«ãŒæらãインターãƒãƒƒãƒˆã‹ã‚‰ã‚¢ã‚¯ã‚»ã‚¹ã§ãるよã†ã«ãªã£ã¦ã„ã¾ã™ã€‚ownCloudãŒæä¾›ã™ã‚‹ .htaccessファイルãŒæ©Ÿèƒ½ã—ã¦ã„ã¾ã›ã‚“。データディレクトリを全ãアクセスã§ããªã„よã†ã«ã™ã‚‹ã‹ã€ãƒ‡ãƒ¼ã‚¿ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’ウェブサーãƒã®ãƒ‰ã‚ュメントルートã®å¤–ã«ç½®ãよã†ã«ã‚¦ã‚§ãƒ–サーãƒã‚’è¨å®šã™ã‚‹ã“ã¨ã‚’å¼·ããŠå‹§ã‚ã—ã¾ã™ã€‚ ", "Create an <strong>admin account</strong>" => "<strong>管ç†è€…アカウント</strong>を作æˆã—ã¦ãã ã•ã„", "Advanced" => "詳細è¨å®š", "Data folder" => "データフォルダ", @@ -129,6 +128,7 @@ "Lost your password?" => "パスワードを忘れã¾ã—ãŸã‹ï¼Ÿ", "remember" => "パスワードを記憶ã™ã‚‹", "Log in" => "ãƒã‚°ã‚¤ãƒ³", +"Alternative Logins" => "代替ãƒã‚°ã‚¤ãƒ³", "prev" => "å‰", "next" => "次", "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 ab4045601f91df60727f76c359fcb7fd76d77a5c..731a3534558fcc4c28c2cc2c01d14de085e9a61f 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "No category to add?" => "áƒáƒ áƒáƒ ის კáƒáƒ¢áƒ”გáƒáƒ ირდáƒáƒ¡áƒáƒ›áƒáƒ¢áƒ”ბლáƒáƒ“?", -"This category already exists: " => "კáƒáƒ¢áƒ”გáƒáƒ ირუკვე áƒáƒ სებáƒáƒ‘ს", "No categories selected for deletion." => "სáƒáƒ ედáƒáƒ¥áƒ¢áƒ˜áƒ ებელი კáƒáƒ¢áƒ”გáƒáƒ ირáƒáƒ áƒáƒ ის áƒáƒ ჩეული ", "Sunday" => "კვირáƒ", "Monday" => "áƒáƒ შáƒáƒ‘áƒáƒ—ი", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 91c00c4a570d364387ed99812cd5d5d569f04357..172ec3e03a5df231e5569748b70b73005cbfbbb1 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s ë‹˜ì´ í´ë” \"%s\"ì„(를) ê³µìœ í•˜ì˜€ìŠµë‹ˆë‹¤. 여기ì—ì„œ ë‹¤ìš´ë¡œë“œí• ìˆ˜ 있습니다: %s", "Category type not provided." => "분류 형ì‹ì´ ì œê³µë˜ì§€ 않았습니다.", "No category to add?" => "ì¶”ê°€í• ë¶„ë¥˜ê°€ 없습니까?", -"This category already exists: " => "ì´ ë¶„ë¥˜ëŠ” ì´ë¯¸ 존재합니다:", "Object type not provided." => "ê°ì²´ 형ì‹ì´ ì œê³µë˜ì§€ 않았습니다.", "%s ID not provided." => "%s IDê°€ ì œê³µë˜ì§€ 않았습니다.", "Error adding %s to favorites." => "ì±…ê°ˆí”¼ì— %sì„(를) ì¶”ê°€í• ìˆ˜ 없었습니다.", @@ -109,7 +108,6 @@ "Security Warning" => "보안 ê²½ê³ ", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ì•ˆì „í•œ 난수 ìƒì„±ê¸°ë¥¼ ì‚¬ìš©í• ìˆ˜ 없습니다. PHPì˜ OpenSSL í™•ìž¥ì„ í™œì„±í™”í•´ 주ì‹ì‹œì˜¤.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ì•ˆì „í•œ 난수 ìƒì„±ê¸°ë¥¼ 사용하지 않으면 공격ìžê°€ 암호 초기화 í† í°ì„ 추측하여 ê³„ì •ì„ íƒˆì·¨í• ìˆ˜ 있습니다.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ë°ì´í„° ë””ë ‰í„°ë¦¬ì™€ 파ì¼ì„ ì¸í„°ë„·ì—ì„œ ì ‘ê·¼í• ìˆ˜ 있는 것 같습니다. ownCloudì—ì„œ ì œê³µí•œ .htaccess 파ì¼ì´ ìž‘ë™í•˜ì§€ 않습니다. 웹 서버를 다시 ì„¤ì •í•˜ì—¬ ë°ì´í„° ë””ë ‰í„°ë¦¬ì— ì ‘ê·¼í• ìˆ˜ ì—†ë„ë¡ í•˜ê±°ë‚˜ 문서 루트 바깥쪽으로 옮기는 ê²ƒì„ ì¶”ì²œí•©ë‹ˆë‹¤.", "Create an <strong>admin account</strong>" => "<strong>ê´€ë¦¬ìž ê³„ì •</strong> 만들기", "Advanced" => "ê³ ê¸‰", "Data folder" => "ë°ì´í„° í´ë”", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 4069a7783654bf79a3a6e633e6bede60bb89eff8..11137f27aa2fbbce826c83290c9a485fbea37987 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "No category to add?" => "Keng Kategorie fir bäizesetzen?", -"This category already exists: " => "Des Kategorie existéiert schonn:", "No categories selected for deletion." => "Keng Kategorien ausgewielt fir ze läschen.", "Sunday" => "Sonndes", "Monday" => "Méindes", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index c2dc47c826c1c79946d84c844af95cfddce3e1d4..563fd8884b054a2232811d8968f029935e8c59fd 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "No category to add?" => "NepridÄ—site jokios kategorijos?", -"This category already exists: " => "Tokia kategorija jau yra:", "No categories selected for deletion." => "Trynimui nepasirinkta jokia kategorija.", "Sunday" => "Sekmadienis", "Monday" => "Pirmadienis", @@ -85,7 +84,6 @@ "Security Warning" => "Saugumo praneÅ¡imas", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Saugaus atsitiktinių skaiÄių generatoriaus nÄ—ra, praÅ¡ome įjungti PHP OpenSSL modulį.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Be saugaus atsitiktinių skaiÄių generatoriaus, piktavaliai gali atspÄ—ti JÅ«sų slaptažodį ir pasisavinti paskyrÄ….", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "JÅ«sų duomenų aplankalas ir JÅ«sų failai turbÅ«t yra pasiekiami per internetÄ…. Failas .htaccess, kuris duodamas, neveikia. Mes rekomenduojame susitvarkyti savo nustatymsu taip, kad failai nebÅ«tų pasiekiami per internetÄ…, arba persikelti juos kitur.", "Create an <strong>admin account</strong>" => "Sukurti <strong>administratoriaus paskyrÄ…</strong>", "Advanced" => "IÅ¡plÄ—stiniai", "Data folder" => "Duomenų katalogas", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index a145c50464f87827ee0395b72b977f647c007ba7..bc2306774aac7380b902bd7934940898775fd5b4 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -5,7 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "LietotÄjs %s ar jums dalÄ«jÄs ar mapi “%sâ€. To var lejupielÄdÄ“t Å¡eit — %s", "Category type not provided." => "Kategorijas tips nav norÄdÄ«ts.", "No category to add?" => "Nav kategoriju, ko pievienot?", -"This category already exists: " => "Å Äda kategorija jau eksistÄ“:", +"This category already exists: %s" => "Å Äda kategorija jau eksistÄ“ — %s", "Object type not provided." => "Objekta tips nav norÄdÄ«ts.", "%s ID not provided." => "%s ID nav norÄdÄ«ts.", "Error adding %s to favorites." => "Kļūda, pievienojot %s izlasei.", @@ -109,7 +109,6 @@ "Security Warning" => "BrÄ«dinÄjums par droÅ¡Ä«bu", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nav pieejams droÅ¡s nejauÅ¡u skaitļu Ä£enerators. LÅ«dzu, aktivÄ“jiet PHP OpenSSL paplaÅ¡inÄjumu.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez droÅ¡a nejauÅ¡u skaitļu Ä£eneratora uzbrucÄ“js var paredzÄ“t paroļu atjaunoÅ¡anas marÄ·ierus un pÄrņem jÅ«su kontu.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "JÅ«su datu direktorija un datnes visdrÄ«zÄk ir pieejamas no interneta. ownCloud nodroÅ¡inÄtÄ .htaccess datne nedarbojas. MÄ“s iesakÄm konfigurÄ“t serveri tÄ, lai datu direktorija vairs nebÅ«tu pieejama, vai arÄ« pÄrvietojiet datu direktoriju Ärpus tÄ«mekļa servera dokumentu saknes.", "Create an <strong>admin account</strong>" => "Izveidot <strong>administratora kontu</strong>", "Advanced" => "PaplaÅ¡inÄti", "Data folder" => "Datu mape", @@ -129,6 +128,7 @@ "Lost your password?" => "AizmirsÄt paroli?", "remember" => "atcerÄ“ties", "Log in" => "IerakstÄ«ties", +"Alternative Logins" => "AlternatÄ«vÄs pieteikÅ¡anÄs", "prev" => "iepriekÅ¡Ä“jÄ", "next" => "nÄkamÄ", "Updating ownCloud to version %s, this may take a while." => "Atjaunina ownCloud uz versiju %s. Tas var aizņemt kÄdu laiciņu." diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 0b202fa6667f1b54e720e27a4a7d5821ebbbd01b..d9da76690044bf29efb97a5b91d13941ede40714 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "КориÑникот %s ја Ñподели папката „%s“ Ñо ВаÑ. ДоÑтапна е за преземање тука: %s", "Category type not provided." => "Ðе беше доÑтавен тип на категорија.", "No category to add?" => "Ðема категорија да Ñе додаде?", -"This category already exists: " => "Оваа категорија веќе поÑтои:", "Object type not provided." => "Ðе беше доÑтавен тип на објект.", "%s ID not provided." => "%s ID не беше доÑтавено.", "Error adding %s to favorites." => "Грешка при додавање %s во омилени.", @@ -106,7 +105,6 @@ "Security Warning" => "БезбедноÑно предупредување", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ðе е доÑтапен безбеден генератор на Ñлучајни броеви, Ве молам озвоможете го OpenSSL PHP додатокот.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без Ñигурен генератор на Ñлучајни броеви напаѓач може да ги предвиди жетоните за реÑетирање на лозинка и да преземе контрола врз Вашата Ñметка. ", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Вашата папка Ñо податоци и датотеките е најверојатно доÑтапна од интернет. .htaccess датотеката што ја овозможува ownCloud не фунционира. Силно препорачуваме да го иÑконфигурирате вашиот Ñервер за вашата папка Ñо податоци не е доÑтапна преку интернетт или премеÑтете ја надвор од коренот на веб Ñерверот.", "Create an <strong>admin account</strong>" => "Ðаправете <strong>админиÑтраторÑка Ñметка</strong>", "Advanced" => "Ðапредно", "Data folder" => "Фолдер Ñо податоци", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 477e82ea9f1a0555cbc065d212f72b920a848a30..af51079b570b3fe39f41a33a2d019cd5d69df76b 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "No category to add?" => "Tiada kategori untuk di tambah?", -"This category already exists: " => "Kategori ini telah wujud", "No categories selected for deletion." => "tiada kategori dipilih untuk penghapusan", "Sunday" => "Ahad", "Monday" => "Isnin", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 65d6ea00cce48ef3a48afebf49012820d6764e2e..340625449eeb1704929977ffc9a0161df37245ae 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "No category to add?" => "Ingen kategorier Ã¥ legge til?", -"This category already exists: " => "Denne kategorien finnes allerede:", "No categories selected for deletion." => "Ingen kategorier merket for sletting.", "Sunday" => "Søndag", "Monday" => "Mandag", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index aca9b11cd122774822955a73508e090739c2077c..1dc8a9ca3be90da81fc6f407f7d648b7bd36543e 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Gebruiker %s deelde de map \"%s\" met u. De map is hier beschikbaar voor download: %s", "Category type not provided." => "Categorie type niet opgegeven.", "No category to add?" => "Geen categorie toevoegen?", -"This category already exists: " => "Deze categorie bestaat al.", "Object type not provided." => "Object type niet opgegeven.", "%s ID not provided." => "%s ID niet opgegeven.", "Error adding %s to favorites." => "Toevoegen van %s aan favorieten is mislukt.", @@ -109,7 +108,6 @@ "Security Warning" => "Beveiligingswaarschuwing", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Er kon geen willekeurig nummer worden gegenereerd. Zet de PHP OpenSSL extentie aan.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Zonder random nummer generator is het mogelijk voor een aanvaller om de reset tokens van wachtwoorden te voorspellen. Dit kan leiden tot het inbreken op uw account.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Uw data is waarschijnlijk toegankelijk vanaf net internet. Het .htaccess bestand dat ownCloud levert werkt niet goed. U wordt aangeraden om de configuratie van uw webserver zodanig aan te passen dat de data folders niet meer publiekelijk toegankelijk zijn. U kunt ook de data folder verplaatsen naar een folder buiten de webserver document folder.", "Create an <strong>admin account</strong>" => "Maak een <strong>beheerdersaccount</strong> aan", "Advanced" => "Geavanceerd", "Data folder" => "Gegevensmap", @@ -129,6 +127,7 @@ "Lost your password?" => "Uw wachtwoord vergeten?", "remember" => "onthoud gegevens", "Log in" => "Meld je aan", +"Alternative Logins" => "Alternatieve inlogs", "prev" => "vorige", "next" => "volgende", "Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren." diff --git a/core/l10n/oc.php b/core/l10n/oc.php index 5b399dd8264fcb58a0e973bd8fcfb236366aea0f..abd5f5736af2f3500ca7a7e6b1eaaffa4428115d 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "No category to add?" => "Pas de categoria d'ajustar ?", -"This category already exists: " => "La categoria exista ja :", "No categories selected for deletion." => "Pas de categorias seleccionadas per escafar.", "Sunday" => "Dimenge", "Monday" => "Diluns", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 1376fa1359dc29e3e1d5c5d1675f1bde68b08fa8..682289326dddda7636feb1bf813e59ad2850bb30 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uzytkownik %s wspóldzieli folder \"%s\" z toba. Jest dostepny tutaj: %s", "Category type not provided." => "Typ kategorii nie podany.", "No category to add?" => "Brak kategorii", -"This category already exists: " => "Ta kategoria już istnieje", "Object type not provided." => "Typ obiektu nie podany.", "%s ID not provided." => "%s ID nie podany.", "Error adding %s to favorites." => "BÅ‚Ä…d dodania %s do ulubionych.", @@ -107,7 +106,6 @@ "Security Warning" => "Ostrzeżenie o zabezpieczeniach", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "NiedostÄ™pny bezpieczny generator liczb losowych, należy wÅ‚Ä…czyć rozszerzenie OpenSSL w PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpiecznego generatora liczb losowych, osoba atakujÄ…ca może być w stanie przewidzieć resetujÄ…ce hasÅ‚o tokena i przejąć kontrolÄ™ nad swoim kontem.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Katalog danych (data) i pliki sÄ… prawdopodobnie dostÄ™pnego z Internetu. Sprawdź plik .htaccess oraz konfiguracjÄ™ serwera (hosta). Sugerujemy, skonfiguruj swój serwer w taki sposób, żeby dane katalogu nie byÅ‚y dostÄ™pne lub przenieść katalog danych spoza głównego dokumentu webserwera.", "Create an <strong>admin account</strong>" => "Tworzenie <strong>konta administratora</strong>", "Advanced" => "Zaawansowane", "Data folder" => "Katalog danych", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 929f298c4c344f0dac8cc31f9e0e835e76979eec..0d440f4c9d3e9e80f89dc229c913a5acb7c0d4d3 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O usuário %s compartilhou com você a pasta \"%s\", que está disponÃvel para download em: %s", "Category type not provided." => "Tipo de categoria não fornecido.", "No category to add?" => "Nenhuma categoria adicionada?", -"This category already exists: " => "Essa categoria já existe", "Object type not provided." => "tipo de objeto não fornecido.", "%s ID not provided." => "%s ID não fornecido(s).", "Error adding %s to favorites." => "Erro ao adicionar %s aos favoritos.", @@ -109,7 +108,6 @@ "Security Warning" => "Aviso de Segurança", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nenhum gerador de número aleatório de segurança disponÃvel. Habilite a extensão OpenSSL do PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sem um gerador de número aleatório de segurança, um invasor pode ser capaz de prever os sÃmbolos de redefinição de senhas e assumir sua conta.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Seu diretório de dados e seus arquivos estão, provavelmente, acessÃveis a partir da internet. O .htaccess que o ownCloud fornece não está funcionando. Nós sugerimos que você configure o seu servidor web de uma forma que o diretório de dados esteja mais acessÃvel ou que você mova o diretório de dados para fora da raiz do servidor web.", "Create an <strong>admin account</strong>" => "Criar uma <strong>conta</strong> de <strong>administrador</strong>", "Advanced" => "Avançado", "Data folder" => "Pasta de dados", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 2189a7e811c47f431c425644fb589317b3080a9a..3fb3361b2dc7266e14219e7f77a5a41d8abd6f68 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O utilizador %s partilhou a pasta \"%s\" consigo. Está disponÃvel para download aqui: %s", "Category type not provided." => "Tipo de categoria não fornecido", "No category to add?" => "Nenhuma categoria para adicionar?", -"This category already exists: " => "Esta categoria já existe:", "Object type not provided." => "Tipo de objecto não fornecido", "%s ID not provided." => "ID %s não fornecido", "Error adding %s to favorites." => "Erro a adicionar %s aos favoritos", @@ -109,7 +108,6 @@ "Security Warning" => "Aviso de Segurança", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Não existe nenhum gerador seguro de números aleatórios, por favor, active a extensão OpenSSL no PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sem nenhum gerador seguro de números aleatórios, uma pessoa mal intencionada pode prever a sua password, reiniciar as seguranças adicionais e tomar conta da sua conta. ", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "A sua pasta com os dados e os seus ficheiros estão provavelmente acessÃveis a partir das internet. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessÃvel, ou mova a pasta com os dados para fora da raiz de documentos do servidor web.", "Create an <strong>admin account</strong>" => "Criar uma <strong>conta administrativa</strong>", "Advanced" => "Avançado", "Data folder" => "Pasta de dados", @@ -129,6 +127,7 @@ "Lost your password?" => "Esqueceu-se da sua password?", "remember" => "lembrar", "Log in" => "Entrar", +"Alternative Logins" => "Contas de acesso alternativas", "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." diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 83587fa4a763205143b883c2198cf114f04853cf..da9f1a7da943859ccbe0796b53919c01253d8e2e 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Utilizatorul %s a partajat dosarul \"%s\" cu tine. ÃŽl poÈ›i descărca de aici: %s ", "Category type not provided." => "Tipul de categorie nu este prevazut", "No category to add?" => "Nici o categorie de adăugat?", -"This category already exists: " => "Această categorie deja există:", "Object type not provided." => "Tipul obiectului nu este prevazut", "%s ID not provided." => "ID-ul %s nu a fost introdus", "Error adding %s to favorites." => "Eroare la adăugarea %s la favorite", @@ -106,7 +105,6 @@ "Security Warning" => "Avertisment de securitate", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Generatorul de numere pentru securitate nu este disponibil, va rog activati extensia PHP OpenSSL", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Fara generatorul pentru numere de securitate , un atacator poate afla parola si reseta contul tau", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Directorul tău de date È™i fiÈ™ierele tale probabil sunt accesibile prin internet. FiÈ™ierul .htaccess oferit de ownCloud nu funcÈ›ionează. ÃŽÈ›i recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web.", "Create an <strong>admin account</strong>" => "Crează un <strong>cont de administrator</strong>", "Advanced" => "Avansat", "Data folder" => "Director date", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 7b11ea43a4b4347d8f2d25216e74bdea09358b0e..0495f60d03f18e8c2d534cc7206f8817cd1b8d69 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -5,7 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл вам доÑтуп к папке \"%s\". Она доÑтупна Ð´Ð»Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸ здеÑÑŒ: %s", "Category type not provided." => "Тип категории не предоÑтавлен", "No category to add?" => "Ðет категорий Ð´Ð»Ñ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ?", -"This category already exists: " => "Ðта ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ð¸Ñ ÑƒÐ¶Ðµ ÑущеÑтвует: ", +"This category already exists: %s" => "Ðта ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ð¸Ñ ÑƒÐ¶Ðµ ÑущеÑтвует: %s", "Object type not provided." => "Тип объекта не предоÑтавлен", "%s ID not provided." => "ID %s не предоÑтавлен", "Error adding %s to favorites." => "Ошибка Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ %s в избранное", @@ -54,6 +54,7 @@ "The app name is not specified." => "Ð˜Ð¼Ñ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð½Ðµ указано", "The required file {file} is not installed!" => "Ðеобходимый файл {file} не уÑтановлен!", "Share" => "Открыть доÑтуп", +"Shared" => "Общие", "Error while sharing" => "Ошибка при открытии доÑтупа", "Error while unsharing" => "Ошибка при закрытии доÑтупа", "Error while changing permissions" => "Ошибка при Ñмене разрешений", @@ -83,6 +84,8 @@ "Error setting expiration date" => "Ошибка при уÑтановке Ñрока доÑтупа", "Sending ..." => "ОтправлÑетÑÑ ...", "Email sent" => "ПиÑьмо отправлено", +"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "При обновлении произошла ошибка. ПожалуйÑта Ñообщите об Ñтом в <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud ÑообщеÑтво</a>.", +"The update was successful. Redirecting you to ownCloud now." => "Обновление прошло уÑпешно. ПеренаправлÑемÑÑ Ð² Ваш ownCloud...", "ownCloud password reset" => "Ð¡Ð±Ñ€Ð¾Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ ", "Use the following link to reset your password: {link}" => "ИÑпользуйте Ñледующую ÑÑылку чтобы ÑброÑить пароль: {link}", "You will receive a link to reset your password via Email." => "Ðа ваш Ð°Ð´Ñ€ÐµÑ Email выÑлана ÑÑылка Ð´Ð»Ñ ÑброÑа паролÑ.", @@ -106,7 +109,6 @@ "Security Warning" => "Предупреждение безопаÑноÑти", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ðет доÑтупного защищенного генератора Ñлучайных чиÑел, пожалуйÑта, включите раÑширение PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без защищенного генератора Ñлучайных чиÑел злоумышленник может предугадать токены ÑброÑа Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð¸ завладеть Вашей учетной запиÑью.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ваши каталоги данных и файлы, вероÑтно, доÑтупны из Интернета. Файл .htaccess, предоÑтавлÑемый ownCloud, не работает. Мы наÑтоÑтельно рекомендуем Вам наÑтроить вебÑервер таким образом, чтобы каталоги данных больше не были доÑтупны, или перемеÑтить их за пределы корневого каталога документов веб-Ñервера.", "Create an <strong>admin account</strong>" => "Создать <strong>учётную запиÑÑŒ админиÑтратора</strong>", "Advanced" => "Дополнительно", "Data folder" => "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ñ Ð´Ð°Ð½Ð½Ñ‹Ð¼Ð¸", @@ -126,6 +128,7 @@ "Lost your password?" => "Забыли пароль?", "remember" => "запомнить", "Log in" => "Войти", +"Alternative Logins" => "Ðльтернативные имена пользователÑ", "prev" => "пред", "next" => "Ñлед", "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 53a3b9b0d591ee83d717c560c8333629087fcdf6..fad6ebeddcdc2e3f58a2fb658f7960f696951288 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -5,7 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл Вам доÑтуп к папке \"%s\". Она доÑтупена Ð´Ð»Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸ здеÑÑŒ: %s", "Category type not provided." => "Тип категории не предоÑтавлен.", "No category to add?" => "Ðет категории Ð´Ð»Ñ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ?", -"This category already exists: " => "Ðта ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ð¸Ñ ÑƒÐ¶Ðµ ÑущеÑтвует:", +"This category already exists: %s" => "Ðта ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ð¸Ñ ÑƒÐ¶Ðµ ÑущеÑтвует: %s", "Object type not provided." => "Тип объекта не предоÑтавлен.", "%s ID not provided." => "%s ID не предоÑтавлен.", "Error adding %s to favorites." => "Ошибка Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ %s в избранное.", @@ -109,7 +109,6 @@ "Security Warning" => "Предупреждение ÑиÑтемы безопаÑноÑти", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ðет доÑтупного защищенного генератора Ñлучайных чиÑел, пожалуйÑта, включите раÑширение PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без защищенного генератора Ñлучайных чиÑел злоумышленник может Ñпрогнозировать пароль, ÑброÑить учетные данные и завладеть Вашим аккаунтом.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ваши каталоги данных и файлы, вероÑтно, доÑтупны из Интернета. Файл .htaccess, предоÑтавлÑемый ownCloud, не работает. Мы наÑтоÑтельно рекомендуем Вам наÑтроить вебÑервер таким образом, чтобы каталоги данных больше не были доÑтупны, или перемеÑтить их за пределы корневого каталога документов веб-Ñервера.", "Create an <strong>admin account</strong>" => "Создать <strong>admin account</strong>", "Advanced" => "РаÑширенный", "Data folder" => "Папка данных", @@ -129,6 +128,7 @@ "Lost your password?" => "Забыли пароль?", "remember" => "запомнить", "Log in" => "Войти", +"Alternative Logins" => "Ðльтернативные Имена", "prev" => "предыдущий", "next" => "Ñледующий", "Updating ownCloud to version %s, this may take a while." => "Обновление ownCloud до верÑии %s, Ñто может занÑÑ‚ÑŒ некоторое времÑ." diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index eab1ba10018bbbd1f5ddca9665e9c3079fc49e9c..eaafca2f3f6008478f4e63f7230b6bdec973c2f9 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -71,7 +71,6 @@ "Add" => "එක් කරන්න", "Security Warning" => "ආරක්ෂක නිවේදනයක්", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ආරක්ෂිචඅහඹු සංඛ්â€à¶ºà· උà¶à·Šà¶´à·à¶¯à¶šà¶ºà¶šà·Š නොමà·à¶à·’ නම් ඔබගේ ගිණුමට පහරදෙන අයකුට එහි මුරපද යළි පිහිටුවීමට අවà·à·Šâ€à¶º ටà·à¶šà¶± පහසුවෙන් සොයà·à¶œà·™à¶± ඔබගේ ගිණුම පà·à·„à·à¶»à¶œà¶ à·„à·à¶š.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ඔබගේ දà¶à·Šà¶ ඩිරෙක්ටරිය හ෠ගොනුවලට අන්à¶à¶»à·Šà¶¢à·à¶½à¶ºà·™à¶±à·Š පිවිසිය à·„à·à¶š. ownCloud සපය෠ඇà¶à·’ .htaccess ගොනුව ක්â€à¶»à·’යà·à¶šà¶»à¶±à·Šà¶±à·š නà·à¶. අපි à¶à¶»à¶ºà·š කිය෠සිටිනුයේ නම්, මෙම දà¶à·Šà¶ හ෠ගොනු එසේ පිවිසීමට නොහà·à¶šà·’ වන ලෙස ඔබේ වෙබ් සේවà·à¶¯à·à¶ºà¶šà¶ºà· වින්â€à¶ºà·à·ƒ කරන ලෙස හ෠එම ඩිරෙක්ටරිය වෙබ් මූලයෙන් පිටà¶à¶§ ගෙනයන ලෙසය.", "Advanced" => "දියුණු/උසස්", "Data folder" => "දà¶à·Šà¶ à·†à·à¶½à·Šà¶©à¶»à¶º", "Configure the database" => "දà¶à·Šà¶ සමුදà·à¶º à·„à·à¶©à¶œà·à·ƒà·“ම", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index ad5ae0ea371cb43fcb6c8f178169b9cd66616972..26f04c1bcea96641a1ddce5d11bf35438fffee4d 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -5,7 +5,7 @@ "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:", +"This category already exists: %s" => "Kategéria: %s už existuje.", "Object type not provided." => "Neposkytnutý typ objektu.", "%s ID not provided." => "%s ID neposkytnuté.", "Error adding %s to favorites." => "Chyba pri pridávanà %s do obľúbených položiek.", @@ -109,7 +109,6 @@ "Security Warning" => "BezpeÄnostné varovanie", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nie je dostupný žiadny bezpeÄný generátor náhodných ÄÃsel, prosÃm, povoľte rozÅ¡Ãrenie OpenSSL v PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpeÄného generátora náhodných ÄÃsel môže útoÄnÃk predpovedaÅ¥ token pre obnovu hesla a prevziaÅ¥ kontrolu nad vaÅ¡Ãm kontom.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš prieÄinok s dátami a VaÅ¡e súbory sú pravdepodobne dostupné z internetu. .htaccess súbor dodávaný s inÅ¡taláciou ownCloud nespĺňa úlohu. Dôrazne Vám doporuÄujeme nakonfigurovaÅ¥ webserver takým spôsobom, aby dáta v prieÄinku neboli verejné, alebo presuňte dáta mimo Å¡truktúry prieÄinkov webservera.", "Create an <strong>admin account</strong>" => "VytvoriÅ¥ <strong>administrátorský úÄet</strong>", "Advanced" => "PokroÄilé", "Data folder" => "PrieÄinok dát", @@ -129,6 +128,7 @@ "Lost your password?" => "Zabudli ste heslo?", "remember" => "zapamätaÅ¥", "Log in" => "PrihlásiÅ¥ sa", +"Alternative Logins" => "AltrnatÃvne loginy", "prev" => "späť", "next" => "Äalej", "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 54cf817a7a08602caca0807ad021ab1192a177dc..2b5b02191ec875ee5cf54046739aa1a5d11e97f6 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uporanik %s je dal mapo \"%s\" v souporabo z vami. Prenesete je lahko tukaj: %s", "Category type not provided." => "Vrsta kategorije ni podana.", "No category to add?" => "Ni kategorije za dodajanje?", -"This category already exists: " => "Ta kategorija že obstaja:", "Object type not provided." => "Vrsta predmeta ni podana.", "%s ID not provided." => "%s ID ni podan.", "Error adding %s to favorites." => "Napaka pri dodajanju %s med priljubljene.", @@ -106,7 +105,6 @@ "Security Warning" => "Varnostno opozorilo", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Na voljo ni varnega generatorja nakljuÄnih Å¡tevil. Prosimo, Äe omogoÄite PHP OpenSSL razÅ¡iritev.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Brez varnega generatorja nakljuÄnih Å¡tevil lahko napadalec napove žetone za ponastavitev gesla, kar mu omogoÄa, da prevzame vaÅ¡ ​​raÄun.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogoÄen vsem uporabnikom na omrežju. Datoteka .htaccess, vkljuÄena v ownCloud namreÄ ni omogoÄena. MoÄno priporoÄamo nastavitev spletnega strežnika tako, da mapa podatkov ne bo javno dostopna ali pa, da jo prestavite ven iz korenske mape spletnega strežnika.", "Create an <strong>admin account</strong>" => "Ustvari <strong>skrbniÅ¡ki raÄun</strong>", "Advanced" => "Napredne možnosti", "Data folder" => "Mapa s podatki", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index ecd316b7cfb98a495c683e51724abf25a642fa15..557cb6a8aba0ba8865f03a4f28a3c4d52962129f 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -3,7 +3,6 @@ "User %s shared a folder with you" => "КориÑник %s дели Ñа вама директоријум", "Category type not provided." => "Ð’Ñ€Ñта категорије није унет.", "No category to add?" => "Додати још неку категорију?", -"This category already exists: " => "Категорија већ поÑтоји:", "Object type not provided." => "Ð’Ñ€Ñта објекта није унета.", "%s ID not provided." => "%s ИД ниÑу унети.", "Error adding %s to favorites." => "Грешка приликом додавања %s у омиљене.", @@ -103,7 +102,6 @@ "Security Warning" => "СигурноÑно упозорење", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Поуздан генератор Ñлучајних бројева није доÑтупан, предлажемо да укључите PHP проширење OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без поузданог генератора Ñлучајнох бројева нападач лако може предвидети лозинку за поништавање кључа шифровања и отети вам налог.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Тренутно Ñу ваши подаци и датотеке доÑтупне Ñа интернета. Датотека .htaccess коју је обезбедио пакет ownCloud не функционише. Саветујемо вам да подеÑите веб Ñервер тако да директоријум Ñа подацима не буде изложен или да га премеÑтите изван коренÑког директоријума веб Ñервера.", "Create an <strong>admin account</strong>" => "Ðаправи <strong>админиÑтративни налог</strong>", "Advanced" => "Ðапредно", "Data folder" => "Фацикла података", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index a0dde652693e94c0d464a6e4ef59f39d08fb0669..bc96c237134615436c1be3df45972c2035078b06 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Användare %s delade mappen \"%s\" med dig. Den finns att ladda ner här: %s", "Category type not provided." => "Kategorityp inte angiven.", "No category to add?" => "Ingen kategori att lägga till?", -"This category already exists: " => "Denna kategori finns redan:", "Object type not provided." => "Objekttyp inte angiven.", "%s ID not provided." => "%s ID inte angiven.", "Error adding %s to favorites." => "Fel vid tillägg av %s till favoriter.", @@ -109,7 +108,6 @@ "Security Warning" => "Säkerhetsvarning", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen säker slumptalsgenerator finns tillgänglig. Du bör aktivera PHP OpenSSL-tillägget.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Utan en säker slumptalsgenerator kan angripare fÃ¥ möjlighet att förutsäga lösenordsÃ¥terställningar och ta över ditt konto.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datakatalog och dina filer är förmodligen tillgängliga frÃ¥n Internet. Den .htaccess-fil som ownCloud tillhandahÃ¥ller fungerar inte. Vi rekommenderar starkt att du konfigurerar webbservern sÃ¥ att datakatalogen inte längre är tillgänglig eller att du flyttar datakatalogen utanför webbserverns dokument-root.", "Create an <strong>admin account</strong>" => "Skapa ett <strong>administratörskonto</strong>", "Advanced" => "Avancerat", "Data folder" => "Datamapp", diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 2b8829c717ff6bd0f44453207c1488ac6f9f0a23..f7ad09fbc7e9772fd9b6a34dc83afe4a07348d22 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -1,7 +1,6 @@ <?php $TRANSLATIONS = array( "Category type not provided." => "பிரிவ௠வகைகள௠வழஙà¯à®•à®ªà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ", "No category to add?" => "சேரà¯à®ªà¯à®ªà®¤à®±à¯à®•à®¾à®© வகைகள௠இலà¯à®²à¯ˆà®¯à®¾?", -"This category already exists: " => "இநà¯à®¤ வகை à®à®±à¯à®•à®©à®µà¯‡ உளà¯à®³à®¤à¯:", "Object type not provided." => "பொரà¯à®³à¯ வகை வழஙà¯à®•à®ªà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ", "%s ID not provided." => "%s ID வழஙà¯à®•à®ªà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ", "Error adding %s to favorites." => "விரà¯à®ªà¯à®ªà®™à¯à®•à®³à¯à®•à¯à®•à¯ %s ஠சேரà¯à®ªà¯à®ªà®¤à®¿à®²à¯ வழà¯", @@ -98,7 +97,6 @@ "Security Warning" => "பாதà¯à®•à®¾à®ªà¯à®ªà¯ எசà¯à®šà®°à®¿à®•à¯à®•à¯ˆ", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿà¯à®Ÿ எணà¯à®£à®¿à®•à¯à®•à¯ˆ பாதà¯à®•à®¾à®ªà¯à®ªà®¾à®© பà¯à®±à®ªà¯à®ªà®¾à®•à¯à®•à®¿ / உணà¯à®Ÿà®¾à®•à¯à®•à®¿à®•à®³à¯ இலà¯à®²à¯ˆ, தயவà¯à®šà¯†à®¯à¯à®¤à¯ PHP OpenSSL நீடà¯à®šà®¿à®¯à¯ˆ இயலà¯à®®à¯ˆà®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®•. ", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "பாதà¯à®•à®¾à®ªà¯à®ªà®¾à®© சீரறà¯à®± எணà¯à®£à®¿à®•à¯à®•à¯ˆà®¯à®¾à®© பà¯à®±à®ªà¯à®ªà®¾à®•à¯à®•à®¿ இலà¯à®²à¯ˆà®¯à¯†à®©à®¿à®©à¯, தாகà¯à®•à¯à®©à®°à®¾à®²à¯ கடவà¯à®šà¯à®šà¯Šà®²à¯ மீளமைபà¯à®ªà¯ அடையாளவிலà¯à®²à¯ˆà®•à®³à¯ à®®à¯à®©à¯à®®à¯Šà®´à®¿à®¯à®ªà¯à®ªà®Ÿà¯à®Ÿà¯ உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ கணகà¯à®•à¯ˆ கைபà¯à®ªà®±à¯à®±à®²à®¾à®®à¯.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ தரவ௠அடைவ௠மறà¯à®±à¯à®®à¯ உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ கோபà¯à®ªà¯à®•à¯à®•à®³à¯ˆ பெரà¯à®®à¯à®ªà®¾à®²à¯à®®à¯ இணையதà¯à®¤à®¿à®©à¯‚டாக அணà¯à®•à®²à®¾à®®à¯. ownCloud இனால௠வழஙà¯à®•à®ªà¯à®ªà®Ÿà¯à®•à®¿à®©à¯à®± .htaccess கோபà¯à®ªà¯ வேலை செயà¯à®¯à®µà®¿à®²à¯à®²à¯ˆ. தரவ௠அடைவை நீணà¯à®Ÿ நேரதà¯à®¤à®¿à®±à¯à®•à¯ அணà¯à®•à®•à¯à®•à¯‚டியதாக உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ வலைய சேவையகதà¯à®¤à¯ˆ தகவமைகà¯à®•à¯à®®à®¾à®±à¯ நாஙà¯à®•à®³à¯ உறà¯à®¤à®¿à®¯à®¾à®• கூறà¯à®•à®¿à®±à¯‹à®®à¯ அலà¯à®²à®¤à¯ தரவ௠அடைவை வலைய சேவையக மூல ஆவணதà¯à®¤à®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯ வெளியே அகறà¯à®±à¯à®•. ", "Create an <strong>admin account</strong>" => "<strong> நிரà¯à®µà®¾à®• கணகà¯à®•à¯Šà®©à¯à®±à¯ˆ </strong> உரà¯à®µà®¾à®•à¯à®•à¯à®•", "Advanced" => "மேமà¯à®ªà®Ÿà¯à®Ÿ", "Data folder" => "தரவ௠கோபà¯à®ªà¯à®±à¯ˆ", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index ffab0bb9564295b4e6fa78142e8c8e35a6e2da16..e5295cee103914d6c196d146f471772698e18879 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ผู้ใช้งาน %s ได้à¹à¸Šà¸£à¹Œà¹‚ฟลเดà¸à¸£à¹Œ \"%s\" ให้à¸à¸±à¸šà¸„ุณ à¹à¸¥à¸°à¸„ุณสามารถดาวน์โหลดโฟลเดà¸à¸£à¹Œà¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹„ด้จาà¸à¸—ี่นี่: %s", "Category type not provided." => "ยังไม่ได้ระบุชนิดขà¸à¸‡à¸«à¸¡à¸§à¸”หมู่", "No category to add?" => "ไม่มีหมวดหมู่ที่ต้à¸à¸‡à¸à¸²à¸£à¹€à¸žà¸´à¹ˆà¸¡?", -"This category already exists: " => "หมวดหมู่นี้มีà¸à¸¢à¸¹à¹ˆà¹à¸¥à¹‰à¸§: ", "Object type not provided." => "ชนิดขà¸à¸‡à¸§à¸±à¸•à¸–ุยังไม่ได้ถูà¸à¸£à¸°à¸šà¸¸", "%s ID not provided." => "ยังไม่ได้ระบุรหัส %s", "Error adding %s to favorites." => "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดในà¸à¸²à¸£à¹€à¸žà¸´à¹ˆà¸¡ %s เข้าไปยังรายà¸à¸²à¸£à¹‚ปรด", @@ -109,7 +108,6 @@ "Security Warning" => "คำเตืà¸à¸™à¹€à¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸„วามปลà¸à¸”ภัย", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ยังไม่มีตัวสร้างหมายเลขà¹à¸šà¸šà¸ªà¸¸à¹ˆà¸¡à¹ƒà¸«à¹‰à¹ƒà¸Šà¹‰à¸‡à¸²à¸™, à¸à¸£à¸¸à¸“าเปิดใช้งานส่วนเสริม PHP OpenSSL", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "หาà¸à¸›à¸£à¸²à¸¨à¸ˆà¸²à¸à¸•à¸±à¸§à¸ªà¸£à¹‰à¸²à¸‡à¸«à¸¡à¸²à¸¢à¹€à¸¥à¸‚à¹à¸šà¸šà¸ªà¸¸à¹ˆà¸¡à¸—ี่ช่วยป้à¸à¸‡à¸à¸±à¸™à¸„วามปลà¸à¸”ภัย ผู้บุà¸à¸£à¸¸à¸à¸à¸²à¸ˆà¸ªà¸²à¸¡à¸²à¸£à¸–ที่จะคาดคะเนรหัสยืนยันà¸à¸²à¸£à¹€à¸‚้าถึงเพื่à¸à¸£à¸µà¹€à¸‹à¹‡à¸•à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™ à¹à¸¥à¸°à¹€à¸à¸²à¸šà¸±à¸à¸Šà¸µà¸‚à¸à¸‡à¸„ุณไปเป็นขà¸à¸‡à¸•à¸™à¹€à¸à¸‡à¹„ด้", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ไดเร็à¸à¸—à¸à¸£à¸µà¹ˆà¸‚้à¸à¸¡à¸¹à¸¥à¹à¸¥à¸°à¹„ฟล์ขà¸à¸‡à¸„ุณสามารถเข้าถึงได้จาà¸à¸à¸´à¸™à¹€à¸—à¸à¸£à¹Œà¹€à¸™à¹‡à¸• ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้à¸à¸¢à¹ˆà¸²à¸‡à¹€à¸«à¸¡à¸²à¸°à¸ªà¸¡ เราขà¸à¹à¸™à¸°à¸™à¸³à¹ƒà¸«à¹‰à¸„ุณà¸à¸³à¸«à¸™à¸”ค่าเว็บเซิร์ฟเวà¸à¸£à¹Œà¹ƒà¸«à¸¡à¹ˆà¹ƒà¸™à¸£à¸¹à¸›à¹à¸šà¸šà¸—ี่ไดเร็à¸à¸—à¸à¸£à¸µà¹ˆà¹€à¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥à¹„ม่สามารถเข้าถึงได้à¸à¸µà¸à¸•à¹ˆà¸à¹„ป หรืà¸à¸„ุณได้ย้ายไดเร็à¸à¸—à¸à¸£à¸µà¹ˆà¸—ี่ใช้เà¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥à¹„ปà¸à¸¢à¸¹à¹ˆà¸ ายนà¸à¸à¸•à¸³à¹à¸«à¸™à¹ˆà¸‡ root ขà¸à¸‡à¹€à¸§à¹‡à¸šà¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œà¹à¸¥à¹‰à¸§", "Create an <strong>admin account</strong>" => "สร้าง <strong>บัà¸à¸Šà¸µà¸œà¸¹à¹‰à¸”ูà¹à¸¥à¸£à¸°à¸šà¸š</strong>", "Advanced" => "ขั้นสูง", "Data folder" => "โฟลเดà¸à¸£à¹Œà¹€à¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 624887674d1c94f738fbb2c572d297e079e28c77..201b511647ccee8c9b651e82cf2c79e0186120c8 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s kullanıcısı \"%s\" dizinini sizinle paylaÅŸtı. %s adresinden indirilebilir", "Category type not provided." => "Kategori türü desteklenmemektedir.", "No category to add?" => "Eklenecek kategori yok?", -"This category already exists: " => "Bu kategori zaten mevcut: ", "Object type not provided." => "Nesne türü desteklenmemektedir.", "%s ID not provided." => "%s ID belirtilmedi.", "Error adding %s to favorites." => "%s favorilere eklenirken hata oluÅŸtu", @@ -106,7 +105,6 @@ "Security Warning" => "Güvenlik Uyarisi", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Güvenli rasgele sayı üreticisi bulunamadı. Lütfen PHP OpenSSL eklentisini etkinleÅŸtirin.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Güvenli rasgele sayı üreticisi olmadan saldırganlar parola sıfırlama simgelerini tahmin edip hesabınızı ele geçirebilir.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden eriÅŸilebilir. Owncloud tarafından saÄŸlanan .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine eriÅŸimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı ÅŸiddetle tavsiye ederiz.", "Create an <strong>admin account</strong>" => "Bir <strong>yönetici hesabı</strong> oluÅŸturun", "Advanced" => "GeliÅŸmiÅŸ", "Data folder" => "Veri klasörü", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index fa8150e7c9dc874fd4a29ca948357a58857bf944..7eab365a39d0741242d0ca6ee6eccee0ba8777c4 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "КориÑтувач %s поділивÑÑ Ñ‚ÐµÐºÐ¾ÑŽ \"%s\" з вами. Він доÑтупний Ð´Ð»Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð²Ñ–Ð´Ñи: %s", "Category type not provided." => "Ðе вказано тип категорії.", "No category to add?" => "ВідÑутні категорії Ð´Ð»Ñ Ð´Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ?", -"This category already exists: " => "Ð¦Ñ ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ñ–Ñ Ð²Ð¶Ðµ Ñ–Ñнує: ", "Object type not provided." => "Ðе вказано тип об'єкту.", "%s ID not provided." => "%s ID не вказано.", "Error adding %s to favorites." => "Помилка при додаванні %s до обраного.", @@ -54,6 +53,7 @@ "The app name is not specified." => "Ðе визначено ім'Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¸.", "The required file {file} is not installed!" => "Ðеобхідний файл {file} не вÑтановлено!", "Share" => "ПоділитиÑÑ", +"Shared" => "Опубліковано", "Error while sharing" => "Помилка під Ñ‡Ð°Ñ Ð¿ÑƒÐ±Ð»Ñ–ÐºÐ°Ñ†Ñ–Ñ—", "Error while unsharing" => "Помилка під Ñ‡Ð°Ñ Ð²Ñ–Ð´Ð¼Ñ–Ð½Ð¸ публікації", "Error while changing permissions" => "Помилка при зміні повноважень", @@ -83,6 +83,8 @@ "Error setting expiration date" => "Помилка при вÑтановленні терміна дії", "Sending ..." => "ÐадÑиланнÑ...", "Email sent" => "Ел. пошта надіÑлана", +"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð²Ð¸ÐºÐ¾Ð½Ð°Ð»Ð¾ÑÑŒ неуÑпішно. Будь лаÑка, повідомте про цю проблему в <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">Ñпільноті ownCloud</a>.", +"The update was successful. Redirecting you to ownCloud now." => "ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð²Ð¸ÐºÐ¾Ð½Ð°Ð»Ð¾ÑÑŒ уÑпішно. ПеренаправлÑємо Ð²Ð°Ñ Ð½Ð° ownCloud.", "ownCloud password reset" => "ÑÐºÐ¸Ð´Ð°Ð½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ ownCloud", "Use the following link to reset your password: {link}" => "ВикориÑтовуйте наÑтупне поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð´Ð»Ñ ÑÐºÐ¸Ð´Ð°Ð½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ: {link}", "You will receive a link to reset your password via Email." => "Ви отримаєте поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð´Ð»Ñ ÑÐºÐ¸Ð´Ð°Ð½Ð½Ñ Ð²Ð°ÑˆÐ¾Ð³Ð¾ паролю на Ел. пошту.", @@ -106,7 +108,6 @@ "Security Warning" => "ÐŸÐ¾Ð¿ÐµÑ€ÐµÐ´Ð¶ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ небезпеку", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ðе доÑтупний безпечний генератор випадкових чиÑел, будь лаÑка, активуйте PHP OpenSSL додаток.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без безпечного генератора випадкових чиÑел зловмиÑник може визначити токени ÑÐºÐ¸Ð´Ð°Ð½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ñ– заволодіти Вашим обліковим запиÑом.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ваш каталог з даними та Ваші файли можливо доÑтупні з Інтернету. Файл .htaccess, наданий з ownCloud, не працює. Ми наполегливо рекомендуємо Вам налаштувати Ñвій веб-Ñервер таким чином, щоб каталог data більше не був доÑтупний, або переміÑтити каталог data за межі кореневого каталогу документів веб-Ñервера.", "Create an <strong>admin account</strong>" => "Створити <strong>обліковий Ð·Ð°Ð¿Ð¸Ñ Ð°Ð´Ð¼Ñ–Ð½Ñ–Ñтратора</strong>", "Advanced" => "Додатково", "Data folder" => "Каталог даних", @@ -126,6 +127,7 @@ "Lost your password?" => "Забули пароль?", "remember" => "запам'Ñтати", "Log in" => "Вхід", +"Alternative Logins" => "Ðльтернативні Логіни", "prev" => "попередній", "next" => "наÑтупний", "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 078cfa8dd8c7ba9004db7c092f366ca46c60226f..ca6f9b91da22ec498830cdc3a3b1411de0fca9f5 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "NgÆ°á»i dùng %s chia sẻ thÆ° mục \"%s\" cho bạn .Bạn có thể tải tại đây : %s", "Category type not provided." => "Kiểu hạng mục không được cung cấp.", "No category to add?" => "Không có danh mục được thêm?", -"This category already exists: " => "Danh mục nà y đã được tạo :", "Object type not provided." => "Loại đối tượng không được cung cấp.", "%s ID not provided." => "%s ID không được cung cấp.", "Error adding %s to favorites." => "Lá»—i thêm %s và o mục yêu thÃch.", @@ -106,7 +105,6 @@ "Security Warning" => "Cảnh bảo bảo máºt", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Không an toà n ! chức năng random number generator đã có sẵn ,vui lòng báºt PHP OpenSSL extension.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Nếu không có random number generator , Hacker có thể thiết láºp lại máºt khẩu và chiếm tà i khoản của bạn.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ThÆ° mục dữ liệu và những táºp tin của bạn có thể dá»… dà ng bị truy cáºp từ mạng. Táºp tin .htaccess do ownCloud cung cấp không hoạt Ä‘á»™ng. Chúng tôi Ä‘á» nghị bạn nên cấu hình lại máy chủ web để thÆ° mục dữ liệu không còn bị truy cáºp hoặc bạn nên di chuyển thÆ° mục dữ liệu ra bên ngoà i thÆ° mục gốc của máy chủ.", "Create an <strong>admin account</strong>" => "Tạo má»™t <strong>tà i khoản quản trị</strong>", "Advanced" => "Nâng cao", "Data folder" => "ThÆ° mục dữ liệu", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 9617d7260dc3dc8b222dca4691d40745bd407a64..57f0e96378ca47168f1b8db39297468bf204c4f4 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "No category to add?" => "æ²¡æœ‰åˆ†ç±»æ·»åŠ äº†?", -"This category already exists: " => "这个分类已ç»å˜åœ¨äº†:", "No categories selected for deletion." => "没有选者è¦åˆ 除的分类.", "Sunday" => "星期天", "Monday" => "星期一", @@ -87,7 +86,6 @@ "Security Warning" => "安全è¦å‘Š", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "没有安全éšæœºç 生æˆå™¨ï¼Œè¯·å¯ç”¨ PHP OpenSSL 扩展。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "没有安全éšæœºç 生æˆå™¨ï¼Œé»‘客å¯ä»¥é¢„测密ç é‡ç½®ä»¤ç‰Œå¹¶æŽ¥ç®¡ä½ 的账户。", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数æ®æ–‡ä»¶å¤¹å’Œæ‚¨çš„文件或许能够从互è”网访问。ownCloud æ供的 .htaccesss 文件未其作用。我们强烈建议您é…置网络æœåŠ¡å™¨ä»¥ä½¿æ•°æ®æ–‡ä»¶å¤¹ä¸èƒ½ä»Žäº’è”网访问,或将移动数æ®æ–‡ä»¶å¤¹ç§»å‡ºç½‘络æœåŠ¡å™¨æ–‡æ¡£æ ¹ç›®å½•ã€‚", "Create an <strong>admin account</strong>" => "建立一个 <strong>管ç†å¸æˆ·</strong>", "Advanced" => "进阶", "Data folder" => "æ•°æ®å˜æ”¾æ–‡ä»¶å¤¹", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index f18fd6b357ddac9afae296d761512d266dfa87b8..086687c08c3b499e7c57cbac966bd04d3383f2f4 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用户 %s 与您共享了文件夹\"%s\"。文件夹下载地å€ï¼š%s", "Category type not provided." => "未æ供分类类型。", "No category to add?" => "没有å¯æ·»åŠ 分类?", -"This category already exists: " => "æ¤åˆ†ç±»å·²å˜åœ¨: ", "Object type not provided." => "未æ供对象类型。", "%s ID not provided." => "%s ID未æ供。", "Error adding %s to favorites." => "å‘收è—夹ä¸æ–°å¢ž%s时出错。", @@ -107,7 +106,6 @@ "Security Warning" => "安全è¦å‘Š", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "éšæœºæ•°ç”Ÿæˆå™¨æ— 效,请å¯ç”¨PHPçš„OpenSSL扩展", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "没有安全éšæœºç 生æˆå™¨ï¼Œæ”»å‡»è€…å¯èƒ½ä¼šçŒœæµ‹å¯†ç é‡ç½®ä¿¡æ¯ä»Žè€Œçªƒå–您的账户", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数æ®æ–‡ä»¶å¤¹å’Œæ–‡ä»¶å¯ç”±äº’è”网访问。OwnCloudæ供的.htaccess文件未生效。我们强烈建议您é…ç½®æœåŠ¡å™¨ï¼Œä»¥ä½¿æ•°æ®æ–‡ä»¶å¤¹ä¸å¯è¢«è®¿é—®ï¼Œæˆ–者将数æ®æ–‡ä»¶å¤¹ç§»åˆ°webæœåŠ¡å™¨æ ¹ç›®å½•ä»¥å¤–。", "Create an <strong>admin account</strong>" => "创建<strong>管ç†å‘˜è´¦å·</strong>", "Advanced" => "高级", "Data folder" => "æ•°æ®ç›®å½•", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 35183194d2ac03af8317f01f45f0e282db49464a..58d2aca4095e329e270c02321b671858bd3fb289 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用戶 %s 與您分享了資料夾 \"%s\" ,您å¯ä»¥å¾žé€™è£¡ä¸‹è¼‰å®ƒï¼š %s", "Category type not provided." => "未æ供分類類型。", "No category to add?" => "沒有å¯å¢žåŠ 的分類?", -"This category already exists: " => "æ¤åˆ†é¡žå·²ç¶“å˜åœ¨ï¼š", "Object type not provided." => "ä¸æ”¯æ´çš„物件類型", "%s ID not provided." => "未æä¾› %s ID 。", "Error adding %s to favorites." => "åŠ å…¥ %s 到最愛時發生錯誤。", @@ -109,7 +108,6 @@ "Security Warning" => "安全性è¦å‘Š", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "沒有å¯ç”¨çš„亂數產生器,請啟用 PHP ä¸çš„ OpenSSL 擴充功能。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "若沒有安全的亂數產生器,攻擊者å¯èƒ½å¯ä»¥é 測密碼é‡è¨ä¿¡ç‰©ï¼Œç„¶å¾ŒæŽ§åˆ¶æ‚¨çš„帳戶。", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的資料目錄 (Data Directory) 和檔案å¯èƒ½å¯ä»¥ç”±ç¶²éš›ç¶²è·¯ä¸Šé¢å…¬é–‹å˜å–。Owncloud 所æ供的 .htaccess è¨å®šæª”並未生效,我們強烈建è°æ‚¨è¨å®šæ‚¨çš„網é 伺æœå™¨ä»¥é˜²æ¢è³‡æ–™ç›®éŒ„被公開å˜å–,或將您的資料目錄移出網é 伺æœå™¨çš„ document root 。", "Create an <strong>admin account</strong>" => "建立一個<strong>管ç†è€…帳號</strong>", "Advanced" => "進階", "Data folder" => "資料夾", diff --git a/core/routes.php b/core/routes.php index 7408858b107cb79c8c705d02d81fd5bad59f6895..2527816b662c13e65baa950e2dde498162aaea28 100644 --- a/core/routes.php +++ b/core/routes.php @@ -6,6 +6,10 @@ * See the COPYING-README file. */ +// Post installation check +$this->create('post_setup_check', '/post-setup-check') + ->action('OC_Setup', 'postSetupCheck'); + // Core ajax actions // Search $this->create('search_ajax_search', '/search/ajax/search.php') diff --git a/core/setup.php b/core/setup.php index 66b8cf378bd18d28995ba4e8dc62046b4f053410..f16385466cb8fcc0bf4ddcc4c8a0c65fd2bea1cc 100644 --- a/core/setup.php +++ b/core/setup.php @@ -43,7 +43,7 @@ if(isset($_POST['install']) AND $_POST['install']=='true') { OC_Template::printGuestPage("", "installation", $options); } else { - header("Location: ".OC::$WEBROOT.'/'); + header( 'Location: '.OC_Helper::linkToRoute( 'post_setup_check' )); exit(); } } diff --git a/core/templates/installation.php b/core/templates/installation.php index 03c580c9b0b0c12c58bd5dd75cbd452c88da486b..ad0d9cfbadac4a1b05b4df8e1677f50de6e71866 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -21,15 +21,15 @@ <?php if(!$_['secureRNG']): ?> <fieldset class="warning"> <legend><strong><?php echo $l->t('Security Warning');?></strong></legend> - <span><?php echo $l->t('No secure random number generator is available, please enable the PHP OpenSSL extension.');?></span> - <br/> - <span><?php echo $l->t('Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account.');?></span> + <p><?php echo $l->t('No secure random number generator is available, please enable the PHP OpenSSL extension.');?><br/> + <?php echo $l->t('Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account.');?></p> </fieldset> <?php endif; ?> <?php if(!$_['htaccessWorking']): ?> <fieldset class="warning"> <legend><strong><?php echo $l->t('Security Warning');?></strong></legend> - <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> + <p><?php echo $l->t('Your data directory and files are probably accessible from the internet because the .htaccess file does not work.');?><br> + <?php echo $l->t('For information how to properly configure your server, please see the <a href="http://doc.owncloud.org/server/5.0/admin_manual/installation.html" target="_blank">documentation</a>.');?></p> </fieldset> <?php endif; ?> <fieldset id="adminaccount"> @@ -40,9 +40,11 @@ <img class="svg" src="<?php echo image_path('', 'actions/user.svg'); ?>" alt="" /> </p> <p class="infield groupbottom"> - <input type="password" name="adminpass" id="adminpass" value="<?php print OC_Helper::init_var('adminpass'); ?>" required /> + <input type="password" name="adminpass" id="adminpass" value="<?php print OC_Helper::init_var('adminpass'); ?>" required data-typetoggle="#show" /> <label for="adminpass" class="infield"><?php echo $l->t( 'Password' ); ?></label> - <img class="svg" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt="" /> + <img class="svg" id="adminpass-icon" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt="" /> + <input type="checkbox" id="show" name="show" /> + <label for="show"></label> </p> </fieldset> diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index 47fb75612cf130ea8237a8ab4fa71f38fa49abca..2049bcb36da73c5daa904b036bd2e5748047da11 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -7,7 +7,6 @@ <?php foreach ($_['cssfiles'] as $cssfile): ?> <link rel="stylesheet" href="<?php echo $cssfile; ?>" type="text/css" media="screen" /> <?php endforeach; ?> - <script type="text/javascript" src="<?php echo OC_Helper::linkToRoute('js_config');?>"></script> <?php foreach ($_['jsfiles'] as $jsfile): ?> <script type="text/javascript" src="<?php echo $jsfile; ?>"></script> <?php endforeach; ?> diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 9aabc08acece8c025b9da0d643a3a23b16bde406..69330aa9fceba0c0982c7f169fb9e994b9e3afe3 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -8,7 +8,6 @@ <?php foreach($_['cssfiles'] as $cssfile): ?> <link rel="stylesheet" href="<?php echo $cssfile; ?>" type="text/css" media="screen" /> <?php endforeach; ?> - <script type="text/javascript" src="<?php echo OC_Helper::linkToRoute('js_config');?>"></script> <?php foreach($_['jsfiles'] as $jsfile): ?> <script type="text/javascript" src="<?php echo $jsfile; ?>"></script> <?php endforeach; ?> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 2547278547fedc25080c7a00c42a897471a824d0..c8b580b5fd9df78112c4b808cc595d47acccd7c2 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -1,14 +1,13 @@ <!DOCTYPE html> <html> <head> - <title><?php echo isset($_['application']) && !empty($_['application'])?$_['application'].' | ':'' ?>ownCloud <?php echo OC_User::getDisplayName()?' ('.OC_Util::sanitizeHTML(OC_User::getDisplayName()).') ':'' ?></title> + <title><?php echo !empty($_['application'])?$_['application'].' | ':'' ?>ownCloud <?php echo !empty($_['user_displayname'])?' ('.$_['user_displayname'].') ':'' ?></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="apple-itunes-app" content="app-id=543672169"> <link rel="shortcut icon" href="<?php echo image_path('', 'favicon.png'); ?>" /><link rel="apple-touch-icon-precomposed" href="<?php echo image_path('', 'favicon-touch.png'); ?>" /> <?php foreach($_['cssfiles'] as $cssfile): ?> <link rel="stylesheet" href="<?php echo $cssfile; ?>" type="text/css" media="screen" /> <?php endforeach; ?> - <script type="text/javascript" src="<?php echo OC_Helper::linkToRoute('js_config');?>"></script> <?php foreach($_['jsfiles'] as $jsfile): ?> <script type="text/javascript" src="<?php echo $jsfile; ?>"></script> <?php endforeach; ?> diff --git a/core/templates/login.php b/core/templates/login.php index ed9aaba8a4c72c44e396eb59adba6a14e285d250..3be2b039b032aa9b95b52c77f809c5f2ef11b9a9 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -33,7 +33,7 @@ <input type="password" name="password" id="password" value="" data-typetoggle="#show" required<?php echo $_['user_autofocus'] ? '' : ' autofocus'; ?> /> <label for="password" class="infield"><?php echo $l->t('Password'); ?></label> - <img class="svg" id="pass_image" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt=""/> + <img class="svg" id="password-icon" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt=""/> <input type="checkbox" id="show" name="show" /> <label for="show"></label> </p> @@ -48,9 +48,9 @@ <fieldset> <legend><?php echo $l->t('Alternative Logins') ?></legend> <ul> - <? foreach($_['alt_login'] as $login): ?> + <?php foreach($_['alt_login'] as $login): ?> <li><a class="button" href="<?php echo $login['href']; ?>" ><?php echo $login['name']; ?></a></li> - <?php endforeach; ?> + <?php endforeach; ?> </ul> </fieldset> </form> diff --git a/db_structure.xml b/db_structure.xml index f4111bfabd02bfccbea9860271a3e6a78e65b129..fc7f1082ffa28f7f9bc74a1c011faffc85f6df28 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -94,6 +94,50 @@ </table> + <table> + + <name>*dbprefix*file_map</name> + + <declaration> + + <field> + <name>logic_path</name> + <type>text</type> + <default></default> + <notnull>true</notnull> + <length>512</length> + </field> + + <field> + <name>physic_path</name> + <type>text</type> + <default></default> + <notnull>true</notnull> + <length>512</length> + </field> + + <index> + <name>file_map_lp_index</name> + <unique>true</unique> + <field> + <name>logic_path</name> + <sorting>ascending</sorting> + </field> + </index> + + <index> + <name>file_map_pp_index</name> + <unique>true</unique> + <field> + <name>physic_path</name> + <sorting>ascending</sorting> + </field> + </index> + + </declaration> + + </table> + <table> <name>*dbprefix*mimetypes</name> diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index cee3db1d1b3192ceb3e9610c9bfdcd3d58466393..b0c9bf67feb8d26e4c58bc034d3f8c4c665e1af8 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 17:00+0000\n" -"Last-Translator: Jano Barnard <translate@janobarnard.co.za>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,7 +51,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -156,59 +157,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Instellings" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -467,7 +468,7 @@ msgstr "" msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -477,71 +478,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Skep `n <strong>admin-rekening</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Gevorderd" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Stel databasis op" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "sal gebruik word" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasis-gebruiker" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Databasis-wagwoord" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Databasis naam" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Maak opstelling klaar" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "webdienste onder jou beheer" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Teken uit" @@ -571,6 +576,10 @@ msgstr "onthou" msgid "Log in" msgstr "Teken aan" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "vorige" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 3814f1cfa0c848e780ac5b53856daffe7e788283..43e9f26707c0631fe563ec4005ee95f918f51d17 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,46 +17,60 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +82,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +195,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index ca4278cffc802d452dc81174c6ab2b3e4ccc3c96..6fd4dfb314f0749233a1c5a547d30bc533f82b3d 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,45 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/af_ZA/files_versions.po b/l10n/af_ZA/files_versions.po index 6cb41d2c080903e580b3f69c4fa9d536421980bd..14eaae14745a492f99f498e1fdd438ff5bc81c50 100644 --- a/l10n/af_ZA/files_versions.po +++ b/l10n/af_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: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,45 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index f621a8914be3adeb918e70c9f23fc8121bf35f1c..a768c32d6cd6c899544be0d7619be0586a38619c 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 17:00+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Wagwoord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nuwe wagwoord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -282,10 +303,6 @@ msgstr "" msgid "Other" msgstr "" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index dd30840b77929d20f4838d71bb47c55a059dca4a..e8faea36b86dc740c39962803dcf9844771c1aad 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 16:31+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 100a7f42a6eb8a11ef383d62621d87d3029ff6af..f3cdb9f639cf95d4f32b9fe0f7d0788914156ce3 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "ألا توجد Ùئة للإضاÙة؟" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "هذه الÙئة موجودة مسبقاً" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "تعديلات" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "اليوم" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -468,7 +469,7 @@ msgstr "عدل الÙئات" msgid "Add" msgstr "أدخل" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "تØذير أمان" @@ -478,71 +479,75 @@ msgid "" "OpenSSL extension." msgstr "لا يوجد مولّد أرقام عشوائية ØŒ الرجاء تÙعيل الـ PHP OpenSSL extension." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "أض٠</strong>مستخدم رئيسي <strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "خيارات متقدمة" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "مجلد المعلومات" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "أسس قاعدة البيانات" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "سيتم استخدمه" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "مستخدم قاعدة البيانات" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "كلمة سر مستخدم قاعدة البيانات" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "إسم قاعدة البيانات" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "مساØØ© جدول قاعدة البيانات" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "خادم قاعدة البيانات" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "انهاء التعديلات" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "خدمات الوب تØت تصرÙÙƒ" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "الخروج" @@ -564,14 +569,18 @@ msgstr "الرجاء إعادة تعيين كلمة السر لتأمين Øسا msgid "Lost your password?" msgstr "هل نسيت كلمة السر؟" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "تذكر" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "أدخل" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "السابق" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index eefbee4f65e5f061825d03bc1b2794cf3f2cb1b7..ce179ab2fb86d29f9877840d37adfef07e492508 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,60 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "تم ترÙيع الملÙات بنجاØ." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Øجم المل٠الذي تريد ترÙيعه أعلى مما MAX_FILE_SIZE ÙŠØ³Ù…Ø Ø¨Ù‡ ÙÙŠ واجهة ال HTML." -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "تم ترÙيع جزء من الملÙات الذي تريد ترÙيعها Ùقط" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "لم يتم ترÙيع أي من الملÙات" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +83,15 @@ msgstr "الملÙات" msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Ù…ØذوÙ" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -178,31 +196,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "الاسم" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Øجم" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "معدل" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index d892fd2a98384e8cbe49afa6cccade5467031430..70c6ea95ddec840170c953e764be2a3d559d5182 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ 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/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "اسم" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index 8224c627626c4c0306f51044b5f13ebf6a7b64f4..b915753cedc255c124a0be2220800a01967904f0 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "السجل الزمني" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "أصدرة الملÙات" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index c3a3312345860af1ecc2048f242b90e314950b86..e3785a9b5a724491496611d866cc40346ae19b74 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ùشل تØميل القائمة من الآب ستور" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "لم يتم التأكد من الشخصية بنجاØ" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "المجموعة موجودة مسبقاً" @@ -48,10 +57,6 @@ msgstr "البريد الإلكتروني غير صالØ" msgid "Unable to delete group" msgstr "Ùشل إزالة المجموعة" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "لم يتم التأكد من الشخصية بنجاØ" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ùشل إزالة المستخدم" @@ -114,7 +119,7 @@ msgstr "خطأ" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "ØÙظ" @@ -191,67 +196,83 @@ msgstr "تØميل عميل آندرويد" msgid "Download iOS Client" msgstr "تØميل عميل آي أو أس" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "كلمات السر" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "لقد تم تغيير كلمة السر" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "لم يتم تعديل كلمة السر بنجاØ" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "كلمات السر الØالية" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "كلمات سر جديدة" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "أظهر" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "عدل كلمة السر" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "العنوان البريدي" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "عنوانك البريدي" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "أدخل عنوانك البريدي لتÙعيل استرجاع كلمة المرور" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "اللغة" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "ساعد ÙÙŠ الترجمه" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud ÙÙŠ مدير الملÙات" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "إصدار" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -285,10 +306,6 @@ msgstr "" msgid "Other" msgstr "شيء آخر" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "مدير المجموعة" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index d723f7f7d7dfa3affdf7290a35e0f42c25526366..059e10baefd5414a8032a185c02ab7640be9d9ab 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 692a844f771fea8499a36c781347d965435674ac..aaa4f3d190d231fb610cd79d6fe383558c68b18b 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -54,7 +54,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -159,59 +160,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ÐаÑтройки" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "преди Ñекунди" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "преди 1 минута" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "преди 1 чаÑ" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "днеÑ" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "вчера" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "поÑледниÑÑ‚ меÑец" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "поÑледната година" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "поÑледните години" @@ -470,7 +471,7 @@ msgstr "" msgid "Add" msgstr "ДобавÑне" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -480,71 +481,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "уеб уÑлуги под Ваш контрол" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "" @@ -566,14 +571,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index b1a38c33dba0f3104318e718da6c8e05414955e8..f4b6a8ca6742b7f70035314966e1bca197c21f5a 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,60 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ЛипÑва временна папка" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +84,15 @@ msgstr "Файлове" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Изтриване" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Преименуване" @@ -179,31 +197,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Променено" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 61fe9f67efc34d563d9071d76b017e96264967fa..cf5275530e1917aab04f917e43d668f136351762 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,45 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index be466434b93a47ae246712f876fb1fd0dc1611c6..c79f0e63842b01f745bf921039e3d2284db24198 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -18,10 +18,45 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ИÑториÑ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index f056463c5785c8c29c4dc45bc5d3170cae689c73..4cef09976a2a00556519d58c33e8b890a576c074 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Възникна проблем Ñ Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñта" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -48,10 +57,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Възникна проблем Ñ Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñта" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -114,7 +119,7 @@ msgstr "Грешка" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -191,67 +196,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Парола" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -285,10 +306,6 @@ msgstr "" msgid "Other" msgstr "" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 932ba233880e50498e551db9d06398f403a94b1d..fd4876ac72a7eaa4231fddc16100d1340a8f5836 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 00bc3030b2f996022afeec0b252d59496a461567..6b0d2ba2698c3ea5dd183bb23073d35ca2e303b2 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 13:58+0000\n" -"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "যোগ করার মত কোন কà§à¦¯à¦¾à¦Ÿà§‡à¦—রি নেই ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "à¦à¦‡ কà§à¦¯à¦¾à¦Ÿà§‡à¦—রিটি পূরà§à¦¬ থেকেই বিদà§à¦¯à¦®à¦¾à¦¨à¦ƒ" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "নà¦à§‡à¦®à§à¦¬à¦°" msgid "December" msgstr "ডিসেমà§à¦¬à¦°" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "সেকেনà§à¦¡ পূরà§à¦¬à§‡" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 মিনিট পূরà§à¦¬à§‡" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূরà§à¦¬à§‡" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 ঘনà§à¦Ÿà¦¾ পূরà§à¦¬à§‡" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} ঘনà§à¦Ÿà¦¾ পূরà§à¦¬à§‡" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "আজ" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} দিন পূরà§à¦¬à§‡" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "গতমাস" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} মাস পূরà§à¦¬à§‡" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "মাস পূরà§à¦¬à§‡" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "গত বছর" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "বছর পূরà§à¦¬à§‡" @@ -468,7 +469,7 @@ msgstr "কà§à¦¯à¦¾à¦Ÿà§‡à¦—রি সমà§à¦ªà¦¾à¦¦à¦¨à¦¾" msgid "Add" msgstr "যোগ কর" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "নিরাপতà§à¦¤à¦¾à¦œà¦¨à¦¿à¦¤ সতরà§à¦•à¦¤à¦¾" @@ -478,71 +479,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "<strong>পà§à¦°à¦¶à¦¾à¦¸à¦• à¦à¦•à¦¾à¦‰à¦¨à§à¦Ÿ</strong> তৈরী করà§à¦¨" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "সà§à¦šà¦¾à¦°à§" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "ডাটা ফোলà§à¦¡à¦¾à¦° " -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ডাটাবেচ কনফিগার করà§à¦¨" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "বà§à¦¯à¦¬à¦¹à§ƒà¦¤ হবে" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ডাটাবেজ বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦•à¦¾à¦°à§€" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ডাটাবেজ কূটশবà§à¦¦" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ডাটাবেজের নাম" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "ডাটাবেজ টেবলসà§à¦ªà§‡à¦¸" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "ডাটাবেজ হোসà§à¦Ÿ" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "সেটআপ সà§à¦¸à¦®à§à¦ªà¦¨à§à¦¨ কর" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ওয়েব সারà§à¦à¦¿à¦¸à§‡à¦° নিয়নà§à¦¤à§à¦°à¦£ আপনার হাতের মà§à¦ োয়" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "পà§à¦°à¦¸à§à¦¥à¦¾à¦¨" @@ -564,14 +569,18 @@ msgstr "" msgid "Lost your password?" msgstr "কূটশবà§à¦¦ হারিয়েছেন?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "মনে রাখ" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "পà§à¦°à¦¬à§‡à¦¶" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "পূরà§à¦¬à¦¬à¦°à§à¦¤à§€" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 8192e6fedfc91853dfa97907521104aa7a28a95a..023ecf7d1e7d126a7f670621ce5801117ea93687 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -18,46 +18,60 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোড করা হয় নি। সমসà§à¦¯à¦¾ অজà§à¦žà¦¾à¦¤à¥¤" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "কোন সমসà§à¦¯à¦¾ নেই, ফাইল আপলোড সà§à¦¸à¦®à§à¦ªà¦¨à§à¦¨ হয়েছে" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "আপলোড করা ফাইলটি php.ini তে বরà§à¦£à¦¿à¦¤ upload_max_filesize নিরà§à¦¦à§‡à¦¶à¦¿à¦¤ আয়তন অতিকà§à¦°à¦® করছেঃ" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "আপলোড করা ফাইলটি HTML ফরà§à¦®à§‡ নিরà§à¦§à¦¾à¦°à¦¿à¦¤ MAX_FILE_SIZE নিরà§à¦¦à§‡à¦¶à¦¿à¦¤ সরà§à¦¬à§‹à¦šà§à¦š আকার অতিকà§à¦°à¦® করেছে " -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোড করা হয় নি" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "অসà§à¦¥à¦¾à§Ÿà§€ ফোলà§à¦¡à¦¾à¦° খোয়া গিয়েছে" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ডিসà§à¦•à§‡ লিখতে বà§à¦¯à¦°à§à¦¥" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "যথেষà§à¦ পরিমাণ সà§à¦¥à¦¾à¦¨ নেই" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "à¦à§à¦² ডিরেকà§à¦Ÿà¦°à¦¿" @@ -69,11 +83,15 @@ msgstr "ফাইল" msgid "Unshare" msgstr "à¦à¦¾à¦—াà¦à¦¾à¦—ি বাতিল " -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "মà§à¦›à§‡ ফেল" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "পূনঃনামকরণ" @@ -178,31 +196,31 @@ msgstr "URL ফাà¦à¦•à¦¾ রাখা যাবে না।" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ফোলà§à¦¡à¦¾à¦°à§‡à¦° নামটি সঠিক নয়। 'à¦à¦¾à¦—াà¦à¦¾à¦—ি করা' শà§à¦§à§à¦®à¦¾à¦¤à§à¦° Owncloud à¦à¦° জনà§à¦¯ সংরকà§à¦·à¦¿à¦¤à¥¤" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "নাম" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "আকার" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "পরিবরà§à¦¤à¦¿à¦¤" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "১টি ফোলà§à¦¡à¦¾à¦°" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} টি ফোলà§à¦¡à¦¾à¦°" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "১টি ফাইল" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} টি ফাইল" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 8cb4d9688e8507720a785bd25c6dc3daf4080060..ff75311f2f1a8b6ecbd22611c0be7c68f9228e49 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,45 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "রাম" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "১টি ফোলà§à¦¡à¦¾à¦°" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} টি ফোলà§à¦¡à¦¾à¦°" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "১টি ফাইল" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} টি ফাইল" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 2af1e4efdd9c35db55cdaa98e63fed3afaf5af18..3c072f781609835c2af596e7df2803ac409ca9e2 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -17,10 +17,45 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ইতিহাস" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ফাইল à¦à¦¾à¦°à§à¦¸à¦¨ করা" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index e5911603308722d26ab7121d6b790c030a903785..946bd8cd254de0034e29ce644d3b478677b636f7 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "অà§à¦¯à¦¾à¦ªà¦¸à§à¦Ÿà§‹à¦° থেকে তালিকা লোড করতে সকà§à¦·à¦® নয়" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "অনà§à¦®à§‹à¦¦à¦¨ ঘটিত সমসà§à¦¯à¦¾" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "গোষà§à¦ ীটি পূরà§à¦¬ থেকেই বিদà§à¦¯à¦®à¦¾à¦¨" @@ -46,10 +55,6 @@ msgstr "ই-মেইলটি সঠিক নয়" msgid "Unable to delete group" msgstr "গোষà§à¦ ী মà§à¦›à§‡ ফেলা সমà§à¦à¦¬ হলো না " -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "অনà§à¦®à§‹à¦¦à¦¨ ঘটিত সমসà§à¦¯à¦¾" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦•à¦¾à¦°à§€ মà§à¦›à§‡ ফেলা সমà§à¦à¦¬ হলো না " @@ -112,7 +117,7 @@ msgstr "সমসà§à¦¯à¦¾" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "সংরকà§à¦·à¦£ করা হচà§à¦›à§‡.." @@ -189,67 +194,83 @@ msgstr "অà§à¦¯à¦¾à¦¨à§à¦¡à§à¦°à§Ÿà§‡à¦¡ কà§à¦²à¦¾à§Ÿà§‡à¦¨à§à¦Ÿ ডা msgid "Download iOS Client" msgstr "iOS কà§à¦²à¦¾à§Ÿà§‡à¦¨à§à¦Ÿ ডাউনলোড করà§à¦¨" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "কূটশবà§à¦¦" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "আপনার কূটশবà§à¦¦à¦Ÿà¦¿ পরিবরà§à¦¤à¦¨ করা হয়েছে " -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "আপনার কূটশবà§à¦¦à¦Ÿà¦¿ পরিবরà§à¦¤à¦¨ করতে সকà§à¦·à¦® নয়" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "বরà§à¦¤à¦®à¦¾à¦¨ কূটশবà§à¦¦" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "নতà§à¦¨ কূটশবà§à¦¦" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "কূটশবà§à¦¦ পরিবরà§à¦¤à¦¨ করà§à¦¨" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "ই-মেইল " -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "আপনার ই-মেইল ঠিকানা" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "কূটশবà§à¦¦ পূনরূদà§à¦§à¦¾à¦° সকà§à¦°à¦¿à§Ÿ করার জনà§à¦¯ ই-মেইল ঠিকানাটি পূরণ করà§à¦¨" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "à¦à¦¾à¦·à¦¾" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "অনà§à¦¬à¦¾à¦¦ করতে সহায়তা করà§à¦¨" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "আপনার ownCloud ঠসংযà§à¦•à§à¦¤ হতে à¦à¦‡ ঠিকানাটি আপনার ফাইল বà§à¦¯à¦¬à¦¸à§à¦¥à¦¾à¦ªà¦•à§‡ বà§à¦¯à¦¬à¦¹à¦¾à¦° করà§à¦¨" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "à¦à¦¾à¦°à§à¦¸à¦¨" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -283,10 +304,6 @@ msgstr "অসীম" msgid "Other" msgstr "অনà§à¦¯à¦¾à¦¨à§à¦¯" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "গোষà§à¦ ী পà§à¦°à¦¶à¦¾à¦¸à¦•" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 2f79910e8158f8eced6d8d4cccb92ed0e05e1254..b39dcc30cbc3fc44d190cd9d42eaa1176acc8337 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,8 +213,8 @@ msgid "Use TLS" msgstr "TLS বà§à¦¯à¦¬à¦¹à¦¾à¦° কর" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "SSL সংযোগের জনà§à¦¯ à¦à¦Ÿà¦¿ বà§à¦¯à¦¬à¦¹à¦¾à¦° করবেন না, তাহলে বà§à¦¯à¦°à§à¦¥ হবেনই।" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 4c045d1fe1e7e1a8d84f141ea8230655923d28ea..10f01f6ce3554aaf90f6cfbd28c93ddd012e772d 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "No voleu afegir cap categoria?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Aquesta categoria ja existeix:" +#, php-format +msgid "This category already exists: %s" +msgstr "Aquesta categoria ja existeix: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Arranjament" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "avui" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "ahir" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "el mes passat" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "l'any passat" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "anys enrere" @@ -469,7 +470,7 @@ msgstr "Edita les categories" msgid "Add" msgstr "Afegeix" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "AvÃs de seguretat" @@ -479,71 +480,75 @@ msgid "" "OpenSSL extension." msgstr "No està disponible el generador de nombres aleatoris segurs, habiliteu l'extensió de PHP OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sense un generador de nombres aleatoris segurs un atacant podria predir els senyals per restablir la contrasenya i prendre-us el compte." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "La carpeta de dades i els fitxers provablement són accessibles des d'internet. El fitxer .htaccess que proporciona ownCloud no funciona. Us recomanem que configureu el vostre servidor web de manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de la carpeta arrel del servidor web." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Crea un <strong>compte d'administrador</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Carpeta de dades" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configura la base de dades" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "s'usarà " -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuari de la base de dades" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Contrasenya de la base de dades" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nom de la base de dades" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Espai de taula de la base de dades" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Ordinador central de la base de dades" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Acaba la configuració" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "controleu els vostres serveis web" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Surt" @@ -565,14 +570,18 @@ msgstr "Canvieu la contrasenya de nou per assegurar el vostre compte." msgid "Lost your password?" msgstr "Heu perdut la contrasenya?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "recorda'm" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Inici de sessió" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "Acreditacions alternatives" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 758bde167aeb0ff22bd6ab8f4f51e1706d38b1bc..eb952e6f7c26284e041f56d46b031cbfe815d74c 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 08:40+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -24,46 +24,60 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "El fitxer s'ha pujat correctament" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "L’arxiu que voleu carregar supera el mà xim definit en la directiva upload_max_filesize del php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha pujat parcialment" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "El fitxer no s'ha pujat" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "S'ha perdut un fitxer temporal" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "No hi ha prou espai disponible" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directori no và lid." @@ -75,11 +89,15 @@ msgstr "Fitxers" msgid "Unshare" msgstr "Deixa de compartir" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "Esborra permanentment" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Suprimeix" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Reanomena" @@ -184,31 +202,31 @@ msgstr "La URL no pot ser buida" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de carpeta no và lid. L'ús de 'Shared' està reservat per Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Mida" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fitxers" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index c5cc2dc2b4acc8088b466b7c479de4bc778adff3..481b00ceee933a1ad7a3c7c6c41a4ebf86df5589 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 07:20+0000\n" +"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,15 +47,15 @@ msgstr "Encriptatge" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "L'encriptació de fitxers està activada." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Els tipus de fitxers següents no s'encriptaran:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Exclou els tipus de fitxers següents de l'encriptatge:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 3bb530ebc63a7c02c7da2badf4e1e25bf7ae21b1..4c5e094e6d50e3ecd65dfb77a99981ff0858aa71 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 15: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,31 +18,45 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "No s'ha pogut esborrar permanentment %s" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "No s'ha pogut restaurar %s" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "executa l'operació de restauració" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "esborra el fitxer permanentment" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Eliminat" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 carpeta" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} carpetes" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fitxer" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fitxers" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 0db50601e4c71c660a8574315a0bda62cd523863..43021a3304d59e3145437551a121521a8219842f 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -4,14 +4,15 @@ # # Translators: # <josep_tomas@hotmail.com>, 2012. +# <rcalvoi@yahoo.com>, 2013. # <rcalvoi@yahoo.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 15:40+0000\n" +"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,10 +20,45 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "No s'ha pogut revertir: %s" + +#: history.php:40 +msgid "success" +msgstr "èxit" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "El fitxer %s s'ha revertit a la versió %s" + +#: history.php:49 +msgid "failure" +msgstr "fallada" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "El fitxer %s no s'ha pogut revertir a la versió %s" + +#: history.php:68 +msgid "No old versions available" +msgstr "No hi ha versións antigues disponibles" + +#: history.php:73 +msgid "No path specified" +msgstr "No heu especificat el camÃ" + #: js/versions.js:16 msgid "History" msgstr "Historial" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "Reverteix un fitxer a una versió anterior fent clic en el seu botó de reverteix" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Fitxers de Versions" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 4ad389d707e5b042b6360d79ae08afbd3c836f20..3234dabdadfac03f9482ab73a35d0d45a339fad4 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 16:48+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 15:20+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,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "No s'ha pogut carregar la llista des de l'App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Error d'autenticació" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "No s'ha pogut canviar el nom a mostrar" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "El grup ja existeix" @@ -51,10 +60,6 @@ msgstr "El correu electrònic no és và lid" msgid "Unable to delete group" msgstr "No es pot eliminar el grup" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Error d'autenticació" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "No es pot eliminar l'usuari" @@ -117,7 +122,7 @@ msgstr "Error" msgid "Updated" msgstr "Actualitzada" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "S'està desant..." @@ -194,67 +199,83 @@ msgstr " Baixa el client per Android" msgid "Download iOS Client" msgstr "Baixa el client per iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Contrasenya" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "La seva contrasenya s'ha canviat" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "No s'ha pogut canviar la contrasenya" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Contrasenya actual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Contrasenya nova" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostra" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Canvia la contrasenya" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nom a mostrar" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "El vostre nom a mostrar ha canviat" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "No s'ha pogut canviar el vostre nom a mostrar" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "Canvia el nom a mostrar" + +#: templates/personal.php:55 msgid "Email" msgstr "Correu electrònic" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Correu electrònic" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Ompliu el correu electrònic per activar la recuperació de contrasenya" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Useu aquesta adreça per connectar amb ownCloud des del gestor de fitxers" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versió" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -288,10 +309,6 @@ msgstr "Il·limitat" msgid "Other" msgstr "Un altre" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Nom a mostrar" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Grup Admin" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 09de26a1cc2e74d2be1c1acf7b0dcca1d1cae955..98ca278100a2935c8c294b5da9f8b7c745153a12 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 08:50+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 12:20+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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Usa TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "No ho useu en connexions SSL, fallarà ." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "No ho useu adicionalment per a conexions LDAPS, fallarà ." #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 1f2c45b65f5f99b745c82054fa51d150c573c2c1..65f55a38758d6335081dac70250008a13b49b1d6 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" -"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -54,8 +54,9 @@ msgid "No category to add?" msgstr "Žádná kategorie k pÅ™idánÃ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Tato kategorie již existuje: " +#, php-format +msgid "This category already exists: %s" +msgstr "Kategorie již existuje: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -159,59 +160,59 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "NastavenÃ" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "pÅ™ed pár vteÅ™inami" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "pÅ™ed minutou" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "pÅ™ed {minutes} minutami" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "pÅ™ed hodinou" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "pÅ™ed {hours} hodinami" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "dnes" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "vÄera" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "pÅ™ed {days} dny" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "minulý mesÃc" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "pÅ™ed {months} mÄ›sÃci" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "pÅ™ed mÄ›sÃci" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "minulý rok" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "pÅ™ed lety" @@ -470,7 +471,7 @@ msgstr "Upravit kategorie" msgid "Add" msgstr "PÅ™idat" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "BezpeÄnostnà upozornÄ›nÃ" @@ -480,71 +481,75 @@ msgid "" "OpenSSL extension." msgstr "Nenà dostupný žádný bezpeÄný generátor náhodných ÄÃsel. Povolte, prosÃm, rozÅ¡ÃÅ™enà OpenSSL v PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Bez bezpeÄného generátoru náhodných ÄÃsel může útoÄnÃk pÅ™edpovÄ›dÄ›t token pro obnovu hesla a pÅ™evzÃt kontrolu nad VaÅ¡Ãm úÄtem." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Váš adresář dat a vÅ¡echny VaÅ¡e soubory jsou pravdÄ›podobnÄ› pÅ™Ãstupné z internetu. Soubor .htaccess, který je poskytován ownCloud, nefunguje. DůraznÄ› Vám doporuÄujeme nastavit váš webový server tak, aby nebyl adresář dat pÅ™Ãstupný, nebo pÅ™esunout adresář dat mimo koÅ™enovou složku dokumentů webového serveru." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "VytvoÅ™it <strong>úÄet správce</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "PokroÄilé" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Složka s daty" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Nastavit databázi" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "bude použito" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "DokonÄit nastavenÃ" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "webové služby pod VaÅ¡Ã kontrolou" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Odhlásit se" @@ -566,14 +571,18 @@ msgstr "Změňte, prosÃm, své heslo pro opÄ›tovné zabezpeÄenà VaÅ¡eho úÄt msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "zapamatovat si" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "PÅ™ihlásit" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "Alternativnà pÅ™ihlášenÃ" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "pÅ™edchozÃ" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 36e541de84c1d460b70766ee403e0c113215f013..16812c71df73aff5996abf4b4dc9d0629f2143d3 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:40+0000\n" -"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -20,46 +20,60 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Soubor nebyl odeslán. Neznámá chyba" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšnÄ›" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "OdesÃlaný soubor pÅ™esahuje velikost upload_max_filesize povolenou v php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Odeslaný soubor pÅ™esáhl svou velikostà parametr MAX_FILE_SIZE specifikovaný v formuláři HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze ÄásteÄnÄ›" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Chybà adresář pro doÄasné soubory" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Nedostatek dostupného mÃsta" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Neplatný adresář" @@ -71,11 +85,15 @@ msgstr "Soubory" msgid "Unshare" msgstr "ZruÅ¡it sdÃlenÃ" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "Trvale odstranit" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Smazat" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "PÅ™ejmenovat" @@ -180,31 +198,31 @@ msgstr "URL nemůže být prázdná" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neplatný název složky. Použità 'Shared' je rezervováno pro vnitÅ™nà potÅ™eby Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Název" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Velikost" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ZmÄ›nÄ›no" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 složka" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 soubor" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} soubory" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 2df7a8af809333f419a542d2bef7f88c78096364..ea06c00d305bc6263d0497bfab3bb7dc3121617c 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 09:51+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,15 +47,15 @@ msgstr "Å ifrovánÃ" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Å ifrovánà je povoleno." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "NásledujÃcà typy souborů nebudou Å¡ifrovány:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Vyjmout následujÃcà typy souborů ze Å¡ifrovánÃ:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 29c424b5de763ed708bb1ee72fb7c0b2fbc16821..5055b3473391f614b04ce4415e81dcee51ad9ca3 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 06:40+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,31 +18,45 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "Nelze trvale odstranit %s" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "Nelze obnovit %s" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "provést obnovu" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "trvale odstranit soubor" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Název" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Smazáno" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 složka" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} složky" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 soubor" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} soubory" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 3e62a18ee409eca29eb2d971c5e8dbe5806206c2..928ac501c8a54cf8b7082e5a484ecbbf4e6a3481 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -4,14 +4,14 @@ # # 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: 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" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 06:40+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,10 +19,45 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "Nelze navrátit: %s" + +#: history.php:40 +msgid "success" +msgstr "úspÄ›ch" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "Soubor %s byl navrácen na verzi %s" + +#: history.php:49 +msgid "failure" +msgstr "sehlhánÃ" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "Soubor %s nemohl být navrácen na verzi %s" + +#: history.php:68 +msgid "No old versions available" +msgstr "Nejsou dostupné žádné starÅ¡Ã verze" + +#: history.php:73 +msgid "No path specified" +msgstr "Nezadána cesta" + #: js/versions.js:16 msgid "History" msgstr "Historie" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "NavraÅ¥te soubor do pÅ™edchozà verze kliknutÃm na tlaÄÃtko navrátit" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Verzovánà souborů" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index c232c3b36df6af1c2f1c83d521bb99021db7fee9..edfcef8add0158ff69a6993554d2b79df3a9c7eb 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 08:10+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 12:41+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" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nelze naÄÃst seznam z App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Chyba ověřenÃ" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "Nelze zmÄ›nit zobrazované jméno" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Skupina již existuje" @@ -51,10 +60,6 @@ msgstr "Neplatný e-mail" msgid "Unable to delete group" msgstr "Nelze smazat skupinu" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Chyba ověřenÃ" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nelze smazat uživatele" @@ -117,7 +122,7 @@ msgstr "Chyba" msgid "Updated" msgstr "Aktualizováno" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Ukládám..." @@ -194,67 +199,83 @@ msgstr "Stáhnout klienta pro android" msgid "Download iOS Client" msgstr "Stáhnout klienta pro iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Heslo" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "VaÅ¡e heslo bylo zmÄ›nÄ›no" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "VaÅ¡e heslo nelze zmÄ›nit" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "SouÄasné heslo" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "zobrazit" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "ZmÄ›nit heslo" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Zobrazované jméno" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "VaÅ¡e zobrazované jméno bylo zmÄ›nÄ›no" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "Nelze zmÄ›nit vaÅ¡e zobrazované jméno" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "ZmÄ›nit zobrazované jméno" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "VaÅ¡e e-mailová adresa" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Pro povolenà zmÄ›ny hesla vyplňte adresu e-mailu" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Pomoci s pÅ™ekladem" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použijte tuto adresu pro pÅ™ipojenà k vaÅ¡emu ownCloud skrze správce souborů" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Verze" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -288,10 +309,6 @@ msgstr "NeomezenÄ›" msgid "Other" msgstr "Jiná" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Zobrazované jméno" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Správa skupiny" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 9ef32071e27b1ca65e4a05f19829de69ee0ec925..8e0892a688bc4a38abca90d64d4fcf1e08dcf03a 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 07:40+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 06:40+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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "PoužÃt TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "NepoužÃvejte pro pÅ™ipojenà pomocà SSL, pÅ™ipojenà selže." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "NepoužÃvejte pro spojenà LDAP, selže." #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/da/core.po b/l10n/da/core.po index d3a5c7d2f984b2fc6db4156412decfcbd4c13c08..7ac480d339f9fc3059dec07f63dc1e300beec017 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -59,8 +59,9 @@ msgid "No category to add?" msgstr "Ingen kategori at tilføje?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Denne kategori eksisterer allerede: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -164,59 +165,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "i dag" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "i gÃ¥r" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "sidste mÃ¥ned" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} mÃ¥neder siden" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "mÃ¥neder siden" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "sidste Ã¥r" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "Ã¥r siden" @@ -475,7 +476,7 @@ msgstr "Rediger kategorier" msgid "Add" msgstr "Tilføj" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Sikkerhedsadvarsel" @@ -485,71 +486,75 @@ msgid "" "OpenSSL extension." msgstr "Ingen sikker tilfældighedsgenerator til tal er tilgængelig. Aktiver venligst OpenSSL udvidelsen." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Uden en sikker tilfældighedsgenerator til tal kan en angriber mÃ¥ske gætte dit gendan kodeord og overtage din konto" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen som ownCloud leverer virker ikke. Vi anbefaler pÃ¥ det kraftigste at du konfigurerer din webserver pÃ¥ en mÃ¥ske sÃ¥ data mappen ikke længere er tilgængelig eller at du flytter data mappen uden for webserverens dokument rod. " +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Opret en <strong>administratorkonto</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avanceret" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "vil blive brugt" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasebruger" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Databasekodeord" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Navn pÃ¥ database" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Database tabelplads" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Databasehost" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Afslut opsætning" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Webtjenester under din kontrol" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Log ud" @@ -571,14 +576,18 @@ msgstr "Skift adgangskode for at sikre din konto igen." msgid "Lost your password?" msgstr "Mistet dit kodeord?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "husk" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Log ind" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "forrige" diff --git a/l10n/da/files.po b/l10n/da/files.po index 2768aaf44903f7666222d2ef779d9176ace5f785..faeb92854c3e5145a17555df377d5dcc4fab3fd1 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.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-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -25,46 +25,60 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Der er ingen fejl, filen blev uploadet med success" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Den uploadede file blev kun delvist uploadet" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ingen fil blev uploadet" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -76,11 +90,15 @@ msgstr "Filer" msgid "Unshare" msgstr "Fjern deling" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slet" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Omdøb" @@ -185,31 +203,31 @@ msgstr "URLen kan ikke være tom." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Størrelse" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Ændret" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fil" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 34a7ae71319fa54bfc365219f4d212c1b349c71d..107b90ea909d9cce3bfad0c362b05ccfa53aa4e6 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Navn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mappe" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mapper" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fil" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index 847d3bda8aae6e450e04d65f74af96f914ad4b2a..6ae8e6b45e657b50c7237252f99fa985f9a318e6 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -19,10 +19,45 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historik" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionering af filer" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 297100e94e23b9e220a3cb79e957d632a01f43f4..b2be1f63796a8e7ff3724338fe1db6fa0d2a7e73 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -31,6 +31,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Kunne ikke indlæse listen fra App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Adgangsfejl" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Gruppen findes allerede" @@ -55,10 +64,6 @@ msgstr "Ugyldig email adresse" msgid "Unable to delete group" msgstr "Gruppen kan ikke slettes" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Adgangsfejl" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Bruger kan ikke slettes" @@ -121,7 +126,7 @@ msgstr "Fejl" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Gemmer..." @@ -198,67 +203,83 @@ msgstr "Hent Android Klient" msgid "Download iOS Client" msgstr "Hent iOS Klient" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Kodeord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Din adgangskode blev ændret" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ude af stand til at ændre dit kodeord" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Nuværende adgangskode" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Ny adgangskode" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "vis" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Skift kodeord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Din emailadresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Indtast en emailadresse for at kunne fÃ¥ pÃ¥mindelse om adgangskode" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Sprog" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hjælp med oversættelsen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -292,10 +313,6 @@ msgstr "Ubegrænset" msgid "Other" msgstr "Andet" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Gruppe Administrator" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 63c885ecaa7dd69d05774972fd5d2e61a964bb1b..31ec98eaba9d59c1440dc16d9d9e77ca9fec55f7 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -218,8 +218,8 @@ msgid "Use TLS" msgstr "Brug TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Brug ikke til SSL forbindelser, da den vil fejle." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/de/core.po b/l10n/de/core.po index b46bf407176784813762d38d8ccff20f67a5471a..eb62f53acad055d39a6ed2a3edf400715d9cf100 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 00:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -66,8 +66,9 @@ msgid "No category to add?" msgstr "Keine Kategorie hinzuzufügen?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Kategorie existiert bereits:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -171,59 +172,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "Heute" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "Gestern" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "Vor Jahren" @@ -482,7 +483,7 @@ msgstr "Kategorien bearbeiten" msgid "Add" msgstr "Hinzufügen" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Sicherheitswarnung" @@ -492,71 +493,75 @@ msgid "" "OpenSSL extension." msgstr "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktiviere die PHP-Erweiterung für OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Konten zu übernehmen." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Dein Datenverzeichnis und deine Datein sind vielleicht vom Internet aus erreichbar. Die .htaccess Datei, die ownCloud verwendet, arbeitet nicht richtig. Wir schlagen Dir dringend vor, dass du deinen Webserver so konfigurierst, dass das Datenverzeichnis nicht länger erreichbar ist oder, dass du dein Datenverzeichnis aus dem Dokumenten-root des Webservers bewegst." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "<strong>Administrator-Konto</strong> anlegen" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Fortgeschritten" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Abmelden" @@ -578,14 +583,18 @@ msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen." msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "merken" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Einloggen" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Zurück" diff --git a/l10n/de/files.po b/l10n/de/files.po index 06930bfca5ca5d51f7413ecc597af3d2fc6ca00d..a016e0c1074269d5d7f2086d267d21a382730c56 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 00:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -38,46 +38,60 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Datei fehlerfrei hochgeladen." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Temporärer Ordner fehlt." -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Nicht genug Speicherplatz verfügbar" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -89,11 +103,15 @@ msgstr "Dateien" msgid "Unshare" msgstr "Nicht mehr freigeben" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Löschen" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Umbenennen" @@ -198,31 +216,31 @@ msgstr "Die URL darf nicht leer sein." 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:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 Datei" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index ae8505b00e45eada8480f7734b270fbab4c49d79..b9692802ff3e76f7e23febf018090115c35d46f0 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -19,31 +19,45 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Wiederherstellung ausführen" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Name" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "gelöscht" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 Ordner" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} Ordner" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 Datei" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index a3e251c142ca53964db0e58021fa6000f3cd90ee..e969e096065dcc47208235c4b4245d44861adb44 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.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-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -22,10 +22,45 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historie" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Dateiversionierung" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 25f769704b02e1810061a0536bd323e2ccb79418..701892688ca0390dc0550340ad002a32eaa99daa 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -40,6 +40,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Fehler bei der Anmeldung" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Gruppe existiert bereits" @@ -64,10 +73,6 @@ msgstr "Ungültige E-Mail Adresse" msgid "Unable to delete group" msgstr "Gruppe konnte nicht gelöscht werden" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Fehler bei der Anmeldung" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Benutzer konnte nicht gelöscht werden" @@ -130,7 +135,7 @@ msgstr "Fehler" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Speichern..." @@ -207,67 +212,83 @@ msgstr "Android-Client herunterladen" msgid "Download iOS Client" msgstr "iOS-Client herunterladen" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passwort" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Dein Passwort wurde geändert." -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Passwort konnte nicht geändert werden" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "zeigen" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Anzeigename" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Deine E-Mail-Adresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Sprache" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hilf bei der Ãœbersetzung" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -301,10 +322,6 @@ msgstr "Unbegrenzt" msgid "Other" msgstr "Andere" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Anzeigename" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Gruppenadministrator" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index ff8dbae3048d680f64fa27adbc8e0971c4cf0036..e247c006708f41759921299f4a8ac96970c74066 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -222,8 +222,8 @@ msgid "Use TLS" msgstr "Nutze TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Verwende dies nicht für SSL-Verbindungen, es wird fehlschlagen." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 9ec9f4bed29ca0a347fbd6d49ea013f5823bb7ba..c67c4205fbf72d16ddbec45c1e2064911d1dd4fd 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,14 +18,15 @@ # <niko@nik-o-mat.de>, 2012. # Phi Lieb <>, 2012. # <Steve_Reichert@gmx.de>, 2013. +# Susi <>, 2013. # <thomas.mueller@tmit.eu>, 2012. # <transifex.3.mensaje@spamgourmet.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -67,8 +68,9 @@ msgid "No category to add?" msgstr "Keine Kategorie hinzuzufügen?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Kategorie existiert bereits:" +#, php-format +msgid "This category already exists: %s" +msgstr "Die Kategorie '%s' existiert bereits." #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -172,59 +174,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "Heute" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "Gestern" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "Vor Jahren" @@ -483,7 +485,7 @@ msgstr "Kategorien bearbeiten" msgid "Add" msgstr "Hinzufügen" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Sicherheitshinweis" @@ -493,71 +495,75 @@ msgid "" "OpenSSL extension." msgstr "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage, die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Ihr Konto zu übernehmen." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Internet erreichbar. Die von ownCloud bereitgestellte .htaccess Datei funktioniert nicht. Wir empfehlen Ihnen dringend, Ihren Webserver so zu konfigurieren, dass das Datenverzeichnis nicht mehr über das Internet erreichbar ist. Alternativ können Sie auch das Datenverzeichnis aus dem Dokumentenverzeichnis des Webservers verschieben." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "<strong>Administrator-Konto</strong> anlegen" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Fortgeschritten" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Abmelden" @@ -579,14 +585,18 @@ msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "merken" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Einloggen" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "Alternative Logins" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Zurück" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 474d7e5ab28a975f22cdc0fa5ed3bff687b680d6..4ff85767805182ae5a798b5d58016129efaf2c1a 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -22,6 +22,7 @@ # Phi Lieb <>, 2012. # Phillip Schichtel <quick_wango@code-infection.de>, 2013. # <Steve_Reichert@gmx.de>, 2013. +# Susi <>, 2013. # <thomas.mueller@tmit.eu>, 2012. # Thomas Müller <>, 2012. # <transifex.3.mensaje@spamgourmet.com>, 2012. @@ -29,9 +30,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 19:21+0000\n" -"Last-Translator: quick_wango <quick_wango@code-infection.de>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -39,46 +40,60 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Der temporäre Ordner fehlt." -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Nicht genügend Speicherplatz verfügbar" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -90,11 +105,15 @@ msgstr "Dateien" msgid "Unshare" msgstr "Nicht mehr freigeben" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "Entgültig löschen" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Löschen" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Umbenennen" @@ -199,31 +218,31 @@ msgstr "Die URL darf nicht leer sein." 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:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 Datei" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index 8d49245d9f5597250bafb524345b28bf3a5d6f53..af3fe444bfe03f975631e173e4d4cc8207df42a4 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -8,13 +8,14 @@ # <driz@i2pmail.org>, 2012. # Marc-Andre Husyk <member@wue.de>, 2013. # Marcel Kühlhorn <susefan93@gmx.de>, 2013. +# Susi <>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 08:20+0000\n" +"Last-Translator: Susi <>\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" @@ -50,15 +51,15 @@ msgstr "Verschlüsselung" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Datei-Verschlüsselung ist aktiviert" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Die folgenden Datei-Typen werden nicht verschlüsselt:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Die folgenden Datei-Typen von der Verschlüsselung ausnehmen:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index f08dcbd00430a6b517d02bdd980407a3c4ac312b..755e0968dbdaa66bfecb62494c2dbea9b6741102 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -5,12 +5,13 @@ # Translators: # I Robot <owncloud-bot@tmit.eu>, 2013. # Phillip Schichtel <quick_wango@code-infection.de>, 2013. +# Susi <>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -19,31 +20,45 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Führe die Wiederherstellung aus" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "Datei entgültig löschen" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Name" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Gelöscht" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 Ordner" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} Ordner" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 Datei" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index bef0ee6b762dd1a12306d53b8a568eb029144a36..e6c6d61cb214d53d7971f045aaee064be0d5a35f 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -6,15 +6,16 @@ # <blobbyjj@ymail.com>, 2012. # I Robot <thomas.mueller@tmit.eu>, 2012. # <mail@felixmoeller.de>, 2012. +# <niko@nik-o-mat.de>, 2013. # <niko@nik-o-mat.de>, 2012. # <thomas.mueller@tmit.eu>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 12:20+0000\n" +"Last-Translator: JamFX <niko@nik-o-mat.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" @@ -22,10 +23,45 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "Erfolgreich" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "Fehlgeschlagen" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "keine älteren Versionen verfügbar" + +#: history.php:73 +msgid "No path specified" +msgstr "Kein Pfad angegeben" + #: js/versions.js:16 msgid "History" msgstr "Historie" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Dateiversionierung" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index ffbcc368ff6f90ceaeaa13d5811daed74b50768c..e198138298e6b021812954f8f3af54b07f380d62 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -20,6 +20,7 @@ # Phillip Schichtel <quick_wango@code-infection.de>, 2013. # <seeed@freenet.de>, 2012. # <stefan.niedermann@googlemail.com>, 2013. +# Susi <>, 2013. # <thomas.mueller@tmit.eu>, 2012. # <transifex-2.7.mensaje@spamgourmet.com>, 2012. # <transifex.3.mensaje@spamgourmet.com>, 2012. @@ -28,9 +29,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 00:10+0000\n" -"Last-Translator: Lukas Reschke <lukas@statuscode.ch>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 08:10+0000\n" +"Last-Translator: Susi <>\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" @@ -42,6 +43,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Fehler bei der Anmeldung" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "Das Ändern des Anzeigenamens ist nicht möglich" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Die Gruppe existiert bereits" @@ -66,10 +76,6 @@ msgstr "Ungültige E-Mail-Adresse" msgid "Unable to delete group" msgstr "Die Gruppe konnte nicht gelöscht werden" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Fehler bei der Anmeldung" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Der Benutzer konnte nicht gelöscht werden" @@ -132,7 +138,7 @@ msgstr "Fehler" msgid "Updated" msgstr "Geupdated" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Speichern..." @@ -209,67 +215,83 @@ msgstr "Android-Client herunterladen" msgid "Download iOS Client" msgstr "iOS-Client herunterladen" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passwort" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ihr Passwort wurde geändert." -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "zeigen" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Anzeigename" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "Dein Anzeigename wurde geändert" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "Das Ändern deines Anzeigenamens ist nicht möglich" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "Anzeigenamen ändern" + +#: templates/personal.php:55 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Sprache" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Helfen Sie bei der Ãœbersetzung" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -303,10 +325,6 @@ msgstr "Unbegrenzt" msgid "Other" msgstr "Andere" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Anzeigename" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Gruppenadministrator" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 663cfdb1af7773954e352c3f7470906458d53690..0633de147c97334ec567abdab10676120826eeb6 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.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-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 13:50+0000\n" -"Last-Translator: Susi <>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -224,8 +224,8 @@ msgid "Use TLS" msgstr "Nutze TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Verwenden Sie dies nicht für SSL-Verbindungen, es wird fehlschlagen." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/el/core.po b/l10n/el/core.po index 1f2543369b0b6c5ac1717f02f034186f2f57bd62..6947ca9a5cfde613b31757e5570dd58955f33a21 100644 --- a/l10n/el/core.po +++ b/l10n/el/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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -58,8 +58,9 @@ msgid "No category to add?" msgstr "Δεν Îχετε κατηγοÏία να Ï€ÏοσθÎσετε;" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Αυτή η κατηγοÏία υπάÏχει ήδη:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -163,59 +164,59 @@ msgstr "ÎοÎμβÏιος" msgid "December" msgstr "ΔεκÎμβÏιος" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "δευτεÏόλεπτα Ï€Ïιν" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 λεπτό Ï€Ïιν" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά Ï€Ïιν" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 ÏŽÏα Ï€Ïιν" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} ÏŽÏες Ï€Ïιν" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "σήμεÏα" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "χτες" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} ημÎÏες Ï€Ïιν" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} μήνες Ï€Ïιν" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "μήνες Ï€Ïιν" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "τελευταίο χÏόνο" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "χÏόνια Ï€Ïιν" @@ -474,7 +475,7 @@ msgstr "ΕπεξεÏγασία κατηγοÏιών" msgid "Add" msgstr "Î Ïοσθήκη" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Î Ïοειδοποίηση Ασφαλείας" @@ -484,71 +485,75 @@ msgid "" "OpenSSL extension." msgstr "Δεν είναι διαθÎσιμο το Ï€Ïόσθετο δημιουÏγίας τυχαίων αÏιθμών ασφαλείας, παÏακαλώ ενεÏγοποιήστε το Ï€Ïόσθετο της PHP, OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "ΧωÏίς το Ï€Ïόσθετο δημιουÏγίας τυχαίων αÏιθμών ασφαλείας, μποÏεί να διαÏÏεÏσει ο λογαÏιασμός σας από επιθÎσεις στο διαδίκτυο." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Ο κατάλογος data και τα αÏχεία σας πιθανόν να είναι διαθÎσιμα στο διαδίκτυο. Το αÏχείο .htaccess που παÏÎχει το ownCloud δεν δουλεÏει. Σας Ï€Ïοτείνουμε ανεπιφÏλακτα να Ïυθμίσετε το διακομιστή σας με Ï„Îτοιο Ï„Ïόπο ώστε ο κατάλογος data να μην είναι πλÎον Ï€Ïοσβάσιμος ή να μετακινήσετε τον κατάλογο data Îξω από τον κατάλογο του διακομιστή." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "ΔημιουÏγήστε Îναν <strong>λογαÏιασμό διαχειÏιστή</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Για Ï€ÏοχωÏημÎνους" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Φάκελος δεδομÎνων" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ΡÏθμιση της βάσης δεδομÎνων" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "θα χÏησιμοποιηθοÏν" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ΧÏήστης της βάσης δεδομÎνων" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Συνθηματικό βάσης δεδομÎνων" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Όνομα βάσης δεδομÎνων" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Κενά Πινάκων Βάσης ΔεδομÎνων" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Διακομιστής βάσης δεδομÎνων" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ΟλοκλήÏωση εγκατάστασης" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ΥπηÏεσίες web υπό τον Îλεγχό σας" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "ΑποσÏνδεση" @@ -570,14 +575,18 @@ msgstr "ΠαÏακαλώ αλλάξτε το συνθηματικό σας γι msgid "Lost your password?" msgstr "Ξεχάσατε το συνθηματικό σας;" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "απομνημόνευση" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Είσοδος" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Ï€ÏοηγοÏμενο" diff --git a/l10n/el/files.po b/l10n/el/files.po index 233012d37cb99edcbb681a809b8874219886e51d..8466d5bc77a090b0bf6b75641c2a06e92e50f000 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.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-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -25,46 +25,60 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανÎβηκε κάποιο αÏχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάÏχει σφάλμα, το αÏχείο εστάλει επιτυχώς" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το απεσταλμÎνο αÏχείο ξεπεÏνά την οδηγία upload_max_filesize στο php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το αÏχείο υπεÏβαίνει την οδηγία μÎγιστου επιτÏÎµÏ€Ï„Î¿Ï Î¼ÎµÎ³Îθους \"MAX_FILE_SIZE\" που Îχει οÏιστεί στην HTML φόÏμα" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Το αÏχείο εστάλει μόνο εν μÎÏει" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ΚανÎνα αÏχείο δεν στάλθηκε" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Λείπει ο Ï€ÏοσωÏινός φάκελος" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Αποτυχία εγγÏαφής στο δίσκο" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Δεν υπάÏχει αÏκετός διαθÎσιμος χώÏος" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Μη ÎγκυÏος φάκελος." @@ -76,11 +90,15 @@ msgstr "ΑÏχεία" msgid "Unshare" msgstr "Διακοπή κοινής χÏήσης" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ΔιαγÏαφή" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Μετονομασία" @@ -185,31 +203,31 @@ msgstr "Η URL δεν Ï€ÏÎπει να είναι κενή." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Μη ÎγκυÏο όνομα φακÎλου. Η χÏήση του 'ΚοινόχÏηστος' χÏησιμοποιείται από ο Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Όνομα" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "ÎœÎγεθος" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ΤÏοποποιήθηκε" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 αÏχείο" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} αÏχεία" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index e29ec4d6caf99374d30c66edf5998d33e69bda56..27cd5e21b4cad14ee7af697e6e283ac62fc7dbb6 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Όνομα" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 φάκελος" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 αÏχείο" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} αÏχεία" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index 3812c4bda0dff0ad4cd283c85e286926b9b58b56..7f82eaf81c7b05755ab6e2f2dae18429d7c32875 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -20,10 +20,45 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ΙστοÏικό" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Εκδόσεις ΑÏχείων" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index ffd6028e9c161bd445b1987916477d5b3718ff4d..c6c5dfb10f04503431fa9c8f81d9237ddd87e98d 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -33,6 +33,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Σφάλμα στην φόÏτωση της λίστας από το App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Σφάλμα πιστοποίησης" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Η ομάδα υπάÏχει ήδη" @@ -57,10 +66,6 @@ msgstr "Μη ÎγκυÏο email" msgid "Unable to delete group" msgstr "Αδυναμία διαγÏαφής ομάδας" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Σφάλμα πιστοποίησης" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Αδυναμία διαγÏαφής χÏήστη" @@ -123,7 +128,7 @@ msgstr "Σφάλμα" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Αποθήκευση..." @@ -200,67 +205,83 @@ msgstr "Λήψη Î ÏογÏάμματος Android" msgid "Download iOS Client" msgstr "Λήψη Î ÏογÏάμματος iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Συνθηματικό" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Το συνθηματικό σας Îχει αλλάξει" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Δεν ήταν δυνατή η αλλαγή του ÎºÏ‰Î´Î¹ÎºÎ¿Ï Ï€Ïόσβασης" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ΤÏÎχων συνθηματικό" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ÎÎο συνθηματικό" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "εμφάνιση" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Αλλαγή συνθηματικοÏ" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Η διεÏθυνση ηλεκτÏÎ¿Î½Î¹ÎºÎ¿Ï Ï„Î±Ï‡Ï…Î´Ïομείου σας" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "ΣυμπληÏώστε μια διεÏθυνση ηλεκτÏÎ¿Î½Î¹ÎºÎ¿Ï Ï„Î±Ï‡Ï…Î´Ïομείου για να ενεÏγοποιηθεί η ανάκτηση συνθηματικοÏ" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Γλώσσα" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Βοηθήστε στη μετάφÏαση" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ΧÏήση αυτής της διεÏθυνσης για σÏνδεση στο ownCloud με τον διαχειÏιστή αÏχείων σας" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Έκδοση" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -294,10 +315,6 @@ msgstr "ΑπεÏιόÏιστο" msgid "Other" msgstr "Άλλα" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Ομάδα ΔιαχειÏιστών" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 0bc933973eabb38f947fb2a426e155eeb8790c86..972b0601dfa0167c8a6fd0fb77e9bfe48218472b 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -218,8 +218,8 @@ msgid "Use TLS" msgstr "ΧÏήση TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Μην χÏησιμοποιείτε για συνδÎσεις SSL, θα αποτÏχει." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index f9f3c0cd8f2362aab0631212263479b543bd5001..15f0635aa271c55255ecfcb411d7f1000b1b897e 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "Ĉu neniu kategorio estas aldonota?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ĉi tiu kategorio jam ekzistas: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Agordo" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "sekundoj antaÅe" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "antaÅ 1 minuto" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "antaÅ {minutes} minutoj" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "antaÅ 1 horo" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "antaÅ {hours} horoj" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "hodiaÅ" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "hieraÅ" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "antaÅ {days} tagoj" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "lastamonate" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "antaÅ {months} monatoj" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "monatoj antaÅe" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "lastajare" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "jaroj antaÅe" @@ -469,7 +470,7 @@ msgstr "Redakti kategoriojn" msgid "Add" msgstr "Aldoni" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Sekureca averto" @@ -479,71 +480,75 @@ msgid "" "OpenSSL extension." msgstr "Ne disponeblas sekura generilo de hazardaj numeroj; bonvolu kapabligi la OpenSSL-kromaĵon por PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Krei <strong>administran konton</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Progresinta" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datuma dosierujo" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Agordi la datumbazon" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "estos uzata" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Datumbaza uzanto" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Datumbaza pasvorto" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Datumbaza nomo" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Datumbaza tabelospaco" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Datumbaza gastigo" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Fini la instalon" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "TTT-servoj sub via kontrolo" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Elsaluti" @@ -565,14 +570,18 @@ msgstr "Bonvolu ÅanÄi vian pasvorton por sekurigi vian konton ree." msgid "Lost your password?" msgstr "Ĉu vi perdis vian pasvorton?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "memori" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Ensaluti" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "maljena" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d440618513434c99433f9ccbc0c7d084f0f200c0..139cd4a827f2dd9200a377f12a411f0113f79004 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -20,46 +20,60 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alÅutiÄis. Nekonata eraro." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alÅutiÄis sukcese" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "La dosiero alÅutita superas la regulon upload_max_filesize el php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alÅutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "La alÅutita dosiero nur parte alÅutiÄis" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Neniu dosiero estas alÅutita" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Mankas tempa dosierujo" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Ne haveblas sufiĉa spaco" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Nevalida dosierujo." @@ -71,11 +85,15 @@ msgstr "Dosieroj" msgid "Unshare" msgstr "Malkunhavigi" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Forigi" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Alinomigi" @@ -180,31 +198,31 @@ msgstr "URL ne povas esti malplena." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nevalida dosierujnomo. Uzo de “Shared†rezervatas de Owncloud." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nomo" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Grando" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modifita" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} dosierujoj" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index c1491a33446c30e44f56e7792a7fcd29555fe6f8..407ed42d6da7928411417e820725918acb6473ff 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,45 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nomo" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 dosierujo" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 dosiero" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} dosierujoj" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index 53a59b49120e6dca3d64074a9ed8cc20a3beb0b6..6e7f83b9ade5682a1bb026c51661a461e9883dc3 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -18,10 +18,45 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historio" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Dosiereldonigo" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index f422c123005626d8a6ed9a1c3619b38fdfaf241e..d48c43e7b6f745c1da46385e250e041d64dbe961 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ne eblis Åargi liston el aplikaĵovendejo" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "AÅtentiga eraro" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "La grupo jam ekzistas" @@ -48,10 +57,6 @@ msgstr "Nevalida retpoÅtadreso" msgid "Unable to delete group" msgstr "Ne eblis forigi la grupon" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "AÅtentiga eraro" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ne eblis forigi la uzanton" @@ -114,7 +119,7 @@ msgstr "Eraro" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Konservante..." @@ -191,67 +196,83 @@ msgstr "ElÅuti Android-klienton" msgid "Download iOS Client" msgstr "ElÅuti iOS-klienton" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Pasvorto" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Via pasvorto ÅanÄiÄis" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ne eblis ÅanÄi vian pasvorton" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Nuna pasvorto" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova pasvorto" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "montri" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "ÅœanÄi la pasvorton" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "RetpoÅto" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Via retpoÅta adreso" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Enigu retpoÅtadreson por kapabligi pasvortan restaÅron" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Lingvo" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Helpu traduki" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Uzu ĉi tiun adreson por konekti al via ownCloud vian dosieradministrilon" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Eldono" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -285,10 +306,6 @@ msgstr "Senlima" msgid "Other" msgstr "Alia" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Grupadministranto" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 9bdab74d0f3821b758a58f634d6fb0df6457f8c4..ac325f3f01d367730bd9f5b5b60333764ea25e51 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Uzi TLS-on" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ne uzu Äin por SSL-konektoj, Äi malsukcesos." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/es/core.po b/l10n/es/core.po index ecd1cbf91762d1e2ef8bb7f7f05f40e6f8e3baf0..ff3f6b2cd572efb460904f4c69d6ace2ed7beb17 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -15,13 +15,14 @@ # Rubén Trujillo <rubentrf@gmail.com>, 2012. # <sergioballesterossolanas@gmail.com>, 2011-2012. # <sergio@entrecables.com>, 2012. +# Vladimir Martinez Sierra <vladimirmartinezsierra@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" -"Last-Translator: felix.liberio <felix.liberio@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -62,8 +63,9 @@ msgid "No category to add?" msgstr "¿Ninguna categorÃa para añadir?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Esta categorÃa ya existe: " +#, php-format +msgid "This category already exists: %s" +msgstr "Esta categoria ya existe: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -167,59 +169,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Ajustes" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "hoy" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "ayer" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "hace {days} dÃas" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "mes pasado" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "hace meses" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "año pasado" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "hace años" @@ -478,7 +480,7 @@ msgstr "Editar categorÃas" msgid "Add" msgstr "Añadir" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Advertencia de seguridad" @@ -488,71 +490,75 @@ msgid "" "OpenSSL extension." msgstr "No está disponible un generador de números aleatorios seguro, por favor habilite la extensión OpenSSL de PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sin un generador de números aleatorios seguro un atacante podrÃa predecir los tokens de reinicio de su contraseña y tomar control de su cuenta." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Su directorio de datos y sus archivos están probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no está funcionando. Sugerimos fuertemente que configure su servidor web de manera que el directorio de datos ya no esté accesible o mueva el directorio de datos fuera del documento raÃz de su servidor web." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Crea una <strong>cuenta de administrador</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "servicios web bajo tu control" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Salir" @@ -574,14 +580,18 @@ msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." msgid "Lost your password?" msgstr "¿Has perdido tu contraseña?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "recuérdame" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Entrar" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "Nombre de usuarios alternativos" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/es/files.po b/l10n/es/files.po index d5984a7cbf7e46fc4293869bfd7875503f9203ce..589961db7a0503d34cb69ef283b45b589de4701b 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 22:50+0000\n" -"Last-Translator: msvladimir <vladimirmartinezsierra@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -27,6 +27,20 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Fallo no se subió el fichero" @@ -63,8 +77,8 @@ msgid "Failed to write to disk" msgstr "La escritura en disco ha fallado" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "No hay suficiente espacio disponible" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." @@ -78,11 +92,15 @@ msgstr "Archivos" msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "Eliminar permanentemente" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eliminar" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Renombrar" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index cfd777833458477eda31393ded421789874b5a6f..b7d69adaf0207de57f4aae9cc2b00c7aa068d573 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -6,13 +6,14 @@ # Felix Liberio <felix.liberio@gmail.com>, 2013. # <juanma@kde.org.ar>, 2012. # Raul Fernandez Garcia <raulfg3@gmail.com>, 2013. +# Vladimir Martinez Sierra <vladimirmartinezsierra@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-05 23:10+0000\n" +"Last-Translator: msvladimir <vladimirmartinezsierra@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,15 +49,15 @@ msgstr "Cifrado" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "La encriptacion de archivo esta activada." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Los siguientes tipos de archivo no seran encriptados:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Excluir los siguientes tipos de archivo de la encriptacion:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 14f67707885471e63d7ca00c7adfedcbfb72bb31..7e95d500a1ba90628a7844c10014db0f95c3b4a1 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 22:40+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 00:30+0000\n" "Last-Translator: msvladimir <vladimirmartinezsierra@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,45 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "No se puede eliminar %s permanentemente" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "No se puede restaurar %s" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Restaurar" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "Eliminar archivo permanentemente" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nombre" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Eliminado" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 carpeta" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} carpetas" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 archivo" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} archivos" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 41ca2e67dad95be3051cb49025f51c8e7f9d6916..279601b80deebcd4f8e7db6a98915b284c696cfb 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -7,13 +7,14 @@ # <juanma@kde.org.ar>, 2012. # Rubén Trujillo <rubentrf@gmail.com>, 2012. # <sergio@entrecables.com>, 2012. +# Vladimir Martinez Sierra <vladimirmartinezsierra@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 00:40+0000\n" +"Last-Translator: msvladimir <vladimirmartinezsierra@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,10 +22,45 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "No se puede revertir: %s" + +#: history.php:40 +msgid "success" +msgstr "exitoso" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "El archivo %s fue revertido a la version %s" + +#: history.php:49 +msgid "failure" +msgstr "fallo" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "El archivo %s no puede ser revertido a la version %s" + +#: history.php:68 +msgid "No old versions available" +msgstr "No hay versiones antiguas disponibles" + +#: history.php:73 +msgid "No path specified" +msgstr "Ruta no especificada" + #: js/versions.js:16 msgid "History" msgstr "Historial" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "Revertir un archivo a una versión anterior haciendo clic en el boton de revertir" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionado de archivos" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 5087cce092002d9564adc8cbbcf813c8b8ce257a..ef23546dea677a6c0a030dc80ab49b5f01e34a0a 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:00+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 00:30+0000\n" "Last-Translator: msvladimir <vladimirmartinezsierra@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Imposible cargar la lista desde el App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Error de autenticación" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "Incapaz de cambiar el nombre" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "El grupo ya existe" @@ -58,10 +67,6 @@ msgstr "Correo no válido" msgid "Unable to delete group" msgstr "No se pudo eliminar el grupo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Error de autenticación" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "No se pudo eliminar el usuario" @@ -124,7 +129,7 @@ msgstr "Error" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Guardando..." @@ -229,39 +234,55 @@ msgstr "mostrar" msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:38 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nombre a mostrar" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "Su nombre fue cambiado" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "Incapaz de cambiar su nombre" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "Cambiar nombre" + +#: templates/personal.php:55 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:39 +#: templates/personal.php:56 msgid "Your email address" msgstr "Tu dirección de correo" -#: templates/personal.php:40 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Escribe una dirección de correo electrónico para restablecer la contraseña" -#: templates/personal.php:46 templates/personal.php:47 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:52 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ayúdanos a traducir" -#: templates/personal.php:57 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:59 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use esta dirección para conectarse a su cuenta de ownCloud en el administrador de archivos" -#: templates/personal.php:68 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:70 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -295,10 +316,6 @@ msgstr "Ilimitado" msgid "Other" msgstr "Otro" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Nombre a mostrar" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Grupo admin" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 1934ad18712690f0f75c5e9cf87a084cb501c56b..139d0cb69b8ea8dd3ef1be1e0b915d941f033513 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.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-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 00:30+0000\n" "Last-Translator: msvladimir <vladimirmartinezsierra@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -221,8 +221,8 @@ msgid "Use TLS" msgstr "Usar TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "No usarlo para SSL, habrá error." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "No usar adicionalmente para conecciones LDAPS, estas fallaran" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index b8625fa972fea1ac0ea3f516af96be6f7ad44ef4..b13721f69df7e5337593d4c7401d3bf0dbd478f0 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" -"Last-Translator: cjtess <claudio.tessone@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "¿Ninguna categorÃa para añadir?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Esta categorÃa ya existe: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Ajustes" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "hoy" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "ayer" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "hace {days} dÃas" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "el mes pasado" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "meses atrás" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "el año pasado" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "años atrás" @@ -469,7 +470,7 @@ msgstr "Editar categorÃas" msgid "Add" msgstr "Agregar" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Advertencia de seguridad" @@ -479,71 +480,75 @@ msgid "" "OpenSSL extension." msgstr "No hay disponible ningún generador de números aleatorios seguro. Por favor habilitá la extensión OpenSSL de PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sin un generador de números aleatorios seguro un atacante podrÃa predecir los tokens de reinicio de tu contraseña y tomar control de tu cuenta." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Tu directorio de datos y tus archivos son probablemente accesibles desde internet. El archivo .htaccess provisto por ownCloud no está funcionando. Te sugerimos que configures tu servidor web de manera que el directorio de datos ya no esté accesible, o que muevas el directorio de datos afuera del directorio raÃz de tu servidor web." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Crear una <strong>cuenta de administrador</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "servicios web sobre los que tenés control" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Cerrar la sesión" @@ -565,14 +570,18 @@ msgstr "Por favor, cambiá tu contraseña para fortalecer nuevamente la segurida msgid "Lost your password?" msgstr "¿Perdiste tu contraseña?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "recordame" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Entrar" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 16fb351cdfbaab48367aabda3a6a7cbbcd4e88ea..45bc777add8993c5b705a70425286f5cfa6374c4 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -20,46 +20,60 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "No se han producido errores, el archivo se ha subido con éxito" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "El archivo que intentás subir solo se subió parcialmente" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "El archivo no fue subido" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "No hay suficiente espacio disponible" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directorio invalido." @@ -71,11 +85,15 @@ msgstr "Archivos" msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Borrar" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Cambiar nombre" @@ -109,7 +127,7 @@ msgstr "reemplazado {new_name} con {old_name}" #: js/filelist.js:280 msgid "perform delete operation" -msgstr "" +msgstr "Eliminar" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -180,31 +198,31 @@ msgstr "La URL no puede estar vacÃa" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 archivo" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} archivos" @@ -262,7 +280,7 @@ msgstr "Desde enlace" #: templates/index.php:40 msgid "Trash" -msgstr "" +msgstr "Papelera" #: templates/index.php:46 msgid "Cancel upload" @@ -296,4 +314,4 @@ msgstr "Escaneo actual" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Actualizando el cache del sistema de archivos" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 7352752bf483236633f2579da7db96e5655ae064..c50739188ccaabe7b80114a10293351644325703 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nombre" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 directorio" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} directorios" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 archivo" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} archivos" diff --git a/l10n/es_AR/files_versions.po b/l10n/es_AR/files_versions.po index 6ab1eed54d33eebfe2d256c491ad934fde971480..e19644ccc5b9eb732013ae90d9440e8d49f080ca 100644 --- a/l10n/es_AR/files_versions.po +++ b/l10n/es_AR/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historia" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionado de archivos" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 8310f58c95cc36ffc07617bada65d947c8d8a828..a9d2e183b6e3fdf3f31220e869d5823918a0f91a 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Imposible cargar la lista desde el App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Error al autenticar" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "El grupo ya existe" @@ -48,10 +57,6 @@ msgstr "el e-mail no es válido " msgid "Unable to delete group" msgstr "No fue posible eliminar el grupo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Error al autenticar" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "No fue posible eliminar el usuario" @@ -114,7 +119,7 @@ msgstr "Error" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Guardando..." @@ -191,67 +196,83 @@ msgstr "Descargar cliente de Android" msgid "Download iOS Client" msgstr "Descargar cliente de iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Tu contraseña fue cambiada" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "No fue posible cambiar tu contraseña" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nueva contraseña:" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostrar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nombre a mostrar" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Tu dirección de e-mail" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Escribà una dirección de correo electrónico para restablecer la contraseña" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ayudanos a traducir" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versión" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -285,10 +306,6 @@ msgstr "Ilimitado" msgid "Other" msgstr "Otro" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Nombre a mostrar" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Grupo Administrador" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index e6a7fb9d269bb024d0a0a7e9aaf83211d39d57e5..b0aad05a15d808e85de4dcd89466834fb8c46e07 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -22,11 +22,11 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Fallo al borrar la configuración del servidor" #: ajax/testConfiguration.php:35 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "La configuración es valida y la conexión pudo ser establecida." #: ajax/testConfiguration.php:37 msgid "" @@ -50,27 +50,27 @@ msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "¿Mantener preferencias?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "No se pudo añadir la configuración del servidor" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "El este de conexión ha sido completado satisfactoriamente" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "Falló es test de conexión" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "¿Realmente desea borrar la configuración actual del servidor?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "Confirmar borrado" #: templates/settings.php:8 msgid "" @@ -87,11 +87,11 @@ msgstr "<b>Atención:</b> El módulo PHP LDAP no está instalado, este elemento #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "Configuración del Servidor" #: templates/settings.php:17 msgid "Add Server Configuration" -msgstr "" +msgstr "Añadir Configuración del Servidor" #: templates/settings.php:21 msgid "Host" @@ -175,11 +175,11 @@ msgstr "Sin ninguna plantilla, p. ej.: \"objectClass=posixGroup\"." #: templates/settings.php:31 msgid "Connection Settings" -msgstr "" +msgstr "Configuración de Conección" #: templates/settings.php:33 msgid "Configuration Active" -msgstr "" +msgstr "Configuración activa" #: templates/settings.php:33 msgid "When unchecked, this configuration will be skipped." @@ -205,7 +205,7 @@ msgstr "" #: templates/settings.php:37 msgid "Disable Main Server" -msgstr "" +msgstr "Deshabilitar el Servidor Principal" #: templates/settings.php:37 msgid "When switched on, ownCloud will only connect to the replica server." @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "Usar TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "No usarlo para SSL, dará error." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" @@ -243,7 +243,7 @@ msgstr "en segundos. Cambiarlo vacÃa la cache." #: templates/settings.php:43 msgid "Directory Settings" -msgstr "" +msgstr "Configuración de Directorio" #: templates/settings.php:45 msgid "User Display Name Field" @@ -295,7 +295,7 @@ msgstr "Asociación Grupo-Miembro" #: templates/settings.php:53 msgid "Special Attributes" -msgstr "" +msgstr "Atributos Especiales" #: templates/settings.php:56 msgid "in bytes" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 319bddaf875f0983fa5960b55f8ce1e3f1d7b3f9..54c76b77460cf02a317b496c2d374c75af3febe2 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -51,8 +51,9 @@ msgid "No category to add?" msgstr "Pole kategooriat, mida lisada?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "See kategooria on juba olemas: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -156,59 +157,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Seaded" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "täna" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "eile" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "aastat tagasi" @@ -467,7 +468,7 @@ msgstr "Muuda kategooriaid" msgid "Add" msgstr "Lisa" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Turvahoiatus" @@ -477,71 +478,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Loo <strong>admini konto</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Lisavalikud" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Andmete kaust" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Seadista andmebaasi" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "kasutatakse" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Andmebaasi tabeliruum" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Lõpeta seadistamine" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "veebiteenused sinu kontrolli all" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Logi välja" @@ -563,14 +568,18 @@ msgstr "Palun muuda parooli, et oma kasutajakonto uuesti turvata." msgid "Lost your password?" msgstr "Kaotasid oma parooli?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "pea meeles" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Logi sisse" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "eelm" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index deecc6e8688b315cd7e7cb60cb5ba158e43e49d1..c42827d819d6c89a8dd972853bc0dc8bc91c5ef9 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,60 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ãœhtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ãœhtegi viga pole, fail on üles laetud" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Ãœles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ãœhtegi faili ei laetud üles" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +84,15 @@ msgstr "Failid" msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Kustuta" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ümber" @@ -179,31 +197,31 @@ msgstr "URL ei saa olla tühi." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Suurus" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Muudetud" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fail" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} faili" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 818c4c31a5d53829d7443edc112216028900f998..e4e1d3e4372ff411c6c0aeb106295ce3408d7fc5 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nimi" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 kaust" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} kausta" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fail" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} faili" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index a0309a22fc6dfedbbe3735415c1fca60b450ad0d..b35f2b2c7e7359147a201116a6f24346e7197a0d 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +18,45 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Ajalugu" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Failide versioonihaldus" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 1dbc6e9f6fd5817b2a060725eb6e8e937dfcffcc..bd9993e5ebcc824ffeeb62ad7a1f32cdbdb97d9f 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "App Sotre'i nimekirja laadimine ebaõnnestus" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentimise viga" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupp on juba olemas" @@ -47,10 +56,6 @@ msgstr "Vigane e-post" msgid "Unable to delete group" msgstr "Keela grupi kustutamine" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentimise viga" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Keela kasutaja kustutamine" @@ -113,7 +118,7 @@ msgstr "Viga" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Salvestamine..." @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Parool" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Sinu parooli on muudetud" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Sa ei saa oma parooli muuta" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Praegune parool" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Uus parool" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "näita" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Muuda parooli" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-post" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Sinu e-posti aadress" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Keel" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Aita tõlkida" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -284,10 +305,6 @@ msgstr "" msgid "Other" msgstr "Muu" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Grupi admin" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index fe16678ea5e365ff4c647b8f23853b34c51221d9..83400a76258e671717a2a184ba7075d44dcdf157 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: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "Kasutaja TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ära kasuta seda SSL ühenduse jaoks, see ei toimi." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 33b40f3114c24e03830e6f0e4503f292d6bb104c..faa3a2a3a3bafcbbfe6e022c6ba52aec3a37e622 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" -"Last-Translator: asieriko <asieriko@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -54,8 +54,9 @@ msgid "No category to add?" msgstr "Ez dago gehitzeko kategoriarik?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Kategoria hau dagoeneko existitzen da:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -159,59 +160,59 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "segundu" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "gaur" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "atzo" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "hilabete" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "joan den urtean" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "urte" @@ -470,7 +471,7 @@ msgstr "Editatu kategoriak" msgid "Add" msgstr "Gehitu" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Segurtasun abisua" @@ -480,71 +481,75 @@ msgid "" "OpenSSL extension." msgstr "Ez dago hausazko zenbaki sortzaile segururik eskuragarri, mesedez gatiu PHP OpenSSL extensioa." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Hausazko zenbaki sortzaile segururik gabe erasotzaile batek pasahitza berrezartzeko kodeak iragarri ditzake eta zure kontuaz jabetu." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Sortu <strong>kudeatzaile kontu<strong> bat" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Aurreratua" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datuen karpeta" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfiguratu datu basea" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "erabiliko da" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Bukatu konfigurazioa" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Saioa bukatu" @@ -566,14 +571,18 @@ msgstr "Mesedez aldatu zure pasahitza zure kontua berriz segurtatzeko." msgid "Lost your password?" msgstr "Galdu duzu pasahitza?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "gogoratu" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Hasi saioa" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "aurrekoa" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 2c3f16305dd618a1ebe038a79013bc5a4a5b9a4b..e32bbe4ed2fbd285d34b06b38e86ebbedadf7933 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -21,46 +21,60 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ez da arazorik izan, fitxategia ongi igo da" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Aldi baterako karpeta falta da" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Ez dago leku nahikorik." +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Baliogabeko karpeta." @@ -72,11 +86,15 @@ msgstr "Fitxategiak" msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Ezabatu" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Berrizendatu" @@ -181,31 +199,31 @@ msgstr "URLa ezin da hutsik egon." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Izena" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamaina" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fitxategi" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index a0ee131403bb478352a28566855ac4e97ed334a9..70120e4257a4e4708822996e1663dae35e950d71 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Izena" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "karpeta bat" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} karpeta" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "fitxategi bat" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fitxategi" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 64844cd7adf72375e7cc172821372434a3f57709..fdece04b8c39572bae2a163622ca32c17bb65c88 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historia" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Fitxategien Bertsioak" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 7b268d3a9d6fdbbf42a78ebcfea4b8e24ba4d042..b605292a8ae9977db1dfd8654f01a2afd4c0082a 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ezin izan da App Dendatik zerrenda kargatu" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentifikazio errorea" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Taldea dagoeneko existitzenda" @@ -49,10 +58,6 @@ msgstr "Baliogabeko eposta" msgid "Unable to delete group" msgstr "Ezin izan da taldea ezabatu" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentifikazio errorea" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ezin izan da erabiltzailea ezabatu" @@ -115,7 +120,7 @@ msgstr "Errorea" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Gordetzen..." @@ -192,67 +197,83 @@ msgstr "Deskargatu Android bezeroa" msgid "Download iOS Client" msgstr "Deskargatu iOS bezeroa" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Pasahitza" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Zere pasahitza aldatu da" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ezin izan da zure pasahitza aldatu" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Uneko pasahitza" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Pasahitz berria" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "erakutsi" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Aldatu pasahitza" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Bistaratze Izena" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-Posta" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Zure e-posta" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Hizkuntza" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Lagundu itzultzen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Bertsioa" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -286,10 +307,6 @@ msgstr "Mugarik gabe" msgid "Other" msgstr "Besteak" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Bistaratze Izena" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Talde administradorea" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index f55cb063518ca37dd278e82df6f64c6303aa8736..5e0f44fe88b63db98e0c8bf0ce8dc1ba618027c5 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Erabili TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ez erabili SSL konexioetan, huts egingo du." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 7ac12d0c3a7e7e28feec4f4b80dd56ef0585149f..de2bbcd700525a635e06d726cb651fa780f2b9e8 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 14:04+0000\n" -"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "آیا گروه دیگری برای اÙزودن ندارید" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "این گروه از قبل اضاÙÙ‡ شده" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "امروز" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "دیروز" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "ماه قبل" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "سال قبل" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "سال‌های قبل" @@ -468,7 +469,7 @@ msgstr "ویرایش گروه ها" msgid "Add" msgstr "اÙزودن" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "اخطار امنیتی" @@ -478,71 +479,75 @@ msgid "" "OpenSSL extension." msgstr "هیچ مولد تصادÙÛŒ امن در دسترس نیست، لطÙا Ùرمت PHP OpenSSL را Ùعال نمایید." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "بدون وجود یک تولید کننده اعداد تصادÙÛŒ امن ØŒ یک مهاجم ممکن است این قابلیت را داشته باشد Ú©Ù‡ پیشگویی کند پسوورد های راه انداز گرÙته شده Ùˆ کنترلی روی Øساب کاربری شما داشته باشد ." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "لطÙا یک <strong> شناسه برای مدیر</strong> بسازید" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "ØرÙÙ‡ ای" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "پوشه اطلاعاتی" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "پایگاه داده برنامه ریزی شدند" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "استÙاده خواهد شد" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "شناسه پایگاه داده" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "پسورد پایگاه داده" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "نام پایگاه داده" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "جدول پایگاه داده" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "هاست پایگاه داده" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "اتمام نصب" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "سرویس وب تØت کنترل شما" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "خروج" @@ -564,14 +569,18 @@ msgstr "لطÙا رمز عبور خود را تغییر دهید تا مجددا msgid "Lost your password?" msgstr "آیا گذرواژه تان را به یاد نمی آورید؟" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "بیاد آوری" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "ورود" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "بازگشت" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index c0c54f59a62a1ad80c16ff3ad327115c31712d96..d18c250ecf5fbe1596c1b744ecb11e68ed074a9a 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 11:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -21,46 +21,60 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "هیچ Ùایلی آپلود نشد.خطای ناشناس" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی وجود ندارد Ùایل با موÙقیت بار گذاری شد" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "پرونده آپلود شده بیش ازدستور ماکزیمم_Øجم Ùایل_برای آپلود در php.ini استÙاده کرده است." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Øداکثر Øجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "مقدار Ú©Ù…ÛŒ از Ùایل بارگذاری شده" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "هیچ Ùایلی بارگذاری نشده" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "یک پوشه موقت Ú¯Ù… شده است" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموÙÙ‚ بود" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Ùضای کاÙÛŒ در دسترس نیست" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ùهرست راهنما نامعتبر Ù…ÛŒ باشد." @@ -72,11 +86,15 @@ msgstr "Ùایل ها" msgid "Unshare" msgstr "لغو اشتراک" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "پاک کردن" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "تغییرنام" @@ -181,31 +199,31 @@ msgstr "URL نمی تواند خالی باشد." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "نام پوشه نامعتبر است. استÙاده از \" به اشتراک گذاشته شده \" متعلق به سایت Owncloud است." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "نام" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "اندازه" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "تغییر یاÙته" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 پوشه" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{ شمار} پوشه ها" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 پرونده" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{ شمار } Ùایل ها" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index d0801cffe9fa7265bf2d7e0f191312457bd38dbf..a9bffbf81b1133e14e61511e23c2589da16d8752 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 12:40+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "نام" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 پوشه" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{ شمار} پوشه ها" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 پرونده" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{ شمار } Ùایل ها" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index 276a3e16135a094f1272e310e76e84ffc03c5cf0..a2a96bc6ec1d50178372f0394b37b96ba91d50f5 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 11:40+0000\n" -"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -19,10 +19,45 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "تاریخچه" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index bc13d018d0b65f7b6deb38ec0942daf7da6c42bb..f38f77bf14e89a0e0b68d3db106a9415c54900f0 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 13:30+0000\n" -"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -26,6 +26,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "قادر به بارگذاری لیست از Ùروشگاه اپ نیستم" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "خطا در اعتبار سنجی" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "این گروه در Øال Øاضر موجود است" @@ -50,10 +59,6 @@ msgstr "ایمیل غیر قابل قبول" msgid "Unable to delete group" msgstr "Øذ٠گروه امکان پذیر نیست" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "خطا در اعتبار سنجی" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Øذ٠کاربر امکان پذیر نیست" @@ -116,7 +121,7 @@ msgstr "خطا" msgid "Updated" msgstr "بروز رسانی انجام شد" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "درØال ذخیره ..." @@ -221,39 +226,55 @@ msgstr "نمایش" msgid "Change password" msgstr "تغییر گذر واژه" -#: templates/personal.php:38 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "پست الکترونیکی" -#: templates/personal.php:39 +#: templates/personal.php:56 msgid "Your email address" msgstr "پست الکترونیکی شما" -#: templates/personal.php:40 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "پست الکترونیکی را پرکنید تا بازیابی گذرواژه Ùعال شود" -#: templates/personal.php:46 templates/personal.php:47 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "زبان" -#: templates/personal.php:52 +#: templates/personal.php:69 msgid "Help translate" msgstr "به ترجمه آن Ú©Ù…Ú© کنید" -#: templates/personal.php:57 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:59 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:68 +#: templates/personal.php:85 msgid "Version" msgstr "نسخه" -#: templates/personal.php:70 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -287,10 +308,6 @@ msgstr "نامØدود" msgid "Other" msgstr "سایر" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 2ec49d42b232af3ad357b0bffa7a7f9ee03e5594..4297459853fe89c0536b12d5095eca7447e413b9 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/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-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 05:40+0000\n" -"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -215,7 +215,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 34672cc2cb0421a98e7617a913a16c60606038ad..fef4938627f317592d2feccbbf8c9f77f90781e8 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -57,8 +57,9 @@ msgid "No category to add?" msgstr "Ei lisättävää luokkaa?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Tämä luokka on jo olemassa: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -162,59 +163,59 @@ msgstr "Marraskuu" msgid "December" msgstr "Joulukuu" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Asetukset" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "tänään" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "eilen" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "viime kuussa" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "viime vuonna" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "vuotta sitten" @@ -473,7 +474,7 @@ msgstr "Muokkaa luokkia" msgid "Add" msgstr "Lisää" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Turvallisuusvaroitus" @@ -483,71 +484,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Luo <strong>ylläpitäjän tunnus</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Lisäasetukset" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datakansio" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Muokkaa tietokantaa" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "käytetään" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Tietokannan käyttäjä" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Tietokannan salasana" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Tietokannan nimi" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Tietokannan taulukkotila" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Tietokantapalvelin" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Viimeistele asennus" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Kirjaudu ulos" @@ -569,14 +574,18 @@ msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen." msgid "Lost your password?" msgstr "Unohditko salasanasi?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "muista" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Kirjaudu sisään" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "edellinen" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 3e3ea718bb092ea10df3f592f2794a65e1173af0..57096ee2349b688378d201d3fa6adae61d09bbb7 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 13:58+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -22,46 +22,60 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Väliaikaiskansiota ei ole olemassa" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Tilaa ei ole riittävästi" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Virheellinen kansio." @@ -73,11 +87,15 @@ msgstr "Tiedostot" msgid "Unshare" msgstr "Peru jakaminen" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Poista" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Nimeä uudelleen" @@ -182,31 +200,31 @@ msgstr "Verkko-osoite ei voi olla tyhjä" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Koko" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Muutettu" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} tiedostoa" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 3543c5b1193ca0b1e0e417b4dbf1b0a8086c2ee6..27afca0a85b02334bd890396fa788e96edc45c47 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +18,45 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "suorita palautustoiminto" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nimi" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Poistettu" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 kansio" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} kansiota" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 tiedosto" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} tiedostoa" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index 4a04a540a9089dcab78a062d7a3829e5708e968d..f8ce72e1e07b0be80304203170e7f1f141573ddc 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +18,45 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historia" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Tiedostojen versiointi" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index eb214d66683177807ab42deb0f5b9e3638444934..f31845d910bc7467746dedbd9d011a71b0bddba5 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 13:58+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Todennusvirhe" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Ryhmä on jo olemassa" @@ -48,10 +57,6 @@ msgstr "Virheellinen sähköposti" msgid "Unable to delete group" msgstr "Ryhmän poisto epäonnistui" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Todennusvirhe" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Käyttäjän poisto epäonnistui" @@ -114,7 +119,7 @@ msgstr "Virhe" msgid "Updated" msgstr "Päivitetty" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Tallennetaan..." @@ -191,67 +196,83 @@ msgstr "Lataa Android-sovellus" msgid "Download iOS Client" msgstr "Lataa iOS-sovellus" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Salasana" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Salasanasi vaihdettiin" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Salasanaasi ei voitu vaihtaa" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Nykyinen salasana" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Uusi salasana" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "näytä" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Vaihda salasana" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Näyttönimi" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Sähköposti" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Sähköpostiosoitteesi" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Kieli" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Auta kääntämisessä" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Käytä tätä osoitetta yhdistäessäsi ownCloudiisi tiedostonhallintaa käyttäen" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versio" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -285,10 +306,6 @@ msgstr "Rajoittamaton" msgid "Other" msgstr "Muu" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Näyttönimi" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Ryhmän ylläpitäjä" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index e0a1ecc049ecefcb5b718fd5cc0757672726bfa7..14247957dd3d5cdd98d493e6b549ea32135d0282 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "Käytä TLS:ää" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Älä käytä SSL-yhteyttä varten, se epäonnistuu. " +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index ca18cbb340cd93689c5fa8d7d7324155b6eae29a..1454975ea7f50b274116c1197f9ccea331119101 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,14 +15,14 @@ # <nathaplop@gmail.com>, 2012. # <nicolas@shivaserv.fr>, 2012. # <rom1dep@gmail.com>, 2011. -# Romain DEP. <rom1dep@gmail.com>, 2012. +# Romain DEP. <rom1dep@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 14:30+0000\n" -"Last-Translator: ptit_boogy <ptit.boogy@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -63,8 +63,9 @@ msgid "No category to add?" msgstr "Pas de catégorie à ajouter ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Cette catégorie existe déjà : " +#, php-format +msgid "This category already exists: %s" +msgstr "Cette catégorie existe déjà : %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -168,59 +169,59 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Paramètres" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "aujourd'hui" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "hier" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "le mois dernier" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "l'année dernière" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "il y a plusieurs années" @@ -479,7 +480,7 @@ msgstr "Modifier les catégories" msgid "Add" msgstr "Ajouter" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Avertissement de sécurité" @@ -489,71 +490,75 @@ msgid "" "OpenSSL extension." msgstr "Aucun générateur de nombre aléatoire sécurisé n'est disponible, veuillez activer l'extension PHP OpenSSL" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sans générateur de nombre aléatoire sécurisé, un attaquant peut être en mesure de prédire les jetons de réinitialisation du mot de passe, et ainsi prendre le contrôle de votre compte utilisateur." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Votre dossier data et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni par ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de manière à ce que le dossier data ne soit plus accessible ou bien de déplacer le dossier data en dehors du dossier racine des documents du serveur web." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Créer un <strong>compte administrateur</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avancé" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Répertoire des données" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurer la base de données" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "sera utilisé" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Utilisateur pour la base de données" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Mot de passe de la base de données" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nom de la base de données" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Tablespaces de la base de données" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Serveur de la base de données" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Terminer l'installation" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "services web sous votre contrôle" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Se déconnecter" @@ -575,14 +580,18 @@ msgstr "Veuillez changer votre mot de passe pour sécuriser à nouveau votre com msgid "Lost your password?" msgstr "Mot de passe perdu ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "se souvenir de moi" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Connexion" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "Logins alternatifs" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "précédent" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 5a5f892a67e18d89c843a7abc96d8bdbf1e79c4a..0e732da55ae5c6bb29cece0dbe7dbd08361206e4 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 14:30+0000\n" -"Last-Translator: Flywall <sid50.martin@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,46 +31,60 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été chargé. Erreur inconnue" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été téléversé avec succès" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement téléversé" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Aucun fichier n'a été téléversé" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Il manque un répertoire temporaire" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Espace disponible insuffisant" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Dossier invalide." @@ -82,11 +96,15 @@ msgstr "Fichiers" msgid "Unshare" msgstr "Ne plus partager" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "Supprimer de façon définitive" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Supprimer" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Renommer" @@ -191,31 +209,31 @@ msgstr "L'URL ne peut-être vide" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Taille" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modifié" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fichier" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fichiers" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index d20576ced1228dbb860de1442574a73136184d96..ac5a41de0019ab7490857e755e8ff0c75fb91306 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 14:02+0000\n" +"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,15 +46,15 @@ msgstr "Chiffrement" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Le chiffrement des fichiers est activé" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Les fichiers de types suivants ne seront pas chiffrés :" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Ne pas chiffrer les fichiers dont les types sont les suivants :" #: templates/settings.php:12 msgid "None" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index d8a8b2c79267815d1fe37d545bb5a701eb721076..23b922f8f1c92be693ef629c908ee018a5a3cdfc 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 14:03+0000\n" +"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,31 +19,45 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "Impossible d'effacer %s de façon permanente" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "Impossible de restaurer %s" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "effectuer l'opération de restauration" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "effacer définitivement le fichier" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Effacé" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 dossier" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} dossiers" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fichier" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fichiers" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index 1fb4fdb1de209297593f8dbe4bd12951bed3412e..0bfce6ee9bc44f1252776c6566f7c66c5788b84e 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Romain DEP. <rom1dep@gmail.com>, 2012. +# Romain DEP. <rom1dep@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 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" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 14:02+0000\n" +"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,45 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "Impossible de restaurer %s" + +#: history.php:40 +msgid "success" +msgstr "succès" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "Le fichier %s a été restauré dans sa version %s" + +#: history.php:49 +msgid "failure" +msgstr "échec" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "Le fichier %s ne peut être restauré dans sa version %s" + +#: history.php:68 +msgid "No old versions available" +msgstr "Aucune ancienne version n'est disponible" + +#: history.php:73 +msgid "No path specified" +msgstr "Aucun chemin spécifié" + #: js/versions.js:16 msgid "History" msgstr "Historique" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "Restaurez un fichier dans une version antérieure en cliquant sur son bouton de restauration" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionnage des fichiers" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 59ec0fc34ac6c22bfe08f6b87170011df2dc7967..edf75b638a000ea722e1bfd578514696db21515e 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 20:10+0000\n" -"Last-Translator: jiminybillybob <thomash76@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 14:01+0000\n" +"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,6 +38,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Impossible de charger la liste depuis l'App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Erreur d'authentification" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "Impossible de modifier le nom d'affichage" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Ce groupe existe déjà " @@ -62,10 +71,6 @@ msgstr "E-mail invalide" msgid "Unable to delete group" msgstr "Impossible de supprimer le groupe" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Erreur d'authentification" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Impossible de supprimer l'utilisateur" @@ -128,7 +133,7 @@ msgstr "Erreur" msgid "Updated" msgstr "Mise à jour effectuée avec succès" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Sauvegarde..." @@ -233,39 +238,55 @@ msgstr "Afficher" msgid "Change password" msgstr "Changer de mot de passe" -#: templates/personal.php:38 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nom affiché" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "Votre nom d'affichage a bien été modifié" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "Impossible de modifier votre nom d'affichage" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "Changer le nom affiché" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:39 +#: templates/personal.php:56 msgid "Your email address" msgstr "Votre adresse e-mail" -#: templates/personal.php:40 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe" -#: templates/personal.php:46 templates/personal.php:47 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Langue" -#: templates/personal.php:52 +#: templates/personal.php:69 msgid "Help translate" msgstr "Aidez à traduire" -#: templates/personal.php:57 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:59 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utiliser cette adresse pour vous connecter à ownCloud dans votre gestionnaire de fichiers" -#: templates/personal.php:68 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:70 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -299,10 +320,6 @@ msgstr "Illimité" msgid "Other" msgstr "Autre" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Nom affiché" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Groupe Admin" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index acc3b57fd7295f889bc1a76f174426a3d6350295..61d51d61cab2c179bf320738c8618efc57e4f95b 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 20:10+0000\n" -"Last-Translator: jiminybillybob <thomash76@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 14:02+0000\n" +"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -220,8 +220,8 @@ msgid "Use TLS" msgstr "Utiliser TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ne pas utiliser pour les connexions SSL, car cela échouera." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "À ne pas utiliser pour les connexions LDAPS (cela échouera)." #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 227dd8bf060b859255cf9048d6eb61d00b9f6366..6c9cc0dfe4e71d1027c5b087247bbed16850e0b7 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "Sen categorÃa que engadir?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Esta categorÃa xa existe: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Configuracións" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "hai 1 hora" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "hoxe" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "onte" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "hai {days} dÃas" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "último mes" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "meses atrás" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "último ano" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "anos atrás" @@ -469,7 +470,7 @@ msgstr "Editar categorÃas" msgid "Add" msgstr "Engadir" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Aviso de seguranza" @@ -479,71 +480,75 @@ msgid "" "OpenSSL extension." msgstr "Non hai un xerador de números ao chou dispoñÃbel. Active o engadido de OpenSSL para PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sen un xerador seguro de números ao chou poderÃa acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa súa conta." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesÃbeis a través da Internet. O ficheiro .htaccess que fornece ownCloud non está a empregarse. Suxerimoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesÃbel ou mova o cartafol de datos fora do directorio raÃz de datos do servidor web." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Crear unha <strong>contra de administrador</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Cartafol de datos" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurar a base de datos" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "vai ser utilizado" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Táboa de espazos da base de datos" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Rematar a configuración" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "servizos web baixo o seu control" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Desconectar" @@ -565,14 +570,18 @@ msgstr "Cambie de novo o seu contrasinal para asegurar a súa conta." msgid "Lost your password?" msgstr "Perdeu o contrasinal?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "lembrar" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Conectar" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 020232e7f37584ed78f730643986c9d3902090cc..928faa768b90fb683bc0b8db129620a8fb9210af 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -19,46 +19,60 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Non se subiu ningún ficheiro. Erro descoñecido." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Non hai erros. O ficheiro enviouse correctamente" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro subido excede a directiva indicada polo tamaño_máximo_de_subida de php.ini" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado foi só parcialmente enviado" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Falta un cartafol temporal" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Erro ao escribir no disco" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "O espazo dispoñÃbel é insuficiente" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "O directorio é incorrecto." @@ -70,11 +84,15 @@ msgstr "Ficheiros" msgid "Unshare" msgstr "Deixar de compartir" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eliminar" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Mudar o nome" @@ -179,31 +197,31 @@ msgstr "URL non pode quedar baleiro." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de cartafol non válido. O uso de 'Shared' está reservado por Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index be7e4127d3a6ec74a585657b8e043cae6f4ee83a..9e9dd72adb0fc8b9e302426414c4cc0f6ba4b8fa 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 cartafol" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ficheiro" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po index c0ac98462b7be16b8eba8f6bed00c49ef0179d4c..7bfd504e63332b95cb7179b1b60c77b051834348 100644 --- a/l10n/gl/files_versions.po +++ b/l10n/gl/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -20,10 +20,45 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historial" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Sistema de versión de ficheiros" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index ccfa410e29febf308a6eb277880e789d9b25f80f..ca408e9994364260d8aafe79ce9603913c9bcb47 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Non foi posÃbel cargar a lista desde a App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Produciuse un erro de autenticación" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "O grupo xa existe" @@ -48,10 +57,6 @@ msgstr "correo incorrecto" msgid "Unable to delete group" msgstr "Non é posÃbel eliminar o grupo." -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Produciuse un erro de autenticación" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Non é posÃbel eliminar o usuario" @@ -114,7 +119,7 @@ msgstr "Erro" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Gardando..." @@ -191,67 +196,83 @@ msgstr "Descargar clientes para Android" msgid "Download iOS Client" msgstr "Descargar clientes ra iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Contrasinal" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "O seu contrasinal foi cambiado" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Non é posÃbel cambiar o seu contrasinal" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Contrasinal actual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Novo contrasinal" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "amosar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Cambiar o contrasinal" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Correo" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "O seu enderezo de correo" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Escriba un enderezo de correo para activar a recuperación do contrasinal" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Axude na tradución" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versión" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -285,10 +306,6 @@ msgstr "Sen lÃmites" msgid "Other" msgstr "Outro" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Grupo Admin" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index fe74411b94149cfca21e6f36e5b7174157cb3cb4..72ec0caf49afb110ba14fae4b91cf76887f526b6 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Usar TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Non empregalo para conexións SSL: fallará." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/he/core.po b/l10n/he/core.po index 8a781cb282f6a88c3caabaf4562b14afe5b16933..63923beacfc56f2932e8e44db560034f55a2a70b 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -55,8 +55,9 @@ msgid "No category to add?" msgstr "×ין קטגוריה להוספה?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "קטגוריה ×–×ת כבר קיימת: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +161,59 @@ msgstr "× ×•×‘×ž×‘×¨" msgid "December" msgstr "דצמבר" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "הגדרות" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "×©× ×™×•×ª" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "×œ×¤× ×™ דקה ×חת" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "×œ×¤× ×™ {minutes} דקות" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "×œ×¤× ×™ שעה" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "×œ×¤× ×™ {hours} שעות" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "היו×" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "×תמול" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "×œ×¤× ×™ {days} ימי×" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "×œ×¤× ×™ {months} חודשי×" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "חודשי×" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "×©× ×” שעברה" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "×©× ×™×" @@ -471,7 +472,7 @@ msgstr "עריכת הקטגוריות" msgid "Add" msgstr "הוספה" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "×זהרת ×בטחה" @@ -481,71 +482,75 @@ msgid "" "OpenSSL extension." msgstr "×ין מחולל ×ž×¡×¤×¨×™× ×קר××™×™× ×ž×ובטח, × × ×œ×”×¤×¢×™×œ ×ת ההרחבה OpenSSL ב־PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "×œ×œ× ×ž×—×•×œ×œ ×ž×¡×¤×¨×™× ×קר××™×™× ×ž×ובטח תוקף יכול ×œ× ×‘× ×ת מחרוזות ×יפוס הססמה ולהשתלט על החשבון שלך." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "יתכן שתיקיית ×”× ×ª×•× ×™× ×•×”×§×‘×¦×™× ×©×œ×š × ×’×™×©×™× ×“×¨×š ×”××™× ×˜×¨× ×˜. קובץ ה־‎.htaccess שמסופק על ידי ownCloud ×›× ×¨××” ××™× ×• עובד. ×× ×• ×ž×ž×œ×™×¦×™× ×‘×—×•× ×œ×”×’×“×™×¨ ×ת שרת ×”××™× ×˜×¨× ×˜ שלך בדרך שבה תיקיית ×”× ×ª×•× ×™× ×œ× ×ª×”×™×” ×–×ž×™× ×” עוד ×ו להעביר ×ת תיקיית ×”× ×ª×•× ×™× ×ž×—×•×¥ לספריית העל של שרת ×”××™× ×˜×¨× ×˜." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "יצירת <strong>חשבון ×ž× ×”×œ</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "מתקד×" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "תיקיית × ×ª×•× ×™×" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "הגדרת מסד ×”× ×ª×•× ×™×" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "×™× ×•×¦×œ×•" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "×©× ×ž×©×ª×ž×© במסד ×”× ×ª×•× ×™×" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ססמת מסד ×”× ×ª×•× ×™×" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "×©× ×ž×¡×“ ×”× ×ª×•× ×™×" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "מרחב הכתובות של מסד ×”× ×ª×•× ×™×" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "שרת בסיס × ×ª×•× ×™×" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "×¡×™×•× ×”×ª×§× ×”" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "שירותי רשת בשליטתך" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "×”×ª× ×ª×§×•×ª" @@ -567,14 +572,18 @@ msgstr "× × ×œ×©× ×•×ª ×ת הססמה שלך כדי ל×בטח ×ת ×—×©×‘×•× msgid "Lost your password?" msgstr "שכחת ×ת ססמתך?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "שמירת הססמה" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "×›× ×™×¡×”" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "הקוד×" diff --git a/l10n/he/files.po b/l10n/he/files.po index ed74dc9066f790eeb6401b7dae6c9f24f9144fe2..97499d15ec7b698e89ed11ce447ce6fd8215aafe 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -21,46 +21,60 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "×œ× ×”×•×¢×œ×” קובץ. טעות בלתי מזוהה." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "×œ× ×ירעה תקלה, ×”×§×‘×¦×™× ×”×•×¢×œ×• בהצלחה" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "×”×§×‘×¦×™× ×©× ×©×œ×—×• ×—×•×¨×’×™× ×ž×”×’×•×“×œ שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "הקובץ שהועלה חרג ×ž×”×”× ×—×™×” MAX_FILE_SIZE ×©×¦×•×™× ×” בטופס ×”Ö¾HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ שהועלה הועלה בצורה חלקית" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "×œ× ×”×•×¢×œ×• קבצי×" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "תיקייה ×–×ž× ×™×ª חסרה" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "הכתיבה ×œ×›×•× ×Ÿ × ×›×©×œ×”" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -72,11 +86,15 @@ msgstr "קבצי×" msgid "Unshare" msgstr "הסר שיתוף" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "מחיקה" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "×©×™× ×•×™ ש×" @@ -181,31 +199,31 @@ msgstr "קישור ××™× ×• יכול להיות ריק." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "ש×" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "גודל" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "זמן ×©×™× ×•×™" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "תיקייה ×חת" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "קובץ ×חד" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} קבצי×" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index e2f9372e88ec41bfb16c41836dfbd154401b9c39..4291039ce16c9d9ecf393a28ed743b051d38f771 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "ש×" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "תיקייה ×חת" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "קובץ ×חד" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} קבצי×" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index 15bb3e971b3234dddef98204cbe491893e4a51b7..4d1caaf1149da10aca5f11de69ff5c2edd76ba16 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -19,10 +19,45 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "היסטוריה" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "שמירת הבדלי גרס×ות של קבצי×" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index cceb07b9d1748c08978664aa5630af2f170b3167..018aebd9f602c48d5111a9f9983882d6df35e5cc 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "×œ× × ×™×ª×Ÿ לטעון רשימה מה־App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "שגי×ת הזדהות" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "הקבוצה כבר קיימת" @@ -49,10 +58,6 @@ msgstr "דו×״ל ×œ× ×—×•×§×™" msgid "Unable to delete group" msgstr "×œ× × ×™×ª×Ÿ למחוק ×ת הקבוצה" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "שגי×ת הזדהות" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "×œ× × ×™×ª×Ÿ למחוק ×ת המשתמש" @@ -115,7 +120,7 @@ msgstr "שגי××”" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "שומר.." @@ -192,67 +197,83 @@ msgstr "הורד ×ª×•×›× ×” ל×× ×“×¨×•×יד" msgid "Download iOS Client" msgstr "הורד ×ª×•×›× ×” לiOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ססמה" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "הססמה שלך הוחלפה" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "×œ× × ×™×ª×Ÿ ×œ×©× ×•×ª ×ת הססמה שלך" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ססמה × ×•×›×—×™×ª" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ססמה חדשה" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "הצגה" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "×©×™× ×•×™ ססמה" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "דו×״ל" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "כתובת הדו×״ל שלך" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "× × ×œ×ž×œ× ×ת כתובת הדו×״ל שלך כדי ל×פשר שחזור ססמה" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "פה" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "עזרה בתרגו×" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "השתמש בכתובת ×–×ת על ×ž× ×ª להתחבר ×ל ownCloud דרך סייר קבצי×." -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "גרס×" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -286,10 +307,6 @@ msgstr "" msgid "Other" msgstr "×חר" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "×ž× ×”×œ הקבוצה" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 54ede62468b4f439e868cd118d5f5c855159e387..cd67250d8671249a217e51d767810616bb6ae9cb 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,7 +214,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 3e666c18c78e99350d0fc08087c2e24aa085692a..4706ee1f2cd80d2fafa461e9e83b862b8b666b79 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-30 00:23+0100\n" -"PO-Revision-Date: 2013-01-29 23:23+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -52,7 +52,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -157,59 +158,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:284 msgid "Settings" msgstr "" -#: js/js.js:762 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -468,7 +469,7 @@ msgstr "" msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -478,71 +479,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "वà¥à¤¯à¤µà¤¸à¥à¤¥à¤¾à¤ªà¤• खाता बनाà¤à¤" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "उनà¥à¤¨à¤¤" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "डेटाबेस कॉनà¥à¤«à¤¼à¤¿à¤—र करें " -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "डेटाबेस उपयोगकरà¥à¤¤à¤¾" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "डेटाबेस पासवरà¥à¤¡" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "सेटअप समापà¥à¤¤ करे" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:32 +#: templates/layout.user.php:48 msgid "Log out" msgstr "" @@ -564,14 +569,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "पिछला" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index c56da3dc54c38b29a4031287340001e3cb807f5f..1bffd04a96371a9f39d6852c4a9f60c56a8f4560 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 16:02+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,60 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +82,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +195,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index ecec4c0cae63f5dbe3a9274677c058aeda9c623f..a0b6e4cede08764bf4565acff6f71082d2d7d42c 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po index 293e4b558a76e816591fda14239c9bca26b1a55b..65790b4d6ba44649b41bd3439632030c98cb04e4 100644 --- a/l10n/hi/files_versions.po +++ b/l10n/hi/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +17,45 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 58343582a26af647e15d0d5a264b487eb742edb1..b0e88f95c9b086bee71ba6b070be73feb9468566 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "पासवरà¥à¤¡" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "नया पासवरà¥à¤¡" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -282,10 +303,6 @@ msgstr "" msgid "Other" msgstr "" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 7eb23a9a108c9d6cfd5678382c119114219b3054..b37e24b8292971982214aa1bc2c3f37825bbc1af 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 30f2d56afb168895c67917feb3e9b17f2d9c87b4..ebbeae5639d11a2e241b29e74f5bffb4c0dc5df1 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -54,8 +54,9 @@ msgid "No category to add?" msgstr "Nemate kategorija koje možete dodati?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ova kategorija već postoji: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -159,59 +160,59 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Postavke" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "danas" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "juÄer" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "proÅ¡li mjesec" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "mjeseci" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "proÅ¡lu godinu" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "godina" @@ -470,7 +471,7 @@ msgstr "Uredi kategorije" msgid "Add" msgstr "Dodaj" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -480,71 +481,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Stvori <strong>administratorski raÄun</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Dodatno" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Mapa baze podataka" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfiguriraj bazu podataka" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "će se koristiti" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ZavrÅ¡i postavljanje" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "web usluge pod vaÅ¡om kontrolom" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Odjava" @@ -566,14 +571,18 @@ msgstr "" msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "zapamtiti" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Prijava" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prethodan" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 7a03f6b19770874bf4322e1c9288da657221f009..54726b33311cd0bc05cfbf04fd8decea80b7b2de 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,60 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je poslana uspjeÅ¡no i bez pogreÅ¡aka" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka izlazi iz okvira MAX_FILE_SIZE direktive postavljene u HTML obrascu" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je poslana samo djelomiÄno" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ni jedna datoteka nije poslana" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Nedostaje privremena mapa" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +85,15 @@ msgstr "Datoteke" msgid "Unshare" msgstr "Prekini djeljenje" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "BriÅ¡i" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Promjeni ime" @@ -180,31 +198,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Naziv" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "VeliÄina" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 0665783c0412923245fba108cd86846349d52819..a5e90a28bb21a08d159df0a5fc991b0c434b2151 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ 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/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po index 0425c2dc5680098bd468e36e4949de992289788c..a1fb9209e3b22a309d0d364e0594368f0e3468d0 100644 --- a/l10n/hr/files_versions.po +++ b/l10n/hr/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +17,45 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index af697fb7817871b3ff24b3eabece7f3e5306a90c..062d280811c653ff8933210787b539cc6ac20f64 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nemogićnost uÄitavanja liste sa Apps Stora" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "GreÅ¡ka kod autorizacije" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -48,10 +57,6 @@ msgstr "Neispravan email" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "GreÅ¡ka kod autorizacije" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -114,7 +119,7 @@ msgstr "GreÅ¡ka" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Spremanje..." @@ -191,67 +196,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Nemoguće promijeniti lozinku" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "prikaz" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Izmjena lozinke" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "e-mail adresa" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "VaÅ¡a e-mail adresa" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Ispunite vase e-mail adresa kako bi se omogućilo oporavak lozinke" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jezik" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Pomoć prevesti" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -285,10 +306,6 @@ msgstr "" msgid "Other" msgstr "ostali" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Grupa Admin" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index f1c4515d4d2c79aa4268d65c68bec183de07f6ee..eb75fed54a87e06e4915be4abfed7c50f2b667a2 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index a30b6c37d614019ff36b62e0de5873d121ead0d4..9cd13d6adf5efbf27648e2787f6d5830d0d5a3a4 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -55,8 +55,9 @@ msgid "No category to add?" msgstr "Nincs hozzáadandó kategória?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ez a kategória már létezik: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +161,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "BeállÃtások" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "ma" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "tegnap" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "több hónapja" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "tavaly" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "több éve" @@ -471,7 +472,7 @@ msgstr "Kategóriák szerkesztése" msgid "Add" msgstr "Hozzáadás" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Biztonsági figyelmeztetés" @@ -481,71 +482,75 @@ msgid "" "OpenSSL extension." msgstr "Nem érhetÅ‘ el megfelelÅ‘ véletlenszám-generátor, telepÃteni kellene a PHP OpenSSL kiegészÃtését." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "MegfelelÅ‘ véletlenszám-generátor hiányában egy támadó szándékú idegen képes lehet megjósolni a jelszóvisszaállÃtó tokent, és Ön helyett belépni." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Az adatkönytára és az itt levÅ‘ fájlok valószÃnűleg elérhetÅ‘k az internetrÅ‘l. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon fontos, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár nem legyen közvetlenül kÃvülrÅ‘l elérhetÅ‘, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kÃvülre." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "<strong>Rendszergazdai belépés</strong> létrehozása" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Haladó" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Adatkönyvtár" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Adatbázis konfigurálása" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "adatbázist fogunk használni" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Adatbázis felhasználónév" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Adatbázis jelszó" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Az adatbázis neve" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Az adatbázis táblázattér (tablespace)" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Adatbázis szerver" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "A beállÃtások befejezése" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "webszolgáltatások saját kézben" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Kilépés" @@ -567,14 +572,18 @@ msgstr "A biztonsága érdekében változtassa meg a jelszavát!" msgid "Lost your password?" msgstr "Elfelejtette a jelszavát?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "emlékezzen" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Bejelentkezés" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "elÅ‘zÅ‘" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 595e4cd8217c768aee2f8c6a26253d8bd3f801c2..3b40ac770e6d3a4b4bd51fdb861af384924184f4 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -24,46 +24,60 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra." -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nem töltÅ‘dött fel semmi" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történÅ‘ Ãrás" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Nincs elég szabad hely" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Érvénytelen mappa." @@ -75,11 +89,15 @@ msgstr "Fájlok" msgid "Unshare" msgstr "Megosztás visszavonása" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Törlés" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Ãtnevezés" @@ -184,31 +202,31 @@ msgstr "Az URL nem lehet semmi." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Név" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Méret" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "MódosÃtva" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fájl" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fájl" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 5cabef3a633476b3101677e4112e7656e73d36e8..0f7239c2cdcda794cf6f87a7f6286a232525fbff 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Név" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mappa" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mappa" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fájl" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fájl" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index d5db4ac6033aa2edc448a7279bb93aa4a8228a82..f2b3829c7aa6d0df136f58e11c26876e82dd78b0 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,10 +17,45 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Korábbi változatok" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Az állományok verzionálása" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 4be00602dd8b21261f829eb037d8f6db48546e29..d544d5d95b051c731bc041dc24284457675944ec 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nem tölthetÅ‘ le a lista az App Store-ból" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "AzonosÃtási hiba" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "A csoport már létezik" @@ -48,10 +57,6 @@ msgstr "Hibás email" msgid "Unable to delete group" msgstr "A csoport nem törölhetÅ‘" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "AzonosÃtási hiba" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "A felhasználó nem törölhetÅ‘" @@ -114,7 +119,7 @@ msgstr "Hiba" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Mentés..." @@ -191,67 +196,83 @@ msgstr "Android kliens letöltése" msgid "Download iOS Client" msgstr "iOS kliens letöltése" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Jelszó" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "A jelszava megváltozott" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "A jelszó nem változtatható meg" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "A jelenlegi jelszó" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Az új jelszó" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "lássam" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "A jelszó megváltoztatása" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Az Ön email cÃme" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Adja meg az email cÃmét, hogy jelszó-emlékeztetÅ‘t kérhessen, ha elfelejtette a jelszavát!" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Nyelv" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "SegÃtsen a fordÃtásban!" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ennek a cÃmnek a megadásával a WebDAV-protokollon keresztül saját gépének fájlkezelÅ‘jével is is elérheti az állományait." -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Verzió" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -285,10 +306,6 @@ msgstr "Korlátlan" msgid "Other" msgstr "Más" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Csoportadminisztrátor" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 83d3b7c227e68286db91dca57828efbc3545cfba..1b2cd9d4f828caa01fddd5ab9bde61db17dad5ff 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Használjunk TLS-t" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ne használjuk SSL-kapcsolat esetén, mert nem fog működni!" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 6359a737f3e99a1175ea00d0055c44e1f93d63b6..385d32959dc1ff3ee3cb54051429244c1fe3e669 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-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-30 23:40+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -51,8 +51,9 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Iste categoria jam existe:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -156,59 +157,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:284 msgid "Settings" msgstr "Configurationes" -#: js/js.js:762 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -467,7 +468,7 @@ msgstr "Modificar categorias" msgid "Add" msgstr "Adder" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -477,71 +478,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Crear un <strong>conto de administration</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avantiate" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Dossier de datos" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurar le base de datos" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "essera usate" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "servicios web sub tu controlo" -#: templates/layout.user.php:32 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Clauder le session" @@ -563,14 +568,18 @@ msgstr "" msgid "Lost your password?" msgstr "Tu perdeva le contrasigno?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "memora" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Aperir session" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prev" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 43dd321da0851bbe50fa53c7acadeb7b189a431c..1ef72be29ba9f9dde1aa08c49e141e7af4cdca3d 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,60 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nulle file esseva incargate" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +84,15 @@ msgstr "Files" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Deler" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -179,31 +197,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nomine" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Dimension" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificate" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 3d86f721da77ae3a82e36debb053ec7ae88ef824..a6fdefcf405c97640c60be67ff9997cf8c832b9e 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nomine" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po index 7b2dbb7efe9340e819b6cb020aed4fc445cbae20..f3b805ad9322a235f4a3733aaf16188284f987d3 100644 --- a/l10n/ia/files_versions.po +++ b/l10n/ia/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +17,45 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index f465615a9857ae2554c5f69cecd1fce32d25576c..47c4885728c28f537944da79b5b798c388c8dac1 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -47,10 +56,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -113,7 +118,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Contrasigno" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Non pote cambiar tu contrasigno" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Contrasigno currente" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nove contrasigno" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "monstrar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Cambiar contrasigno" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-posta" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Tu adresse de e-posta" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Linguage" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Adjuta a traducer" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -284,10 +305,6 @@ msgstr "" msgid "Other" msgstr "Altere" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 82ab2dd2acb1f918b2c1fe86bcf74cb2979f2e79..4c35ec082991ebdc605647d0cf19eb283430baa3 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/id/core.po b/l10n/id/core.po index 17776e800e286f44213a2a12b8223c286ea18b27..315f226f1568318c73f52101a791c3d361a9713d 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -54,8 +54,9 @@ msgid "No category to add?" msgstr "Tidak ada kategori yang akan ditambahkan?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Kategori ini sudah ada:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -159,59 +160,59 @@ msgstr "Nopember" msgid "December" msgstr "Desember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Setelan" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 menit lalu" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "hari ini" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "kemarin" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "beberapa tahun lalu" @@ -470,7 +471,7 @@ msgstr "Edit kategori" msgid "Add" msgstr "Tambahkan" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "peringatan keamanan" @@ -480,71 +481,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "tanpa generator angka acak, penyerang mungkin dapat menebak token reset kata kunci dan mengambil alih akun anda." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Buat sebuah <strong>akun admin</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Tingkat Lanjut" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Folder data" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfigurasi database" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Pengguna database" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Password database" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nama database" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "tablespace basis data" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Host database" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Selesaikan instalasi" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "web service dibawah kontrol anda" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Keluar" @@ -566,14 +571,18 @@ msgstr "mohon ubah kata kunci untuk mengamankan akun anda" msgid "Lost your password?" msgstr "Lupa password anda?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "selalu login" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Masuk" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelum" diff --git a/l10n/id/files.po b/l10n/id/files.po index 67a86d94ba0f169fa8b2fd85120f16dbcaaadc66..c3b51b237dd0d6d274712b01716e92c3b050ab1f 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,60 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "File yang diunggah melampaui directive MAX_FILE_SIZE yang disebutan dalam form HTML." -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Kehilangan folder temporer" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +85,15 @@ msgstr "Berkas" msgid "Unshare" msgstr "batalkan berbagi" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Hapus" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -180,31 +198,31 @@ msgstr "tautan tidak boleh kosong" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Ukuran" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 29afd3eefda508772b56bfc2ae20f801c238496f..70eaf1fc21676c8417344b5dab494a0f65c4e1e5 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "nama" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index 7b9d5d187457911fbda08084b22ddfe7fde89fd9..490e0fc81636e753cfd624db621cd690fb49510a 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +18,45 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "riwayat" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "pembuatan versi file" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 92aab7dfbf71dcbf404c4aff0e29006ba18ea0b3..2787995bd72b92380ddb453b74da4414c25d2a5d 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "autentikasi bermasalah" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -49,10 +58,6 @@ msgstr "Email tidak sah" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "autentikasi bermasalah" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -115,7 +120,7 @@ msgstr "kesalahan" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Menyimpan..." @@ -192,67 +197,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Password" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Tidak dapat merubah password anda" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Password saat ini" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "kata kunci baru" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "perlihatkan" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Rubah password" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Alamat email anda" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Masukkan alamat email untuk mengaktifkan pemulihan password" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Bantu menerjemahkan" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -286,10 +307,6 @@ msgstr "" msgid "Other" msgstr "Lain-lain" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Admin Grup" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index ed63af8cccb91c7e3d69bdd2761c299ce1658dab..c105afaa81b2d8d4a84d9625c13fa3aa3bd75142 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: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "gunakan TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "jangan gunakan untuk koneksi SSL, itu akan gagal." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/is/core.po b/l10n/is/core.po index a1d13cee06df5766bdb06ce3f44db92ee6789374..5dd96b65d4b23e6b802cd2e7485440e166a643a2 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "Enginn flokkur til að bæta við?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Þessi flokkur er þegar til:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Stillingar" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "sek sÃðan" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 min sÃðan" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} min sÃðan" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "à dag" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "à gær" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dagar sÃðan" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "sÃðasta mánuði" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "mánuðir sÃðan" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "sÃðasta ári" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "árum sÃðan" @@ -468,7 +469,7 @@ msgstr "Breyta flokkum" msgid "Add" msgstr "Bæta" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Öryggis aðvörun" @@ -478,71 +479,75 @@ msgid "" "OpenSSL extension." msgstr "Enginn traustur slembitölugjafi à boði, vinsamlegast virkjaðu PHP OpenSSL viðbótina." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Ãn öruggs slembitölugjafa er mögulegt að sjá fyrir öryggis auðkenni til að endursetja lykilorð og komast inn á aðganginn þinn." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Gagnamappan þÃn er að öllum lÃkindum aðgengileg frá internetinu. Skráin .htaccess sem fylgir með ownCloud er ekki að virka. Við mælum eindregið með þvà að þú stillir vefþjóninn þannig að gagnamappan verði ekki aðgengileg frá internetinu eða færir hana út fyrir vefrótina." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Útbúa <strong>vefstjóra aðgang</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Ãtarlegt" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Gagnamappa" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Stilla gagnagrunn" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "verður notað" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Gagnagrunns notandi" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Gagnagrunns lykilorð" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nafn gagnagrunns" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Töflusvæði gagnagrunns" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Netþjónn gagnagrunns" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Virkja uppsetningu" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Útskrá" @@ -564,14 +569,18 @@ msgstr "Vinsamlegast breyttu lykilorðinu þÃnu til að tryggja öryggi þitt." msgid "Lost your password?" msgstr "Týndir þú lykilorðinu?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "muna eftir mér" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "<strong>Skrá inn</strong>" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "fyrra" diff --git a/l10n/is/files.po b/l10n/is/files.po index f2e66b04646f80b550b2d663c8e011661695fb22..a1ea0e3040fec1e02e68051a3afc535bec8a75fc 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -18,46 +18,60 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Engin skrá var send inn. Óþekkt villa." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Innsend skrá er stærri en upload_max stillingin à php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er à HTML sniðinu." -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrá skilaði sér" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Ekki nægt pláss tiltækt" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ógild mappa." @@ -69,11 +83,15 @@ msgstr "Skrár" msgid "Unshare" msgstr "Hætta deilingu" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eyða" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Endurskýra" @@ -178,31 +196,31 @@ msgstr "Vefslóð má ekki vera tóm." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nafn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Stærð" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Breytt" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} möppur" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 skrá" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} skrár" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 1fc4aad5716ae7c60997e581f954040a7781b9ac..808dfe5a4c3ed476723ad0a74b63d1cac41da01d 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,45 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nafn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mappa" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} möppur" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 skrá" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} skrár" diff --git a/l10n/is/files_versions.po b/l10n/is/files_versions.po index 1a0acfa5b88979c703ba22767fd95e41f23287d0..5ee90ab20db01103296ddec66da9b1c510e8689d 100644 --- a/l10n/is/files_versions.po +++ b/l10n/is/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -18,10 +18,45 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Saga" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Útgáfur af skrám" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 07750ab9e75bbd3b423dccadabfdcaa7d6c08ba5..fea2c3787841530bba7738749248c0df909658f5 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ekki tókst að hlaða lista frá forrita sÃðu" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Villa við auðkenningu" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Hópur er þegar til" @@ -46,10 +55,6 @@ msgstr "Ógilt netfang" msgid "Unable to delete group" msgstr "Ekki tókst að eyða hóp" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Villa við auðkenningu" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ekki tókst að eyða notenda" @@ -112,7 +117,7 @@ msgstr "Villa" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Er að vista ..." @@ -189,67 +194,83 @@ msgstr "Hlaða niður Andoid hugbúnaði" msgid "Download iOS Client" msgstr "Hlaða niður iOS hugbúnaði" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Lykilorð" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Lykilorði þÃnu hefur verið breytt" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ekki tókst að breyta lykilorðinu þÃnu" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Núverandi lykilorð" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nýtt lykilorð" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "sýna" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Breyta lykilorði" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Netfang" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Netfangið þitt" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Tungumál" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hjálpa við þýðingu" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Notaðu þessa vefslóð til að tengjast ownCloud svæðinu þÃnu" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Útgáfa" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -283,10 +304,6 @@ msgstr "Ótakmarkað" msgid "Other" msgstr "Annað" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Hópstjóri" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 7cfe3d0a425d8d13ea27bcb4822fc8b1aeaf62d2..7bc782a7b3cf300c22f9d91e7c007f39f8ab419c 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,7 +214,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/it/core.po b/l10n/it/core.po index b6f69691eec5f1cc022723afa2bb9cab07847df7..9d72b5b8d2712ab27d0b19f814f0737536edf0da 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" -"Last-Translator: pgcloud <pgcloud@imballaggi.net>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -56,8 +56,9 @@ msgid "No category to add?" msgstr "Nessuna categoria da aggiungere?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Questa categoria esiste già : " +#, php-format +msgid "This category already exists: %s" +msgstr "Questa categoria esiste già : %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -161,59 +162,59 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "oggi" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "ieri" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "mese scorso" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "mesi fa" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "anno scorso" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "anni fa" @@ -472,7 +473,7 @@ msgstr "Modifica le categorie" msgid "Add" msgstr "Aggiungi" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Avviso di sicurezza" @@ -482,71 +483,75 @@ msgid "" "OpenSSL extension." msgstr "Non è disponibile alcun generatore di numeri casuali sicuro. Abilita l'estensione OpenSSL di PHP" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Senza un generatore di numeri casuali sicuro, un malintenzionato potrebbe riuscire a individuare i token di ripristino delle password e impossessarsi del tuo account." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet. Il file .htaccess fornito da ownCloud non funziona. Ti suggeriamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o sposta tale cartella fuori dalla radice del sito." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Crea un <strong>account amministratore</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avanzate" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Cartella dati" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configura il database" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "sarà utilizzato" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Utente del database" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Password del database" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nome del database" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Spazio delle tabelle del database" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Host del database" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Termina la configurazione" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "servizi web nelle tue mani" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Esci" @@ -568,14 +573,18 @@ msgstr "Cambia la password per rendere nuovamente sicuro il tuo account." msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ricorda" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Accedi" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "Accessi alternativi" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedente" diff --git a/l10n/it/files.po b/l10n/it/files.po index 13d26fc18f2dd7676f6e28cae0c9c2229bb113eb..fae888f3261f9c49a9559c232aa32cda4ee46ee3 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -21,46 +21,60 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, file caricato con successo" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato parzialmente caricato" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Cartella temporanea mancante" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Spazio disponibile insufficiente" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Cartella non valida." @@ -72,11 +86,15 @@ msgstr "File" msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "Elimina definitivamente" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Elimina" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Rinomina" @@ -181,31 +199,31 @@ msgstr "L'URL non può essere vuoto." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Dimensione" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificato" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 file" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} file" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index c4035fbac336ea097562a8b4c52000a12199e31b..843b2a267d5c4d82f76d785ed9c340045de2dd00 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-05 23:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,15 +46,15 @@ msgstr "Cifratura" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "La cifratura dei file è abilitata." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "I seguenti tipi di file non saranno cifrati:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Escludi i seguenti tipi di file dalla cifratura:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 8efe697487ced08295715eb15a8ec369deed1de4..f023541c8517882d21f22baba9d569fe3dd24ac5 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-07 23:30+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,31 +18,45 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "Impossibile eliminare %s definitivamente" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "Impossibile ripristinare %s" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "esegui operazione di ripristino" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "elimina il file definitivamente" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Eliminati" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 cartella" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} cartelle" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 file" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} file" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 5bb90cec909834d944dd1671096387b729c4d82b..8953241ed54c324d74b19db3c42989332b441216 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. +# Vincenzo Reale <vinx.reale@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-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" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-07 23:40+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,45 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "Impossibild ripristinare: %s" + +#: history.php:40 +msgid "success" +msgstr "completata" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "Il file %s è stato ripristinato alla versione %s" + +#: history.php:49 +msgid "failure" +msgstr "non riuscita" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "Il file %s non può essere ripristinato alla versione %s" + +#: history.php:68 +msgid "No old versions available" +msgstr "Non sono disponibili versioni precedenti" + +#: history.php:73 +msgid "No path specified" +msgstr "Nessun percorso specificato" + #: js/versions.js:16 msgid "History" msgstr "Cronologia" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "Ripristina un file a una versione precedente facendo clic sul rispettivo pulsante di ripristino" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Controllo di versione dei file" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index dbb539c7bb5f68545b77711741cd3089c333c677..769e953dd0175589a5d8999388ba17aa20052826 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-01 23:30+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-06 23:21+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,6 +28,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Impossibile caricare l'elenco dall'App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Errore di autenticazione" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "Impossibile cambiare il nome visualizzato" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Il gruppo esiste già " @@ -52,10 +61,6 @@ msgstr "Email non valida" msgid "Unable to delete group" msgstr "Impossibile eliminare il gruppo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Errore di autenticazione" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Impossibile eliminare l'utente" @@ -118,7 +123,7 @@ msgstr "Errore" msgid "Updated" msgstr "Aggiornato" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Salvataggio in corso..." @@ -195,67 +200,83 @@ msgstr "Scarica client Android" msgid "Download iOS Client" msgstr "Scarica client iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Password" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "La tua password è cambiata" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Modifica password non riuscita" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Password attuale" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nuova password" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostra" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nome visualizzato" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "Il tuo nome visualizzato è stato cambiato" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "Impossibile cambiare il tuo nome visualizzato" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "Cambia il nome visualizzato" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Il tuo indirizzo email" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Inserisci il tuo indirizzo email per abilitare il recupero della password" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Lingua" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Migliora la traduzione" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versione" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -289,10 +310,6 @@ msgstr "Illimitata" msgid "Other" msgstr "Altro" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Nome visualizzato" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Gruppi amministrati" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 4f07adf6ee3aa5c932b7561e9146b059a32ec68a..9dcf0043194db6fd3727dfdef7f225beb3005f33 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-02 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-07 23:40+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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Usa TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Non utilizzare per le connessioni SSL, fallirà ." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "Da non utilizzare per le connessioni LDAPS, non funzionerà ." #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index e2eb92b6806d5b494794472243b11d6a9b989abb..312d7f72cef4f3bf3a19a4a276b1cb2e442af928 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "è¿½åŠ ã™ã‚‹ã‚«ãƒ†ã‚´ãƒªã¯ã‚ã‚Šã¾ã›ã‚“ã‹ï¼Ÿ" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "ã“ã®ã‚«ãƒ†ã‚´ãƒªã¯ã™ã§ã«å˜åœ¨ã—ã¾ã™: " +#, php-format +msgid "This category already exists: %s" +msgstr "ã“ã®ã‚«ãƒ†ã‚´ãƒªã¯ã™ã§ã«å˜åœ¨ã—ã¾ã™: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "è¨å®š" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "秒å‰" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 分å‰" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} 分å‰" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 時間å‰" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} 時間å‰" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "今日" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "昨日" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} æ—¥å‰" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "一月å‰" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} 月å‰" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "月å‰" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "一年å‰" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "å¹´å‰" @@ -469,7 +470,7 @@ msgstr "カテゴリを編集" msgid "Add" msgstr "è¿½åŠ " -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "ã‚»ã‚ュリティè¦å‘Š" @@ -479,71 +480,75 @@ msgid "" "OpenSSL extension." msgstr "ã‚»ã‚ュアãªä¹±æ•°ç”Ÿæˆå™¨ãŒåˆ©ç”¨å¯èƒ½ã§ã¯ã‚ã‚Šã¾ã›ã‚“。PHPã®OpenSSL拡張を有効ã«ã—ã¦ä¸‹ã•ã„。" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "ã‚»ã‚ュアãªä¹±æ•°ç”Ÿæˆå™¨ãŒç„¡ã„å ´åˆã€æ”»æ’ƒè€…ã¯ãƒ‘スワードリセットã®ãƒˆãƒ¼ã‚¯ãƒ³ã‚’予測ã—ã¦ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã‚’ä¹—ã£å–られるå¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "データディレクトリã¨ãƒ•ã‚¡ã‚¤ãƒ«ãŒæらãインターãƒãƒƒãƒˆã‹ã‚‰ã‚¢ã‚¯ã‚»ã‚¹ã§ãるよã†ã«ãªã£ã¦ã„ã¾ã™ã€‚ownCloudãŒæä¾›ã™ã‚‹ .htaccessファイルãŒæ©Ÿèƒ½ã—ã¦ã„ã¾ã›ã‚“。データディレクトリを全ãアクセスã§ããªã„よã†ã«ã™ã‚‹ã‹ã€ãƒ‡ãƒ¼ã‚¿ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’ウェブサーãƒã®ãƒ‰ã‚ュメントルートã®å¤–ã«ç½®ãよã†ã«ã‚¦ã‚§ãƒ–サーãƒã‚’è¨å®šã™ã‚‹ã“ã¨ã‚’å¼·ããŠå‹§ã‚ã—ã¾ã™ã€‚ " +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "<strong>管ç†è€…アカウント</strong>を作æˆã—ã¦ãã ã•ã„" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "詳細è¨å®š" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "データフォルダ" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "データベースをè¨å®šã—ã¦ãã ã•ã„" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "ãŒä½¿ç”¨ã•ã‚Œã¾ã™" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "データベースã®ãƒ¦ãƒ¼ã‚¶å" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "データベースã®ãƒ‘スワード" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "データベースå" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "データベースã®è¡¨é ˜åŸŸ" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "データベースã®ãƒ›ã‚¹ãƒˆå" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "セットアップを完了ã—ã¾ã™" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "管ç†ä¸‹ã«ã‚るウェブサービス" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "ãƒã‚°ã‚¢ã‚¦ãƒˆ" @@ -565,14 +570,18 @@ msgstr "アカウントä¿è·ã®ç‚ºã€ãƒ‘スワードをå†åº¦ã®å¤‰æ›´ã‚’ãŠé¡˜ msgid "Lost your password?" msgstr "パスワードを忘れã¾ã—ãŸã‹ï¼Ÿ" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "パスワードを記憶ã™ã‚‹" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "ãƒã‚°ã‚¤ãƒ³" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "代替ãƒã‚°ã‚¤ãƒ³" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "å‰" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 97f0b6b3b7393bfae0632a316f154a43ba57091d..52a59def6d63b71ea5ec1b3c5106a9ad887d61b3 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:04+0100\n" -"PO-Revision-Date: 2013-02-03 04:30+0000\n" -"Last-Translator: tt yn <tetuyano+transi@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -22,6 +22,20 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ファイルã¯ä½•ã‚‚アップãƒãƒ¼ãƒ‰ã•ã‚Œã¦ã„ã¾ã›ã‚“。ä¸æ˜Žãªã‚¨ãƒ©ãƒ¼" @@ -58,8 +72,8 @@ msgid "Failed to write to disk" msgstr "ディスクã¸ã®æ›¸ãè¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "利用å¯èƒ½ãªã‚¹ãƒšãƒ¼ã‚¹ãŒå分ã«ã‚ã‚Šã¾ã›ã‚“" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." @@ -73,11 +87,15 @@ msgstr "ファイル" msgid "Unshare" msgstr "共有ã—ãªã„" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "完全ã«å‰Šé™¤ã™ã‚‹" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "削除" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "åå‰ã®å¤‰æ›´" @@ -182,31 +200,31 @@ msgstr "URLã¯ç©ºã«ã§ãã¾ã›ã‚“。" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無効ãªãƒ•ã‚©ãƒ«ãƒ€åã§ã™ã€‚'Shared' ã®åˆ©ç”¨ã¯ ownCloud ãŒäºˆç´„済ã¿ã§ã™ã€‚" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "åå‰" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "サイズ" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "更新日時" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 フォルダ" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ファイル" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 95a52309047e84b011f51cccc977f4864ddda83e..1f13d0117c7ac1cfd52b90b2e12d4d76bf846374 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 02:20+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" @@ -47,15 +47,15 @@ msgstr "æš—å·åŒ–" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "ファイルã®æš—å·åŒ–ã¯æœ‰åŠ¹ã§ã™ã€‚" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "次ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚¿ã‚¤ãƒ—ã¯æš—å·åŒ–ã•ã‚Œã¾ã›ã‚“:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "次ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚¿ã‚¤ãƒ—ã‚’æš—å·åŒ–ã‹ã‚‰é™¤å¤–:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index fb4805b52db7a738a6af57052be429cfc0ee0a86..81066069c869362fd6d3d7219ba3610f0b64dc0d 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 04:10+0000\n" +"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,31 +18,45 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "%s を完全ã«å‰Šé™¤å‡ºæ¥ã¾ã›ã‚“ã§ã—ãŸ" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "%s を復元出æ¥ã¾ã›ã‚“ã§ã—ãŸ" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "復元æ“作を実行ã™ã‚‹" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "ファイルを完全ã«å‰Šé™¤ã™ã‚‹" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "åå‰" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "削除済ã¿" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 フォルダ" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ファイル" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ファイル" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index 5ebe43b4854401f04d91122300c15795b56058bd..79e1e19a4652be39b047c965377fe6e50a8cea30 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -4,14 +4,15 @@ # # Translators: # Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. +# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 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: 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" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 04:20+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" @@ -19,10 +20,45 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "å…ƒã«æˆ»ã›ã¾ã›ã‚“ã§ã—ãŸ: %s" + +#: history.php:40 +msgid "success" +msgstr "æˆåŠŸ" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "ファイル %s ã‚’ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %s ã«æˆ»ã—ã¾ã—ãŸ" + +#: history.php:49 +msgid "failure" +msgstr "失敗" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "ファイル %s ã‚’ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %s ã«æˆ»ã›ã¾ã›ã‚“ã§ã—ãŸ" + +#: history.php:68 +msgid "No old versions available" +msgstr "利用å¯èƒ½ãªå¤ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¯ã‚ã‚Šã¾ã›ã‚“" + +#: history.php:73 +msgid "No path specified" +msgstr "パスãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“" + #: js/versions.js:16 msgid "History" msgstr "å±¥æ´" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "ã‚‚ã¨ã«æˆ»ã™ãƒœã‚¿ãƒ³ã‚’クリックã™ã‚‹ã¨ã€ãƒ•ã‚¡ã‚¤ãƒ«ã‚’éŽåŽ»ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«æˆ»ã—ã¾ã™" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ファイルã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ç®¡ç†" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 80f56e5c654e9cb8743966513487cd43d70fed54..d8f0f19d63d0d7c05da278c5b080a7f85856a339 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 04:30+0000\n" -"Last-Translator: tt yn <tetuyano+transi@gmail.com>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 02:20+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" @@ -26,6 +26,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "アプリストアã‹ã‚‰ãƒªã‚¹ãƒˆã‚’ãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "èªè¨¼ã‚¨ãƒ©ãƒ¼" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "表示åを変更ã§ãã¾ã›ã‚“" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "グループã¯æ—¢ã«å˜åœ¨ã—ã¦ã„ã¾ã™" @@ -50,10 +59,6 @@ msgstr "無効ãªãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹" msgid "Unable to delete group" msgstr "グループを削除ã§ãã¾ã›ã‚“" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "èªè¨¼ã‚¨ãƒ©ãƒ¼" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ユーザを削除ã§ãã¾ã›ã‚“" @@ -116,7 +121,7 @@ msgstr "エラー" msgid "Updated" msgstr "更新済ã¿" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "ä¿å˜ä¸..." @@ -193,67 +198,83 @@ msgstr "Androidクライアントをダウンãƒãƒ¼ãƒ‰" msgid "Download iOS Client" msgstr "iOSクライアントをダウンãƒãƒ¼ãƒ‰" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "パスワード" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "パスワードを変更ã—ã¾ã—ãŸ" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "パスワードを変更ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ç¾åœ¨ã®ãƒ‘スワード" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "æ–°ã—ã„パスワード" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "表示" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "パスワードを変更" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "表示å" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "ã‚ãªãŸã®è¡¨ç¤ºåを変更ã—ã¾ã—ãŸ" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "ã‚ãªãŸã®è¡¨ç¤ºåを変更ã§ãã¾ã›ã‚“" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "表示åを変更" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ã‚ãªãŸã®ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "※パスワード回復を有効ã«ã™ã‚‹ã«ã¯ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã®å…¥åŠ›ãŒå¿…è¦ã§ã™" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "言語" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "翻訳ã«å”力ã™ã‚‹" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ファイルマãƒãƒ¼ã‚¸ãƒ£ã§ownCloudã«æŽ¥ç¶šã™ã‚‹éš›ã¯ã“ã®ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’利用ã—ã¦ãã ã•ã„" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -287,10 +308,6 @@ msgstr "無制é™" msgid "Other" msgstr "ãã®ä»–" -#: templates/users.php:80 -msgid "Display Name" -msgstr "表示å" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "グループ管ç†è€…" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index f899f457f15493b3666dd16e64a3434ce8376bdc..0a8dc59415329853029a974f7dad98501ca15380 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 04:40+0000\n" -"Last-Translator: tt yn <tetuyano+transi@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 04:10+0000\n" +"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -217,8 +217,8 @@ msgid "Use TLS" msgstr "TLSを利用" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "SSL接続ã«åˆ©ç”¨ã—ãªã„ã§ãã ã•ã„ã€å¤±æ•—ã—ã¾ã™ã€‚" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "LDAPS接続ã®ãŸã‚ã«è¿½åŠ ã§ãれを利用ã—ãªã„ã§ä¸‹ã•ã„。失敗ã—ã¾ã™ã€‚" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index ab4062e7f6018ed86b23aa59613d0c0f26a6720b..9874547f0384f125a418840e4d48cd2d9386ade7 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -51,8 +51,9 @@ msgid "No category to add?" msgstr "áƒáƒ áƒáƒ ის კáƒáƒ¢áƒ”გáƒáƒ ირდáƒáƒ¡áƒáƒ›áƒáƒ¢áƒ”ბლáƒáƒ“?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "კáƒáƒ¢áƒ”გáƒáƒ ირუკვე áƒáƒ სებáƒáƒ‘ს" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -156,59 +157,59 @@ msgstr "ნáƒáƒ”მბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "პáƒáƒ áƒáƒ›áƒ”ტრები" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "წáƒáƒ›áƒ˜áƒ¡ წინ" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "დღეს" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "გáƒáƒ¡áƒ£áƒš თვეში" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "ბáƒáƒšáƒ წელს" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "წლის წინ" @@ -467,7 +468,7 @@ msgstr "კáƒáƒ¢áƒ”გáƒáƒ იების რედáƒáƒ¥áƒ¢áƒ˜áƒ ებáƒ" msgid "Add" msgstr "დáƒáƒ›áƒáƒ¢áƒ”ბáƒ" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "უსáƒáƒ¤áƒ თხáƒáƒ”ბის გáƒáƒ¤áƒ თხილებáƒ" @@ -477,71 +478,75 @@ msgid "" "OpenSSL extension." msgstr "შემთხვევითი სიმბáƒáƒšáƒáƒ”ბის გენერáƒáƒ¢áƒáƒ ი áƒáƒ áƒáƒ სებáƒáƒ‘ს, გთხáƒáƒ•áƒ— ჩáƒáƒ თáƒáƒ— PHP OpenSSL გáƒáƒ¤áƒáƒ თáƒáƒ”ბáƒ." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "შემთხვევითი სიმბáƒáƒšáƒáƒ”ბის გენერáƒáƒ¢áƒáƒ ის გáƒáƒ ეშე, შემტევმრშეიძლებრáƒáƒ›áƒáƒ˜áƒªáƒœáƒáƒ¡ თქვენი პáƒáƒ áƒáƒšáƒ˜ შეგიცვáƒáƒšáƒáƒ— ის დრდáƒáƒ”უფლáƒáƒ¡ თქვენს ექáƒáƒ£áƒœáƒ—ს." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "შექმენი áƒáƒ“მინ ექáƒáƒ£áƒœáƒ¢áƒ˜" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Advanced" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "მáƒáƒœáƒáƒªáƒ”მთრსáƒáƒ¥áƒáƒ¦áƒáƒšáƒ“ე" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ბáƒáƒ–ის კáƒáƒœáƒ¤áƒ˜áƒ’ურირებáƒ" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "გáƒáƒ›áƒáƒ§áƒ”ნებული იქნებáƒ" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ბáƒáƒ–ის მáƒáƒ›áƒ®áƒ›áƒáƒ ებელი" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ბáƒáƒ–ის პáƒáƒ áƒáƒšáƒ˜" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ბáƒáƒ–ის სáƒáƒ®áƒ”ლი" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "ბáƒáƒ–ის ცხრილის ზáƒáƒ›áƒ" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "ბáƒáƒ–ის ჰáƒáƒ¡áƒ¢áƒ˜" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡ დáƒáƒ¡áƒ ულებáƒ" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "თქვენი კáƒáƒœáƒ¢áƒ áƒáƒšáƒ˜áƒ¡ ქვეშ მყáƒáƒ¤áƒ˜ ვებ სერვისები" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "გáƒáƒ›áƒáƒ¡áƒ•áƒšáƒ" @@ -563,14 +568,18 @@ msgstr "" msgid "Lost your password?" msgstr "დáƒáƒ’áƒáƒ•áƒ˜áƒ¬áƒ§áƒ“áƒáƒ— პáƒáƒ áƒáƒšáƒ˜?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "დáƒáƒ›áƒáƒ®áƒ¡áƒáƒ•áƒ ებáƒ" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "შესვლáƒ" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "წინáƒ" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 1866d1f711ae936a01580e2e9f00d25a2b749227..640d3d1fabdc71ab5a1d0a4f8a6a7f468212539f 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,60 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "áƒáƒáƒªáƒ“áƒáƒ›áƒ áƒáƒ დáƒáƒ¤áƒ˜áƒ¥áƒ¡áƒ˜áƒ დáƒ, ფáƒáƒ˜áƒšáƒ˜ წáƒáƒ მáƒáƒ¢áƒ”ბით áƒáƒ˜áƒ¢áƒ•áƒ˜áƒ თáƒ" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "áƒáƒ¢áƒ•áƒ˜áƒ თული ფáƒáƒ˜áƒšáƒ˜ áƒáƒáƒáƒ ბებს MAX_FILE_SIZE დირექტივáƒáƒ¡, რáƒáƒ›áƒ”ლიც მითითებულირHTML ფáƒáƒ მáƒáƒ¨áƒ˜" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "áƒáƒ¢áƒ•áƒ˜áƒ თული ფáƒáƒ˜áƒšáƒ˜ მხáƒáƒšáƒáƒ“ ნáƒáƒ¬áƒ˜áƒšáƒáƒ‘რივ áƒáƒ˜áƒ¢áƒ•áƒ˜áƒ თáƒ" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ფáƒáƒ˜áƒšáƒ˜ áƒáƒ áƒáƒ˜áƒ¢áƒ•áƒ˜áƒ თáƒ" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "დრáƒáƒ”ბითი სáƒáƒ¥áƒáƒ¦áƒáƒšáƒ“ე áƒáƒ áƒáƒ სებáƒáƒ‘ს" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "შეცდáƒáƒ›áƒ დისკზე ჩáƒáƒ¬áƒ”რისáƒáƒ¡" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +83,15 @@ msgstr "ფáƒáƒ˜áƒšáƒ”ბი" msgid "Unshare" msgstr "გáƒáƒ–იáƒáƒ ების მáƒáƒ®áƒ¡áƒœáƒ" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "წáƒáƒ¨áƒšáƒ" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "გáƒáƒ“áƒáƒ ქმევáƒ" @@ -178,31 +196,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "სáƒáƒ®áƒ”ლი" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "ზáƒáƒ›áƒ" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "შეცვლილიáƒ" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 სáƒáƒ¥áƒáƒ¦áƒáƒšáƒ“ე" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} სáƒáƒ¥áƒáƒ¦áƒáƒšáƒ“ე" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ფáƒáƒ˜áƒšáƒ˜" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ფáƒáƒ˜áƒšáƒ˜" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 92a719c9523103f3827138bb3ddac914a0c00446..0b9d8c59f9c43f8be948ae4b5f99a69aa80fe838 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "სáƒáƒ®áƒ”ლი" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 სáƒáƒ¥áƒáƒ¦áƒáƒšáƒ“ე" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} სáƒáƒ¥áƒáƒ¦áƒáƒšáƒ“ე" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ფáƒáƒ˜áƒšáƒ˜" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ფáƒáƒ˜áƒšáƒ˜" diff --git a/l10n/ka_GE/files_versions.po b/l10n/ka_GE/files_versions.po index aafddd05a3cf1aef375f984e522f53ef5de35d28..56f77fc85270532cc4e1c5d5fa3cea964362ecf5 100644 --- a/l10n/ka_GE/files_versions.po +++ b/l10n/ka_GE/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +17,45 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 7c1f5129d4cff1e1432fb857e4de882a783588ec..2f73884030edcf3708488cc09b136dd21caf574b 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ”ბის სირვერჩáƒáƒ›áƒáƒ˜áƒ¢áƒ•áƒ˜áƒ თრApp Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "áƒáƒ•áƒ—ენტიფიკáƒáƒªáƒ˜áƒ˜áƒ¡ შეცდáƒáƒ›áƒ" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "ჯგუფი უკვე áƒáƒ სებáƒáƒ‘ს" @@ -46,10 +55,6 @@ msgstr "áƒáƒ áƒáƒ¡áƒ¬áƒáƒ ი იმეილი" msgid "Unable to delete group" msgstr "ჯგუფის წáƒáƒ¨áƒšáƒ ვერმáƒáƒ®áƒ”რხდáƒ" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "áƒáƒ•áƒ—ენტიფიკáƒáƒªáƒ˜áƒ˜áƒ¡ შეცდáƒáƒ›áƒ" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "მáƒáƒ›áƒ®áƒ›áƒáƒ ებლის წáƒáƒ¨áƒšáƒ ვერმáƒáƒ®áƒ”რხდáƒ" @@ -112,7 +117,7 @@ msgstr "შეცდáƒáƒ›áƒ" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "შენáƒáƒ®áƒ•áƒ..." @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "პáƒáƒ áƒáƒšáƒ˜" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "თქვენი პáƒáƒ áƒáƒšáƒ˜ შეიცვáƒáƒšáƒ" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "თქვენი პáƒáƒ áƒáƒšáƒ˜ áƒáƒ შეიცვáƒáƒšáƒ" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "მიმდინáƒáƒ ე პáƒáƒ áƒáƒšáƒ˜" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "áƒáƒ®áƒáƒšáƒ˜ პáƒáƒ áƒáƒšáƒ˜" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "გáƒáƒ›áƒáƒáƒ©áƒ˜áƒœáƒ”" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "პáƒáƒ áƒáƒšáƒ˜áƒ¡ შეცვლáƒ" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "იმეილი" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "თქვენი იმეილ მისáƒáƒ›áƒáƒ თი" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "შეáƒáƒ•áƒ¡áƒ”თ იმეილ მისáƒáƒ›áƒáƒ თის ველი პáƒáƒ áƒáƒšáƒ˜áƒ¡ áƒáƒ¦áƒ¡áƒáƒ“გენáƒáƒ“" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "ენáƒ" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "თáƒáƒ გმნის დáƒáƒ®áƒ›áƒáƒ ებáƒ" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -283,10 +304,6 @@ msgstr "" msgid "Other" msgstr "სხვáƒ" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "ჯგუფის áƒáƒ“მინისტრáƒáƒ¢áƒáƒ ი" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index a84ba3cd3c897b458da25e11f8956449f4feab73..2e2cd16393e53fe74c2211d1bbcb4ed81d111871 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: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 765fcfeba04ccfdc190f842b49278f70786fad91..72fae94a3df5cbcfc0ad1083afea72d86b4206ec 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" -"Last-Translator: Shinjo Park <kde@peremen.name>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -55,8 +55,9 @@ msgid "No category to add?" msgstr "ì¶”ê°€í• ë¶„ë¥˜ê°€ 없습니까?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "ì´ ë¶„ë¥˜ëŠ” ì´ë¯¸ 존재합니다:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +161,59 @@ msgstr "11ì›”" msgid "December" msgstr "12ì›”" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ì„¤ì •" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "ì´ˆ ì „" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1분 ì „" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes}분 ì „" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1시간 ì „" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours}시간 ì „" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "오늘" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "ì–´ì œ" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days}ì¼ ì „" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "지난 달" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months}개월 ì „" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "개월 ì „" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "ìž‘ë…„" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "ë…„ ì „" @@ -471,7 +472,7 @@ msgstr "분류 편집" msgid "Add" msgstr "추가" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "보안 ê²½ê³ " @@ -481,71 +482,75 @@ msgid "" "OpenSSL extension." msgstr "ì•ˆì „í•œ 난수 ìƒì„±ê¸°ë¥¼ ì‚¬ìš©í• ìˆ˜ 없습니다. PHPì˜ OpenSSL í™•ìž¥ì„ í™œì„±í™”í•´ 주ì‹ì‹œì˜¤." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "ì•ˆì „í•œ 난수 ìƒì„±ê¸°ë¥¼ 사용하지 않으면 공격ìžê°€ 암호 초기화 í† í°ì„ 추측하여 ê³„ì •ì„ íƒˆì·¨í• ìˆ˜ 있습니다." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "ë°ì´í„° ë””ë ‰í„°ë¦¬ì™€ 파ì¼ì„ ì¸í„°ë„·ì—ì„œ ì ‘ê·¼í• ìˆ˜ 있는 것 같습니다. ownCloudì—ì„œ ì œê³µí•œ .htaccess 파ì¼ì´ ìž‘ë™í•˜ì§€ 않습니다. 웹 서버를 다시 ì„¤ì •í•˜ì—¬ ë°ì´í„° ë””ë ‰í„°ë¦¬ì— ì ‘ê·¼í• ìˆ˜ ì—†ë„ë¡ í•˜ê±°ë‚˜ 문서 루트 바깥쪽으로 옮기는 ê²ƒì„ ì¶”ì²œí•©ë‹ˆë‹¤." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "<strong>ê´€ë¦¬ìž ê³„ì •</strong> 만들기" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "ê³ ê¸‰" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "ë°ì´í„° í´ë”" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ë°ì´í„°ë² ì´ìŠ¤ ì„¤ì •" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "사용ë ì˜ˆì •" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ë°ì´í„°ë² ì´ìŠ¤ 사용ìž" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ë°ì´í„°ë² ì´ìŠ¤ 암호" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ë°ì´í„°ë² ì´ìŠ¤ ì´ë¦„" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "ë°ì´í„°ë² ì´ìŠ¤ í…Œì´ë¸” 공간" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "ë°ì´í„°ë² ì´ìŠ¤ 호스트" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "설치 완료" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ë‚´ê°€ 관리하는 웹 서비스" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "로그아웃" @@ -567,14 +572,18 @@ msgstr "ê³„ì •ì˜ ì•ˆì „ì„ ìœ„í•˜ì—¬ 암호를 변경하ì‹ì‹œì˜¤." msgid "Lost your password?" msgstr "암호를 잊으셨습니까?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "기억하기" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "로그ì¸" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "ì´ì „" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 02a13830991a9c3bd2d6eb865146d17dc12a0481..3b842ed252526609c6934a483fafd89378e0ebaf 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -23,46 +23,60 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "파ì¼ì´ 업로드ë˜ì§€ 않았습니다. ì•Œ 수 없는 오류입니다" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "ì—…ë¡œë“œì— ì„±ê³µí•˜ì˜€ìŠµë‹ˆë‹¤." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파ì¼ì´ php.iniì˜ upload_max_filesize보다 í½ë‹ˆë‹¤:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "업로드한 파ì¼ì´ HTML ë¬¸ì„œì— ì§€ì •í•œ MAX_FILE_SIZE보다 ë” í¼" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "파ì¼ì´ 부분ì 으로 업로드ë¨" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ì—…ë¡œë“œëœ íŒŒì¼ ì—†ìŒ" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ìž„ì‹œ í´ë”ê°€ 사ë¼ì§" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "디스í¬ì— 쓰지 못했습니다" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "ì—¬ìœ ê³µê°„ì´ ë¶€ì¡±í•©ë‹ˆë‹¤" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "올바르지 ì•Šì€ ë””ë ‰í„°ë¦¬ìž…ë‹ˆë‹¤." @@ -74,11 +88,15 @@ msgstr "파ì¼" msgid "Unshare" msgstr "ê³µìœ í•´ì œ" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ì‚ì œ" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ì´ë¦„ 바꾸기" @@ -183,31 +201,31 @@ msgstr "URLì„ ìž…ë ¥í•´ì•¼ 합니다." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "í´ë” ì´ë¦„ì´ ìœ íš¨í•˜ì§€ 않습니다. " -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "ì´ë¦„" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "í¬ê¸°" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ìˆ˜ì •ë¨" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "í´ë” 1ê°œ" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "í´ë” {count}ê°œ" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "íŒŒì¼ 1ê°œ" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "íŒŒì¼ {count}ê°œ" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index a87ddd6b8dd0fec5e60c8314a7950c9719dfa183..85904a36e17d7b33e0b9cc9737d33a6a737fd695 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,45 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "ì´ë¦„" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "í´ë” 1ê°œ" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "í´ë” {count}ê°œ" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "íŒŒì¼ 1ê°œ" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "íŒŒì¼ {count}ê°œ" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index 0fe524b7701685c6fdf5c99b9a06f42e2765f3ce..9e99e48e77159f8770015315596cb4b6027f8827 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -19,10 +19,45 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ì—사" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "íŒŒì¼ ë²„ì „ 관리" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 62097ea4a5a6f61c4401a1e7c8ec26da4a7e4a4c..65a8c9d6e2222a345a380fb6b3a2de65395e3165 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -26,6 +26,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "앱 ìŠ¤í† ì–´ì—ì„œ 목ë¡ì„ ê°€ì ¸ì˜¬ 수 없습니다" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "ì¸ì¦ 오류" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "ê·¸ë£¹ì´ ì´ë¯¸ 존재합니다." @@ -50,10 +59,6 @@ msgstr "ìž˜ëª»ëœ ì´ë©”ì¼ ì£¼ì†Œ" msgid "Unable to delete group" msgstr "ê·¸ë£¹ì„ ì‚ì œí• ìˆ˜ 없습니다." -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "ì¸ì¦ 오류" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "사용ìžë¥¼ ì‚ì œí• ìˆ˜ 없습니다." @@ -116,7 +121,7 @@ msgstr "오류" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "ì €ìž¥ 중..." @@ -193,67 +198,83 @@ msgstr "안드로ì´ë“œ í´ë¼ì´ì–¸íŠ¸ 다운로드" msgid "Download iOS Client" msgstr "iOS í´ë¼ì´ì–¸íŠ¸ 다운로드" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "암호" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "암호가 변경ë˜ì—ˆìŠµë‹ˆë‹¤" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "암호를 ë³€ê²½í• ìˆ˜ ì—†ìŒ" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "현재 암호" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "새 암호" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "ë³´ì´ê¸°" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "암호 변경" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "표시 ì´ë¦„" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "ì´ë©”ì¼" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ì´ë©”ì¼ ì£¼ì†Œ" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "암호 찾기 ê¸°ëŠ¥ì„ ì‚¬ìš©í•˜ë ¤ë©´ ì´ë©”ì¼ ì£¼ì†Œë¥¼ ìž…ë ¥í•˜ì‹ì‹œì˜¤." -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "언어" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "ë²ˆì— ë•ê¸°" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "íŒŒì¼ ê´€ë¦¬ìžì—ì„œ ownCloudì— ì ‘ì†í•˜ë ¤ë©´ ì´ ì£¼ì†Œë¥¼ 사용하ì‹ì‹œì˜¤." -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "ë²„ì „" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -287,10 +308,6 @@ msgstr "ë¬´ì œí•œ" msgid "Other" msgstr "기타" -#: templates/users.php:80 -msgid "Display Name" -msgstr "표시 ì´ë¦„" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "그룹 관리ìž" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 93e6a601aa0543846be83e90df8dd8f6fc7a6801..1402718d755eb8659909a3d0a91e4518483e99a5 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "TLS 사용" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "SSL ì—°ê²° ì‹œ 사용하는 경우 ì—°ê²°ë˜ì§€ 않습니다." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index f05ab88b03092995b21d55e1f885f1f775048459..f665ac3e0afff487b8a349562d93f172066c6419 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -51,7 +51,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -156,59 +157,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -467,7 +468,7 @@ msgstr "" msgid "Add" msgstr "زیادکردن" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -477,71 +478,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "هه‌ڵبژاردنی پیشكه‌وتوو" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "زانیاری Ùۆڵده‌ر" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "به‌كارهێنه‌ری داتابه‌یس" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "وشه‌ی نهێنی داتا به‌یس" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ناوی داتابه‌یس" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "هۆستی داتابه‌یس" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "كۆتایی هات ده‌ستكاریه‌كان" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "چوونەدەرەوە" @@ -563,14 +568,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "پێشتر" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index d8cb9b82a79436273e436fdecd747aa95eee887e..a94f46369662e609401c0e9953ab3bdb1576b447 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,60 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +82,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +195,31 @@ msgstr "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "ناو" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index f1318338be402a4f394ef5d226df31519934882e..37690656b8bf29aae1737d69b81f57917c8969b7 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "ناو" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/ku_IQ/files_versions.po b/l10n/ku_IQ/files_versions.po index b3fa1af6357b8cd90832f0ad93d5d156353d8bc6..d241d5d28b974669b8661767e803ec2bea8a45a7 100644 --- a/l10n/ku_IQ/files_versions.po +++ b/l10n/ku_IQ/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -18,10 +18,45 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "مێژوو" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "وه‌شانی په‌ڕگه" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index adb4e79653e2687de17abc9edb3d9f237e2e7322..7973f6b16d5456230be9d009b208c9a0bb84cff2 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "هه‌ڵه" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "وشەی نهێنی نوێ" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "ئیمه‌یل" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -282,10 +303,6 @@ msgstr "" msgid "Other" msgstr "" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 33cf75e5ea1dab1fd3eafd4d72a3938569087202..88137f8ee4722baa41399756006bd4114d539a7f 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/lb/core.po b/l10n/lb/core.po index b365652b49a2c2982e94eabb3199af58bd71a300..a3e8cd581d7191babb68ddbc0e17479fba2818ca 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "Keng Kategorie fir bäizesetzen?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Des Kategorie existéiert schonn:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Astellungen" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "vrun 1 Stonn" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "vru {hours} Stonnen" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "Läschte Mount" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "vru {months} Méint" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "Méint hier" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "Läscht Joer" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "Joren hier" @@ -468,7 +469,7 @@ msgstr "Kategorien editéieren" msgid "Add" msgstr "Bäisetzen" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Sécherheets Warnung" @@ -478,71 +479,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "En <strong>Admin Account</strong> uleeën" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avancéiert" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Daten Dossier" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Datebank konfiguréieren" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "wärt benotzt ginn" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Datebank Benotzer" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Datebank Passwuert" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Datebank Tabelle-Gréisst" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Datebank Server" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Installatioun ofschléissen" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Web Servicer ënnert denger Kontroll" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Ausloggen" @@ -564,14 +569,18 @@ msgstr "" msgid "Lost your password?" msgstr "Passwuert vergiess?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "verhalen" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Log dech an" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "zeréck" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 01de41c0d8eb659e0d945f40c43c3f87cd1450e8..fd8f5e4c98c9116dfb87161a7c3c15499bc86bba 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,60 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Et ass keng Datei ropgelueden ginn" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +83,15 @@ msgstr "Dateien" msgid "Unshare" msgstr "Net méi deelen" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Läschen" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -178,31 +196,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Numm" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Gréisst" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Geännert" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 7ddea15d47edbe46db95fa0ce92421b99063d702..2d2039da8de5267c4508bff10c7c15d82af92375 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Numm" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po index 3eeeda4f0635e9b4247671892ed36fe24276d8ee..1b9a2bc1c06b8ee38d49beffd52d211d59002eb7 100644 --- a/l10n/lb/files_versions.po +++ b/l10n/lb/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-27 00:04+0100\n" -"PO-Revision-Date: 2013-01-26 12:27+0000\n" -"Last-Translator: sim0n <sim0n@trypill.org>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -18,10 +18,45 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historique" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Fichier's Versionéierung " diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index e2d2d5243d3074598165295e37a5544157aa2cb6..021e271d8fe8d265e16e2e93250b55d74076403c 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Konnt Lescht net vum App Store lueden" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Authentifikatioun's Fehler" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -46,10 +55,6 @@ msgstr "Ongülteg e-mail" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Authentifikatioun's Fehler" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -112,7 +117,7 @@ msgstr "Fehler" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Speicheren..." @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passwuert" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Konnt däin Passwuert net änneren" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Momentan 't Passwuert" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Neit Passwuert" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "weisen" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Passwuert änneren" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Deng Email Adress" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Gëff eng Email Adress an fir d'Passwuert recovery ze erlaben" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Sprooch" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hëllef iwwersetzen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -283,10 +304,6 @@ msgstr "" msgid "Other" msgstr "Aner" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Gruppen Admin" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index a7cdcba6fe6621c49f634fdd0062b5d38e9a75cf..dae69e9634d27903c5bd5d21758e18a664171c0b 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 7d3c632fd08f68395a273fd429560f22819ef273..423db4d65921f44121ce87545a918bad2a06c928 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "NepridÄ—site jokios kategorijos?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Tokia kategorija jau yra:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "prieÅ¡ sekundÄ™" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "PrieÅ¡ 1 minutÄ™" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "PrieÅ¡ {count} minutes" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "Å¡iandien" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "vakar" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "PrieÅ¡ {days} dienas" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "praeitÄ… mÄ—nesį" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "prieÅ¡ mÄ—nesį" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "praeitais metais" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "prieÅ¡ metus" @@ -468,7 +469,7 @@ msgstr "Redaguoti kategorijas" msgid "Add" msgstr "PridÄ—ti" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Saugumo praneÅ¡imas" @@ -478,71 +479,75 @@ msgid "" "OpenSSL extension." msgstr "Saugaus atsitiktinių skaiÄių generatoriaus nÄ—ra, praÅ¡ome įjungti PHP OpenSSL modulį." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Be saugaus atsitiktinių skaiÄių generatoriaus, piktavaliai gali atspÄ—ti JÅ«sų slaptažodį ir pasisavinti paskyrÄ…." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "JÅ«sų duomenų aplankalas ir JÅ«sų failai turbÅ«t yra pasiekiami per internetÄ…. Failas .htaccess, kuris duodamas, neveikia. Mes rekomenduojame susitvarkyti savo nustatymsu taip, kad failai nebÅ«tų pasiekiami per internetÄ…, arba persikelti juos kitur." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Sukurti <strong>administratoriaus paskyrÄ…</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "IÅ¡plÄ—stiniai" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Duomenų katalogas" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Nustatyti duomenų bazÄ™" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "bus naudojama" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Duomenų bazÄ—s vartotojas" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Duomenų bazÄ—s slaptažodis" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Duomenų bazÄ—s pavadinimas" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Duomenų bazÄ—s loginis saugojimas" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Duomenų bazÄ—s serveris" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Baigti diegimÄ…" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "jÅ«sų valdomos web paslaugos" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Atsijungti" @@ -564,14 +569,18 @@ msgstr "PraÅ¡ome pasikeisti slaptažodį dar kartÄ…, dÄ—l paskyros saugumo." msgid "Lost your password?" msgstr "PamirÅ¡ote slaptažodį?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "prisiminti" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Prisijungti" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "atgal" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 4776b8e8f1073e876f0364795c7d80448659ed69..33d7eb0d16c8e9221bbc4041e6989beab8ecc742 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,60 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Klaidų nÄ—ra, failas įkeltas sÄ—kmingai" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Ä®keliamo failo dydis virÅ¡ija MAX_FILE_SIZE parametrÄ…, kuris yra nustatytas HTML formoje" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nebuvo įkeltas nÄ— vienas failas" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "NÄ—ra laikinojo katalogo" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Nepavyko įraÅ¡yti į diskÄ…" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +85,15 @@ msgstr "Failai" msgid "Unshare" msgstr "Nebesidalinti" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "IÅ¡trinti" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Pervadinti" @@ -180,31 +198,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Dydis" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Pakeista" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 failas" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} failai" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index af1841dd64713d4af4cb46d00cca15b7c46641e7..b5e0d72e3f338441dd004594ae007208c22f9839 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ 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/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Pavadinimas" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 aplankalas" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 failas" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} failai" diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po index b3cf7ff9e978ab8b5ef9a628ced95a88ec2d37a9..42087e7e323cd27d948e99443f08876777d0e2a3 100644 --- a/l10n/lt_LT/files_versions.po +++ b/l10n/lt_LT/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +19,45 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Istorija" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Failų versijos" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 1499763e4ffa4923417d7a78e1ea83a9b93babe8..e1ef964d696b148abde96e9cb2addfb5a363be14 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Neįmanoma įkelti sÄ…raÅ¡o iÅ¡ Programų Katalogo" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentikacijos klaida" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -47,10 +56,6 @@ msgstr "Netinkamas el. paÅ¡tas" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentikacijos klaida" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -113,7 +118,7 @@ msgstr "Klaida" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Saugoma.." @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Slaptažodis" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "JÅ«sų slaptažodis buvo pakeistas" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Neįmanoma pakeisti slaptažodžio" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Dabartinis slaptažodis" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Naujas slaptažodis" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "rodyti" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "El. paÅ¡tas" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "JÅ«sų el. paÅ¡to adresas" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "PamirÅ¡to slaptažodžio atkÅ«rimui įveskite savo el. paÅ¡to adresÄ…" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Kalba" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "PadÄ—kite iÅ¡versti" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -284,10 +305,6 @@ msgstr "" msgid "Other" msgstr "Kita" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 360405cc4d1cac05b3d0ccf5b8bd9a71c21ccbb0..a0eca3ff0fc86a28e15cfe1981edea365e3f9388 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,7 +214,7 @@ msgid "Use TLS" msgstr "Naudoti TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 8c8994628c9828e50baead94923401fa23f48a10..c64e2073edeaa589e713371b8ccec55f6c3c4b40 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 19:10+0000\n" -"Last-Translator: RÅ«dolfs Mazurs <rudolfs.mazurs@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "Nav kategoriju, ko pievienot?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Å Äda kategorija jau eksistÄ“:" +#, php-format +msgid "This category already exists: %s" +msgstr "Å Äda kategorija jau eksistÄ“ — %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "IestatÄ«jumi" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "pirms 1 minÅ«tes" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minÅ«tÄ“m" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "pirms {hours} stundÄm" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "Å¡odien" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "vakar" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "pirms {days} dienÄm" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "pagÄjuÅ¡ajÄ mÄ“nesÄ«" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "pirms {months} mÄ“neÅ¡iem" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "mÄ“neÅ¡us atpakaļ" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "gÄjuÅ¡ajÄ gadÄ" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "gadus atpakaļ" @@ -468,7 +469,7 @@ msgstr "Rediģēt kategoriju" msgid "Add" msgstr "Pievienot" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "BrÄ«dinÄjums par droÅ¡Ä«bu" @@ -478,71 +479,75 @@ msgid "" "OpenSSL extension." msgstr "Nav pieejams droÅ¡s nejauÅ¡u skaitļu Ä£enerators. LÅ«dzu, aktivÄ“jiet PHP OpenSSL paplaÅ¡inÄjumu." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Bez droÅ¡a nejauÅ¡u skaitļu Ä£eneratora uzbrucÄ“js var paredzÄ“t paroļu atjaunoÅ¡anas marÄ·ierus un pÄrņem jÅ«su kontu." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "JÅ«su datu direktorija un datnes visdrÄ«zÄk ir pieejamas no interneta. ownCloud nodroÅ¡inÄtÄ .htaccess datne nedarbojas. MÄ“s iesakÄm konfigurÄ“t serveri tÄ, lai datu direktorija vairs nebÅ«tu pieejama, vai arÄ« pÄrvietojiet datu direktoriju Ärpus tÄ«mekļa servera dokumentu saknes." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Izveidot <strong>administratora kontu</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "PaplaÅ¡inÄti" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datu mape" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "KonfigurÄ“t datubÄzi" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "tiks izmantots" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "DatubÄzes lietotÄjs" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "DatubÄzes parole" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "DatubÄzes nosaukums" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "DatubÄzes tabulas telpa" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "DatubÄzes serveris" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Pabeigt iestatÄ«Å¡anu" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "jÅ«su vadÄ«bÄ esoÅ¡ie tÄ«mekļa servisi" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "IzrakstÄ«ties" @@ -572,6 +577,10 @@ msgstr "atcerÄ“ties" msgid "Log in" msgstr "IerakstÄ«ties" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "AlternatÄ«vÄs pieteikÅ¡anÄs" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "iepriekÅ¡Ä“jÄ" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 34debdd2e72c49410ce241e28a67e9fb93098d08..803cbc1725341467823d92f87c1cb8ec034eeead 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 18:40+0000\n" -"Last-Translator: RÅ«dolfs Mazurs <rudolfs.mazurs@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -20,6 +20,20 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Netika augÅ¡upielÄdÄ“ta neviena datne. NezinÄma kļūda" @@ -56,8 +70,8 @@ msgid "Failed to write to disk" msgstr "NeizdevÄs saglabÄt diskÄ" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Nepietiek brÄ«vas vietas" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." @@ -71,11 +85,15 @@ msgstr "Datnes" msgid "Unshare" msgstr "PÄrtraukt dalÄ«Å¡anos" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "DzÄ“st pavisam" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "DzÄ“st" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "PÄrsaukt" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index a289289f89e234695f0f7590a98e815f8ba78afb..c5f33459a225ff9914d1de03f9030b9eda12fd5d 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 20:40+0000\n" +"Last-Translator: RÅ«dolfs Mazurs <rudolfs.mazurs@gmail.com>\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" @@ -46,15 +46,15 @@ msgstr "Å ifrÄ“Å¡ana" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Datņu Å¡ifrÄ“Å¡ana ir aktivÄ“ta." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "SekojoÅ¡Äs datnes netiks Å¡ifrÄ“tas:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "SekojoÅ¡os datņu tipus izslÄ“gt no Å¡ifrÄ“Å¡anas:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 6d52e10de6a153c57a700824b7efe84fe11012ab..3e20fdad2649dcd271501d2929bb81c4b823b662 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 18:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 21:40+0000\n" "Last-Translator: RÅ«dolfs Mazurs <rudolfs.mazurs@gmail.com>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 11024c8e1e006fa34e3590757026e2b3e3f6141c..ef9c6063c3b3b0422882a1fb1439e2505891c588 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 21:00+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 12:20+0000\n" "Last-Translator: RÅ«dolfs Mazurs <rudolfs.mazurs@gmail.com>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,45 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "NevarÄ“ja pilnÄ«bÄ izdzÄ“st %s" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "NevarÄ“ja atjaunot %s" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "veikt atjaunoÅ¡anu" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "dzÄ“st datni pavisam" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nosaukums" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "DzÄ“sts" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mape" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mapes" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 datne" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} datnes" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index fa500081cc3ccc763eb0817d44a4b010508545d5..7d9e6940598b477656c5bce1246427c16e39838e 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 10:50+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 12:20+0000\n" "Last-Translator: RÅ«dolfs Mazurs <rudolfs.mazurs@gmail.com>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "NevarÄ“ja atgriezt — %s" + +#: history.php:40 +msgid "success" +msgstr "veiksme" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "Datne %s tika atgriezt uz versiju %s" + +#: history.php:49 +msgid "failure" +msgstr "neveiksme" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "Datni %s nevarÄ“ja atgriezt uz versiju %s" + +#: history.php:68 +msgid "No old versions available" +msgstr "Nav pieejamu vecÄku versiju" + +#: history.php:73 +msgid "No path specified" +msgstr "Nav norÄdÄ«ts ceļš" + #: js/versions.js:16 msgid "History" msgstr "VÄ“sture" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "Atgriez datni uz iepriekÅ¡Ä“ju versiju, spiežot uz tÄs atgrieÅ¡anas pogu" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Datņu versiju izskoÅ¡ana" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index ae6df933b41b4839432f21e01bc4fb644d5a31c6..3dd07bcc2b247500353bad75657b9ec23206bdea 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 14:31+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 21:40+0000\n" "Last-Translator: RÅ«dolfs Mazurs <rudolfs.mazurs@gmail.com>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: app.php:312 +#: app.php:313 msgid "Help" msgstr "PalÄ«dzÄ«ba" -#: app.php:319 +#: app.php:320 msgid "Personal" msgstr "PersonÄ«gi" -#: app.php:324 +#: app.php:325 msgid "Settings" msgstr "IestatÄ«jumi" -#: app.php:329 +#: app.php:330 msgid "Users" msgstr "LietotÄji" -#: app.php:336 +#: app.php:337 msgid "Apps" msgstr "Lietotnes" -#: app.php:338 +#: app.php:339 msgid "Admin" msgstr "Administratori" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 72b99de743cc3f54bef789fb19423f49cc6083bf..2cd29ffc5a44d5a57571232a0cd08a0ca6106092 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 19:10+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 04:30+0000\n" "Last-Translator: RÅ«dolfs Mazurs <rudolfs.mazurs@gmail.com>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nevar lejupielÄdÄ“t sarakstu no lietotņu veikala" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "AutentifikÄcijas kļūda" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "NevarÄ“ja mainÄ«t redzamo vÄrdu" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupa jau eksistÄ“" @@ -48,10 +57,6 @@ msgstr "NederÄ«gs epasts" msgid "Unable to delete group" msgstr "Nevar izdzÄ“st grupu" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "AutentifikÄcijas kļūda" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nevar izdzÄ“st lietotÄju" @@ -114,7 +119,7 @@ msgstr "Kļūda" msgid "Updated" msgstr "AtjauninÄta" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "SaglabÄ..." @@ -191,67 +196,83 @@ msgstr "LejupielÄdÄ“t Android klientu" msgid "Download iOS Client" msgstr "LejupielÄdÄ“t iOS klientu" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Parole" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "JÅ«ru parole tika nomainÄ«ta" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Nevar nomainÄ«t jÅ«su paroli" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "PaÅ¡reizÄ“jÄ parole" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Jauna parole" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "parÄdÄ«t" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "MainÄ«t paroli" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Redzamais vÄrds" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "JÅ«su redzamais vÄrds tika mainÄ«ts" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "NevarÄ“ja mainÄ«t jÅ«su redzamo vÄrdu" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "MainÄ«t redzamo vÄrdu" + +#: templates/personal.php:55 msgid "Email" msgstr "E-pasts" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "JÅ«su e-pasta adrese" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Ievadiet epasta adresi, lai vÄ“lÄk varÄ“tu atgÅ«t paroli, ja bÅ«s nepiecieÅ¡amÄ«ba" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Valoda" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "PalÄ«dzi tulkot" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Izmanto Å¡o adresi, lai, izmantojot datņu pÄrvaldnieku, savienotos ar savu ownCloud" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versija" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -285,10 +306,6 @@ msgstr "Neierobežota" msgid "Other" msgstr "Cits" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Redzamais vÄrds" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Grupas administrators" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index ac6a97fa0f2bf48fa29616528222dccf09f25bde..3635e7a278705669c244830272c38a072ebe907b 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 14:21+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 12:20+0000\n" "Last-Translator: RÅ«dolfs Mazurs <rudolfs.mazurs@gmail.com>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "Lietot TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Neizmanto to SSL savienojumiem, tas neizdosies." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "Neizmanto papildu LDAPS savienojumus! Tas nestrÄdÄs." #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index a06a664bec09fd759ef6facc671f647d9123f372..547295277d1d99a31087f3c454b34081561aac17 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "Ðема категорија да Ñе додаде?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Оваа категорија веќе поÑтои:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "Ðоември" msgid "December" msgstr "Декември" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ПоÑтавки" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "пред Ñекунди" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "пред 1 чаÑ" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "пред {hours} чаÑови" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "денеÑка" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "вчера" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "минатиот меÑец" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "пред {months} меÑеци" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "пред меÑеци" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "минатата година" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "пред години" @@ -469,7 +470,7 @@ msgstr "Уреди категории" msgid "Add" msgstr "Додади" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "БезбедноÑно предупредување" @@ -479,71 +480,75 @@ msgid "" "OpenSSL extension." msgstr "Ðе е доÑтапен безбеден генератор на Ñлучајни броеви, Ве молам озвоможете го OpenSSL PHP додатокот." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Без Ñигурен генератор на Ñлучајни броеви напаѓач може да ги предвиди жетоните за реÑетирање на лозинка и да преземе контрола врз Вашата Ñметка. " +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Вашата папка Ñо податоци и датотеките е најверојатно доÑтапна од интернет. .htaccess датотеката што ја овозможува ownCloud не фунционира. Силно препорачуваме да го иÑконфигурирате вашиот Ñервер за вашата папка Ñо податоци не е доÑтапна преку интернетт или премеÑтете ја надвор од коренот на веб Ñерверот." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Ðаправете <strong>админиÑтраторÑка Ñметка</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Ðапредно" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Фолдер Ñо податоци" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Конфигурирај ја базата" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "ќе биде кориÑтено" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "КориÑник на база" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Лозинка на база" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Име на база" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Табела во базата на податоци" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Сервер Ñо база" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Заврши го подеÑувањето" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "веб ÑервиÑи под Ваша контрола" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Одјава" @@ -565,14 +570,18 @@ msgstr "Ве молам Ñменете ја лозинката да ја обе msgid "Lost your password?" msgstr "Ја заборавивте лозинката?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "запамти" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Ðајава" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "претходно" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 941e084b4a1b94414e86cb6279380cf58763481d..67955f49c62c92d81979637592e7c87040c3cdd5 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -20,46 +20,60 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ðиту еден фајл не Ñе вчита. Ðепозната грешка" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ðема грешка, датотеката беше подигната уÑпешно" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Подигнатата датотеката ја надминува MAX_FILE_SIZE директивата која беше поÑтавена во HTML формата" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше Ñамо делумно подигната." -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ðе беше подигната датотека" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Ðе поÑтои привремена папка" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ÐеуÑпеав да запишам на диÑк" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +85,15 @@ msgstr "Датотеки" msgid "Unshare" msgstr "Ðе Ñподелувај" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Избриши" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Преименувај" @@ -180,31 +198,31 @@ msgstr "ÐдреÑата неможе да биде празна." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Големина" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Променето" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 папка" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 датотека" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} датотеки" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 567a2b7aaefdd9f7efd092af012b934b0027432c..6fe48847d75f61a5aaaaa86c13f7ef5a652b83ac 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,45 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} папки" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 датотека" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} датотеки" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index 3f4e68131e372c0dca0c39cfaa54dd4935d9f4f9..3ea9e4d20c3aa84693391653346c2c90333285f0 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -18,10 +18,45 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ИÑторија" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Верзии на датотеки" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index c863d2c2a33d91c36e3b85cd6a4de4c97b87732f..f441c26ada434200048bdf207938c81d717a2866 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ðеможам да вчитам лиÑта од App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Грешка во автентикација" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Групата веќе поÑтои" @@ -48,10 +57,6 @@ msgstr "ÐеиÑправна електронÑка пошта" msgid "Unable to delete group" msgstr "Ðеможе да избришам група" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Грешка во автентикација" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ðеможам да избришам кориÑник" @@ -114,7 +119,7 @@ msgstr "Грешка" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Снимам..." @@ -191,67 +196,83 @@ msgstr "Преземи клиент за Ðндроид" msgid "Download iOS Client" msgstr "Преземи iOS клиент" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Вашата лозинка беше променета." -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Вашата лозинка неможе да Ñе Ñмени" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Моментална лозинка" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Ðова лозинка" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "прикажи" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Смени лозинка" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Вашата адреÑа за е-пошта" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Пополни ја адреÑата за е-пошта за да може да ја обновуваш лозинката" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Јазик" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Помогни во преводот" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "КориÑтете ја оваа адреÑа да " -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Верзија" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -285,10 +306,6 @@ msgstr "" msgid "Other" msgstr "ОÑтанато" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "ÐдминиÑтратор на група" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 7380a12ef3386447a4c5de3493c7abe78ae1d134..78d3ca3305f8d324ca83f4b3d104423b4da80204 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,7 +214,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 0ae9e04e98123a4f7a1ae23a8c4ca125b3a7cf99..e52ed6703066982d71e20ca677319e12c0ab9729 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "Tiada kategori untuk di tambah?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Kategori ini telah wujud" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Tetapan" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -469,7 +470,7 @@ msgstr "Edit kategori" msgid "Add" msgstr "Tambah" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Amaran keselamatan" @@ -479,71 +480,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "buat <strong>akaun admin</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Maju" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Fail data" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfigurasi pangkalan data" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Setup selesai" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Log keluar" @@ -565,14 +570,18 @@ msgstr "" msgid "Lost your password?" msgstr "Hilang kata laluan?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ingat" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Log masuk" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelum" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 6e6a0e262c6aec029dc9fde60755bb3ab528fa24..fe69de831b7c65ed72cd77e39b68d8257a22165f 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,60 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat, fail berjaya dimuat naik." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fail yang dimuat naik melebihi MAX_FILE_SIZE yang dinyatakan dalam form HTML " -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Sebahagian daripada fail telah dimuat naik. " -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Tiada fail yang dimuat naik" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Folder sementara hilang" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -72,11 +86,15 @@ msgstr "fail" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Padam" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -181,31 +199,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nama " -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Saiz" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index c3efccaa15db7db3f67d97e5ff52846f0a8833a3..047d892067f3d9508328de476ba33279ad3fc8ed 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nama" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index 389afec231ee983acdb43ebc513da720d1830f1b..c6fa87619d2eff5deca0304c1636eb3dfdb67367 100644 --- a/l10n/ms_MY/files_versions.po +++ b/l10n/ms_MY/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +17,45 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index b9e4261b7a414bdbfd49d79a09ea05343e5dfc85..b04dd7bcb1367154fd911bacbb193ec051690f1d 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Ralat pengesahan" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -49,10 +58,6 @@ msgstr "Emel tidak sah" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Ralat pengesahan" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -115,7 +120,7 @@ msgstr "Ralat" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Simpan..." @@ -192,67 +197,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Kata laluan " -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Gagal mengubah kata laluan anda " -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Kata laluan semasa" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Kata laluan baru" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "Papar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Ubah kata laluan" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Emel" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Alamat emel anda" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Isi alamat emel anda untuk membolehkan pemulihan kata laluan" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Bantu terjemah" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -286,10 +307,6 @@ msgstr "" msgid "Other" msgstr "Lain" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 7728f96e12c33328774e81b64a82a713c31785e1..5d5fac287389f26d2191b2964870341ef60103d1 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 594697deef5732b7a0a610da3b51dbba166ca9c0..014392c6d216ef1f49b1288e9e4a59502a44e765 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -57,8 +57,9 @@ msgid "No category to add?" msgstr "Ingen kategorier Ã¥ legge til?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Denne kategorien finnes allerede:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -162,59 +163,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "i dag" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "i gÃ¥r" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "forrige mÃ¥ned" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} mÃ¥neder siden" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "mÃ¥neder siden" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "forrige Ã¥r" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "Ã¥r siden" @@ -473,7 +474,7 @@ msgstr "Rediger kategorier" msgid "Add" msgstr "Legg til" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Sikkerhetsadvarsel" @@ -483,71 +484,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "opprett en <strong>administrator-konto</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "vil bli brukt" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasebruker" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Databasenavn" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Database tabellomrÃ¥de" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Databasevert" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Fullfør oppsetting" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "nettjenester under din kontroll" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Logg ut" @@ -569,14 +574,18 @@ msgstr "Vennligst skift passord for Ã¥ gjøre kontoen din sikker igjen." msgid "Lost your password?" msgstr "Mistet passordet ditt?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "husk" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Logg inn" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "forrige" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 195074affb1123911d422a3f76c2d1986b7a2bc1..832fb94d7bfeb0a21e0f63136a22a63b3f47daac 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian BokmÃ¥l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -26,46 +26,60 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Det er ingen feil. Filen ble lastet opp." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Filstørrelsen overskrider maksgrensen pÃ¥ MAX_FILE_SIZE som ble oppgitt i HTML-skjemaet" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Filopplastningen ble bare delvis gjennomført" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ingen fil ble lastet opp" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Klarte ikke Ã¥ skrive til disk" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -77,11 +91,15 @@ msgstr "Filer" msgid "Unshare" msgstr "Avslutt deling" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slett" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Omdøp" @@ -186,31 +204,31 @@ msgstr "URL-en kan ikke være tom." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Størrelse" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Endret" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fil" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index bac182fb21967354f70ea39f4e385d3a9d7775af..96d6a05b9def0bae0ab4fde5b23cab3e30b3523c 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Navn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mappe" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mapper" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fil" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index 38f8fbe36fe8167a315a0738dd00c8f3a00b7f56..4441ba7870d81331942d0e6a81f55cc362271571 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -19,10 +19,45 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historie" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Fil versjonering" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index a3c729242518ff310417ebf008c73c485b99d69c..f96018e116979fdba38e3057463398e91b8dd3f3 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -29,6 +29,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Lasting av liste fra App Store feilet." +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentikasjonsfeil" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Gruppen finnes allerede" @@ -53,10 +62,6 @@ msgstr "Ugyldig epost" msgid "Unable to delete group" msgstr "Kan ikke slette gruppe" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentikasjonsfeil" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Kan ikke slette bruker" @@ -119,7 +124,7 @@ msgstr "Feil" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Lagrer..." @@ -196,67 +201,83 @@ msgstr "Last ned Android-klient" msgid "Download iOS Client" msgstr "Last ned iOS-klient" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Passord har blitt endret" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Kunne ikke endre passordet ditt" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "NÃ¥værende passord" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "vis" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-post" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Din e-postadresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Oppi epostadressen du vil tilbakestille passordet for" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "SprÃ¥k" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Bidra til oversettelsen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versjon" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -290,10 +311,6 @@ msgstr "" msgid "Other" msgstr "Annet" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Gruppeadministrator" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 26b645f7673ff7ae4983723a5fbb0b9551225c67..6b6fa98ff04a97992385efd8c2afecfebe4398f5 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: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,8 +214,8 @@ msgid "Use TLS" msgstr "Bruk TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ikke bruk for SSL tilkoblinger, dette vil ikke fungere." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 6f7635cbeb9c99582106e4f4b74217bf233191bd..5200e7c3b0720ecd347b888d09bd62511a2e17ef 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 08:10+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -64,8 +64,9 @@ msgid "No category to add?" msgstr "Geen categorie toevoegen?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Deze categorie bestaat al." +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -169,59 +170,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Instellingen" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "vandaag" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "gisteren" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "vorige maand" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "vorig jaar" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "jaar geleden" @@ -480,7 +481,7 @@ msgstr "Wijzigen categorieën" msgid "Add" msgstr "Toevoegen" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Beveiligingswaarschuwing" @@ -490,71 +491,75 @@ msgid "" "OpenSSL extension." msgstr "Er kon geen willekeurig nummer worden gegenereerd. Zet de PHP OpenSSL extentie aan." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Zonder random nummer generator is het mogelijk voor een aanvaller om de reset tokens van wachtwoorden te voorspellen. Dit kan leiden tot het inbreken op uw account." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Uw data is waarschijnlijk toegankelijk vanaf net internet. Het .htaccess bestand dat ownCloud levert werkt niet goed. U wordt aangeraden om de configuratie van uw webserver zodanig aan te passen dat de data folders niet meer publiekelijk toegankelijk zijn. U kunt ook de data folder verplaatsen naar een folder buiten de webserver document folder." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Maak een <strong>beheerdersaccount</strong> aan" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Geavanceerd" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Gegevensmap" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configureer de database" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "zal gebruikt worden" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Gebruiker database" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Wachtwoord database" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Naam database" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Database server" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Installatie afronden" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Afmelden" @@ -576,14 +581,18 @@ msgstr "Wijzig uw wachtwoord zodat uw account weer beveiligd is." msgid "Lost your password?" msgstr "Uw wachtwoord vergeten?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "onthoud gegevens" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Meld je aan" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "Alternatieve inlogs" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "vorige" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index a49996ff6f2ae98c52b6fe4c16389fb2465ccb37..b91face47aef79142c919f252d0d7cbda798e846 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 08:10+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -29,46 +29,60 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Geen fout opgetreden, bestand successvol geupload." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is opgegeven in de HTML-formulier" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is slechts gedeeltelijk geupload" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Geen bestand geüpload" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Een tijdelijke map mist" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Niet genoeg ruimte beschikbaar" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ongeldige directory." @@ -80,11 +94,15 @@ msgstr "Bestanden" msgid "Unshare" msgstr "Stop delen" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "Verwijder definitief" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Verwijder" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Hernoem" @@ -189,31 +207,31 @@ msgstr "URL kan niet leeg zijn." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Naam" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 map" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 bestand" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} bestanden" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index 4aafb1900df4a04ba2a99fc7e667c40b5424ad51..a138d9b3ae53c7ba54faeb1e2845a42648b7f27d 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot <meneer@tken.net>, 2013. # Lennart Weijl <lenny@weijl.org>, 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: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 13:50+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" @@ -23,7 +24,7 @@ msgstr "" msgid "" "Please switch to your ownCloud client and change your encryption password to" " complete the conversion." -msgstr "" +msgstr "Schakel om naar uw eigen ownCloud client en wijzig uw versleutelwachtwoord om de conversie af te ronden." #: js/settings-personal.js:17 msgid "switched to client side encryption" @@ -47,15 +48,15 @@ msgstr "Versleuteling" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Bestandsversleuteling geactiveerd." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "De volgende bestandstypen zullen niet worden versleuteld:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Sluit de volgende bestandstypen uit van versleuteling:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 3c41fa7376a5735a834995356df983aaad5e3fd4..fa20ea01287621bbdf311905fe3111ed01c35e0f 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,45 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "uitvoeren restore operatie" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "verwijder bestanden definitief" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Naam" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Verwijderd" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 map" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mappen" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 bestand" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} bestanden" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 95169bacce0f20595fc67649f6f92a9d1a797392..106f784b9149c0da8b18d2659306d6be780e6775 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Geschiedenis" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Bestand versies" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index e7ce885352511451ec73bda2c3b5cc19cf3e8084..2e6ae9ed37bb7602969eaaefe00a71ab263c4c2f 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 14:00+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" @@ -32,6 +32,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Kan de lijst niet van de App store laden" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Authenticatie fout" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "Kon de weergavenaam niet wijzigen" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Groep bestaat al" @@ -56,10 +65,6 @@ msgstr "Ongeldige e-mail" msgid "Unable to delete group" msgstr "Niet in staat om groep te verwijderen" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Authenticatie fout" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Niet in staat om gebruiker te verwijderen" @@ -108,7 +113,7 @@ msgstr "Even geduld aub...." #: js/apps.js:84 msgid "Updating...." -msgstr "" +msgstr "Bijwerken...." #: js/apps.js:87 msgid "Error while updating app" @@ -122,7 +127,7 @@ msgstr "Fout" msgid "Updated" msgstr "Bijgewerkt" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Aan het bewaren....." @@ -199,67 +204,83 @@ msgstr "Download Android Client" msgid "Download iOS Client" msgstr "Download iOS Client" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Wachtwoord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Je wachtwoord is veranderd" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Niet in staat om uw wachtwoord te wijzigen" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Huidig wachtwoord" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nieuw wachtwoord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "weergeven" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Weergavenaam" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "Uw weergavenaam is gewijzigd" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "Kon de weergavenaam niet wijzigen" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "Wijzig weergavenaam" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mailadres" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Uw e-mailadres" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Vul een e-mailadres in om wachtwoord reset uit te kunnen voeren" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Taal" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Help met vertalen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versie" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -293,10 +314,6 @@ msgstr "Ongelimiteerd" msgid "Other" msgstr "Andere" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Weergavenaam" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Groep beheerder" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 16374f657075e76b01835997a0e1e8e9cd108515..bd1c87f11f0d7466e20827966e9943e9376ed38f 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -32,7 +32,7 @@ msgstr "De configuratie is geldig en de verbinding is geslaagd!" msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "De configuratie is geldig, maar Bind mislukte. Controleer de serverinstellingen en inloggegevens." #: ajax/testConfiguration.php:40 msgid "" @@ -175,7 +175,7 @@ msgstr "zonder een placeholder, bijv. \"objectClass=posixGroup\"" #: templates/settings.php:31 msgid "Connection Settings" -msgstr "" +msgstr "Verbindingsinstellingen" #: templates/settings.php:33 msgid "Configuration Active" @@ -183,7 +183,7 @@ msgstr "Configuratie actief" #: templates/settings.php:33 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Als dit niet is ingeschakeld wordt deze configuratie overgeslagen." #: templates/settings.php:34 msgid "Port" @@ -197,7 +197,7 @@ msgstr "Backup (Replica) Host" msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Opgeven optionele backup host. Het moet een replica van de hoofd LDAP/AD server." #: templates/settings.php:36 msgid "Backup (Replica) Port" @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "Gebruik TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Gebruik niet voor SSL connecties, deze mislukken." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" @@ -243,7 +243,7 @@ msgstr "in seconden. Een verandering maakt de cache leeg." #: templates/settings.php:43 msgid "Directory Settings" -msgstr "" +msgstr "Mapinstellingen" #: templates/settings.php:45 msgid "User Display Name Field" @@ -263,7 +263,7 @@ msgstr "Een User Base DN per regel" #: templates/settings.php:47 msgid "User Search Attributes" -msgstr "" +msgstr "Attributen voor gebruikerszoekopdrachten" #: templates/settings.php:47 templates/settings.php:50 msgid "Optional; one attribute per line" @@ -287,7 +287,7 @@ msgstr "Een Group Base DN per regel" #: templates/settings.php:50 msgid "Group Search Attributes" -msgstr "" +msgstr "Attributen voor groepszoekopdrachten" #: templates/settings.php:51 msgid "Group-Member association" @@ -295,7 +295,7 @@ msgstr "Groepslid associatie" #: templates/settings.php:53 msgid "Special Attributes" -msgstr "" +msgstr "Speciale attributen" #: templates/settings.php:56 msgid "in bytes" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index e56d60adc1f7c790a70a2ea9ddeca9d3eb429702..9146472fcc906eade2b326cf7279dd058b95cd8e 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -52,7 +52,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -157,59 +158,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -468,7 +469,7 @@ msgstr "" msgid "Add" msgstr "Legg til" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -478,71 +479,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Lag ein <strong>admin-konto</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "vil bli nytta" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasebrukar" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Databasenamn" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Databasetenar" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Fullfør oppsettet" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Vev tjenester under din kontroll" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Logg ut" @@ -564,14 +569,18 @@ msgstr "" msgid "Lost your password?" msgstr "Gløymt passordet?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "hugs" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Logg inn" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "førre" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index dd980f0277e91259e9f271f70ff4d702d769f588..5ec5f4610142f89563d047a7dcdf96f3a38736e7 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,60 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +84,15 @@ msgstr "Filer" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slett" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -179,31 +197,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Storleik" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Endra" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index ef89f942345b3139ebab9b9c3539855262630950..ba74bb698bb45805d1407b31a8e2fc7011c12682 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Namn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po index 3d20ded946a69df6026534e9d5c2aa9a1d458051..3ed063fcb555de323582f0b356ab4249dfc1c062 100644 --- a/l10n/nn_NO/files_versions.po +++ b/l10n/nn_NO/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +17,45 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 7c2032002894abe597e58db0d9d98cf6d6789150..0d0f12e96e567c78db418795c920d83610ef3390 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Klarer ikkje Ã¥ laste inn liste fra App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Feil i autentisering" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -47,10 +56,6 @@ msgstr "Ugyldig e-postadresse" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Feil i autentisering" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -113,7 +118,7 @@ msgstr "Feil" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Klarte ikkje Ã¥ endra passordet" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Passord" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "vis" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Endra passord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Epost" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Din epost addresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Fyll inn din e-post addresse for og kunne motta passord tilbakestilling" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "SprÃ¥k" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hjelp oss Ã¥ oversett" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -284,10 +305,6 @@ msgstr "" msgid "Other" msgstr "Anna" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index a4e1c38181a227c4c1e1f24b63d2334f730b658d..d2cf7889567f56628e5422e14f30e2b873777dfe 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 7e9708705212f0034942e7de0e2deda05802664c..8860e32037b55eb2fe94b81e36851c3b2ac5d9fc 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -51,8 +51,9 @@ msgid "No category to add?" msgstr "Pas de categoria d'ajustar ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "La categoria exista ja :" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -156,59 +157,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Configuracion" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "uèi" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "ièr" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "mes passat" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "meses a" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "an passat" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "ans a" @@ -467,7 +468,7 @@ msgstr "Edita categorias" msgid "Add" msgstr "Ajusta" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Avertiment de securitat" @@ -477,71 +478,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Crea un <strong>compte admin</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Dorsièr de donadas" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configura la basa de donadas" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "serà utilizat" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Usancièr de la basa de donadas" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Ã’ste de basa de donadas" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Configuracion acabada" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Services web jos ton contraròtle" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Sortida" @@ -563,14 +568,18 @@ msgstr "" msgid "Lost your password?" msgstr "L'as perdut lo senhal ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "bremba-te" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Dintrada" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "dariièr" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index f7e8ceb4ea39f1f432562b431dbe7f1813d1b478..115f85f0fb11b724e6890f2e5eaa546b35830b1e 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,60 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +83,15 @@ msgstr "Fichièrs" msgid "Unshare" msgstr "Non parteja" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Escafa" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Torna nomenar" @@ -178,31 +196,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Talha" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index f558a70f109ff9304b1be9bc196397c4ecce8083..064f9be30a7985fa14d4c56732a82a2b350eba4d 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/oc/files_versions.po b/l10n/oc/files_versions.po index e8848887184a9f8bd37eab27ccbe67538ab2d3db..ed722b6022254dfe08b89cde46724a0a4a28fa59 100644 --- a/l10n/oc/files_versions.po +++ b/l10n/oc/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +17,45 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 95c28b3ee25d93ea0d9cf386f561ec2a40d7fe4f..2c3d180e39322e381dbd389f9da434561049ef0b 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Pas possible de cargar la tièra dempuèi App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Error d'autentificacion" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Lo grop existÃs ja" @@ -46,10 +55,6 @@ msgstr "Corrièl incorrècte" msgid "Unable to delete group" msgstr "Pas capable d'escafar un grop" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Error d'autentificacion" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Pas capable d'escafar un usancièr" @@ -112,7 +117,7 @@ msgstr "Error" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Enregistra..." @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Senhal" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ton senhal a cambiat" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Pas possible de cambiar ton senhal" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Senhal en cors" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Senhal novèl" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mòstra" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Cambia lo senhal" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Corrièl" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ton adreiça de corrièl" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Emplena una adreiça de corrièl per permetre lo mandadÃs del senhal perdut" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Lenga" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajuda a la revirada" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -283,10 +304,6 @@ msgstr "" msgid "Other" msgstr "Autres" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Grop Admin" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index db410b6652db9d25df56b1e0243b65a246777163..56fd18cfc3318180ed75a34efdca78f1cd4175ec 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/pl/core.po b/l10n/pl/core.po index d685740ac94894e71ec18fba65a20f71b5d69b84..780d9e45d76184ac3ee3b90c329e22562647d742 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -60,8 +60,9 @@ msgid "No category to add?" msgstr "Brak kategorii" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ta kategoria już istnieje" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -165,59 +166,59 @@ msgstr "Listopad" msgid "December" msgstr "GrudzieÅ„" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minute temu" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 godzine temu" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "dziÅ›" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "ostani miesiÄ…c" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} miesiÄ™cy temu" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "miesiÄ™cy temu" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "ostatni rok" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "lat temu" @@ -476,7 +477,7 @@ msgstr "Edytuj kategoriÄ™" msgid "Add" msgstr "Dodaj" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Ostrzeżenie o zabezpieczeniach" @@ -486,71 +487,75 @@ msgid "" "OpenSSL extension." msgstr "NiedostÄ™pny bezpieczny generator liczb losowych, należy wÅ‚Ä…czyć rozszerzenie OpenSSL w PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Bez bezpiecznego generatora liczb losowych, osoba atakujÄ…ca może być w stanie przewidzieć resetujÄ…ce hasÅ‚o tokena i przejąć kontrolÄ™ nad swoim kontem." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Katalog danych (data) i pliki sÄ… prawdopodobnie dostÄ™pnego z Internetu. Sprawdź plik .htaccess oraz konfiguracjÄ™ serwera (hosta). Sugerujemy, skonfiguruj swój serwer w taki sposób, żeby dane katalogu nie byÅ‚y dostÄ™pne lub przenieść katalog danych spoza głównego dokumentu webserwera." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Tworzenie <strong>konta administratora</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Zaawansowane" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Katalog danych" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfiguracja bazy danych" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "zostanie użyte" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Użytkownik bazy danych" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "HasÅ‚o do bazy danych" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nazwa bazy danych" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Obszar tabel bazy danych" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Komputer bazy danych" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ZakoÅ„cz konfigurowanie" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "usÅ‚ugi internetowe pod kontrolÄ…" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Wylogowuje użytkownika" @@ -572,14 +577,18 @@ msgstr "ProszÄ™ zmienić swoje hasÅ‚o, aby zabezpieczyć swoje konto ponownie." msgid "Lost your password?" msgstr "Nie pamiÄ™tasz hasÅ‚a?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ZapamiÄ™tanie" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Zaloguj" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "wstecz" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index b6554c153a888162c1df7af39659521c64f36e71..74de66a0d419dd547790314af278b39eaeaec4d2 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.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-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -25,46 +25,60 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Plik nie zostaÅ‚ zaÅ‚adowany. Nieznany bÅ‚Ä…d" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "PrzesÅ‚ano plik" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowanÄ… w php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Rozmiar przesÅ‚anego pliku przekracza maksymalnÄ… wartość dyrektywy upload_max_filesize, zawartÄ… formularzu HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Plik przesÅ‚ano tylko częściowo" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nie przesÅ‚ano żadnego pliku" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Brak katalogu tymczasowego" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "BÅ‚Ä…d zapisu na dysk" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Za maÅ‚o miejsca" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "ZÅ‚a Å›cieżka." @@ -76,11 +90,15 @@ msgstr "Pliki" msgid "Unshare" msgstr "Nie udostÄ™pniaj" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Usuwa element" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ZmieÅ„ nazwÄ™" @@ -185,31 +203,31 @@ msgstr "URL nie może być pusty." 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:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nazwa" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Rozmiar" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 folder" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} foldery" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 plik" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} pliki" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 748f62eaacecb22652f603b69142e73adf1bccad..3f85b77dcc2e0f0595cb72796e07ef1bf438e105 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ 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/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nazwa" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 folder" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} foldery" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 plik" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} pliki" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index a2020d78f2dbc930d608f0d6987acddbb87a5ead..4d5b44af343564e512b46113e5ebe1623d837d51 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -19,10 +19,45 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historia" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Wersjonowanie plików" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index ffae537e261bcf78f5aa66afe97e1f1eb685d07a..7849faf3679ca3b8a8a66e2449cd9b718530de2f 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -32,6 +32,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nie mogÄ™ zaÅ‚adować listy aplikacji" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "BÅ‚Ä…d uwierzytelniania" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupa już istnieje" @@ -56,10 +65,6 @@ msgstr "Niepoprawny email" msgid "Unable to delete group" msgstr "Nie można usunąć grupy" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "BÅ‚Ä…d uwierzytelniania" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nie można usunąć użytkownika" @@ -122,7 +127,7 @@ msgstr "BÅ‚Ä…d" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Zapisywanie..." @@ -199,67 +204,83 @@ msgstr "Pobierz klienta dla Androida" msgid "Download iOS Client" msgstr "Pobierz klienta dla iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "HasÅ‚o" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Twoje hasÅ‚o zostaÅ‚o zmienione" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Nie można zmienić hasÅ‚a" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Bieżące hasÅ‚o" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nowe hasÅ‚o" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "WyÅ›wietlanie" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "ZmieÅ„ hasÅ‚o" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Adres e-mail użytkownika" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "ProszÄ™ wprowadzić adres e-mail, aby uzyskać możliwość odzyskania hasÅ‚a" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "JÄ™zyk" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Pomóż w tÅ‚umaczeniu" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Użyj tego adresu aby podÅ‚Ä…czyć zasób ownCloud w menedżerze plików" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Wersja" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -293,10 +314,6 @@ msgstr "Bez limitu" msgid "Other" msgstr "Inne" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Grupa Admin" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 1e8b58da0e5164d07e041b230340d18c190dabd0..375849b6dc2a191dc408367c860097d13547ba15 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "Użyj TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Nie używaj SSL dla poÅ‚Ä…czeÅ„, jeÅ›li siÄ™ nie powiedzie." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index 7f8272bc0845bb0a0181655b32ae3064ffe1143b..fd6666ba2ddbbb7b5bf46e34e19ac1546b085858 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-30 00:23+0100\n" -"PO-Revision-Date: 2013-01-29 23:23+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -50,7 +50,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -155,59 +156,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:284 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:762 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -466,7 +467,7 @@ msgstr "" msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -476,71 +477,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:32 +#: templates/layout.user.php:48 msgid "Log out" msgstr "" @@ -562,14 +567,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index ab00380cb6b5dd9f508cb47653e6acc413b0fb0c..19de2c06401a8cd98f44b2b96f9781ac20e55fd9 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 16:02+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,60 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +82,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +195,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/pl_PL/files_trashbin.po b/l10n/pl_PL/files_trashbin.po index ce226803d8a10fabb613bc337137d6871c2c0bb8..d35b236c8f8b64aa25c40601a13c8de081c4a98f 100644 --- a/l10n/pl_PL/files_trashbin.po +++ b/l10n/pl_PL/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ 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/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po index 38bf131e3e4b897399337dd0b8a121ed3a4104b9..4423dd3512d086fcd00bc0cc915c8670302bf8c3 100644 --- a/l10n/pl_PL/files_versions.po +++ b/l10n/pl_PL/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +17,45 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index f95716114e3a81f9beec56595321df1bc3da4571..991c4808c5bb57bbc83efa7991d97a5772c78540 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -282,10 +303,6 @@ msgstr "" msgid "Other" msgstr "" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "" diff --git a/l10n/pl_PL/user_ldap.po b/l10n/pl_PL/user_ldap.po index 1b11dc6b24e3b7bb9bae6374f44c04edde150f3f..6fecd479fb54ff54852c133bc0ca6de5887bf758 100644 --- a/l10n/pl_PL/user_ldap.po +++ b/l10n/pl_PL/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 6a49a47bbd401c68022226b6cad3a5064dec69cf..bf4e2100d620a7dbf35d37ed5f4fe812eddd919e 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" -"Last-Translator: rodrigost23 <rodrigo.st23@hotmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -61,8 +61,9 @@ msgid "No category to add?" msgstr "Nenhuma categoria adicionada?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Essa categoria já existe" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -166,59 +167,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Configurações" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "hoje" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "ontem" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "último mês" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "meses atrás" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "último ano" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "anos atrás" @@ -477,7 +478,7 @@ msgstr "Editar categorias" msgid "Add" msgstr "Adicionar" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Aviso de Segurança" @@ -487,71 +488,75 @@ msgid "" "OpenSSL extension." msgstr "Nenhum gerador de número aleatório de segurança disponÃvel. Habilite a extensão OpenSSL do PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sem um gerador de número aleatório de segurança, um invasor pode ser capaz de prever os sÃmbolos de redefinição de senhas e assumir sua conta." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Seu diretório de dados e seus arquivos estão, provavelmente, acessÃveis a partir da internet. O .htaccess que o ownCloud fornece não está funcionando. Nós sugerimos que você configure o seu servidor web de uma forma que o diretório de dados esteja mais acessÃvel ou que você mova o diretório de dados para fora da raiz do servidor web." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Criar uma <strong>conta</strong> de <strong>administrador</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurar o banco de dados" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "será usado" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuário de banco de dados" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Espaço de tabela do banco de dados" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Banco de dados do host" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Concluir configuração" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "web services sob seu controle" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Sair" @@ -573,14 +578,18 @@ msgstr "Por favor troque sua senha para tornar sua conta segura novamente." msgid "Lost your password?" msgstr "Esqueçeu sua senha?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "lembrete" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Log in" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index c00ceb550f50125973e1d185b1319da867309b61..a1270334a2b9c7871af457014c8841499a30c85a 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -26,46 +26,60 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi transferido. Erro desconhecido" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Não houve nenhum erro, o arquivo foi transferido com sucesso" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulário HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi transferido parcialmente" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nenhum arquivo foi transferido" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Diretório inválido." @@ -77,11 +91,15 @@ msgstr "Arquivos" msgid "Unshare" msgstr "Descompartilhar" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Excluir" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Renomear" @@ -186,31 +204,31 @@ msgstr "URL não pode ficar em branco" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O uso de 'Shared' é reservado para o Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} arquivos" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index c6586d1029b8b5b9489792081053b594643e195e..785b8eddbe5112c5e7dcb79745a515c07d288da5 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +18,45 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "realizar operação de restauração" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "ExcluÃdo" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 pasta" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} pastas" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 arquivo" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} arquivos" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index d6cf483ba38ff2339835208d63dadc474a965131..d47f04d6cfb32883167ea27beb808001121d72e0 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 15:50+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -19,10 +19,45 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Histórico" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionamento de Arquivos" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 7b1b23da58ae318ff187e4022b9010424bbd7fee..de48363261ed41776e9b587042bcd3ba78364099 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -31,6 +31,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Não foi possÃvel carregar lista da App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Erro de autenticação" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupo já existe" @@ -55,10 +64,6 @@ msgstr "E-mail inválido" msgid "Unable to delete group" msgstr "Não foi possÃvel remover grupo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Erro de autenticação" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Não foi possÃvel remover usuário" @@ -121,7 +126,7 @@ msgstr "Erro" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Guardando..." @@ -198,67 +203,83 @@ msgstr "Baixar Cliente Android" msgid "Download iOS Client" msgstr "Baixar Cliente iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Senha" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Sua senha foi alterada" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Não é possivel alterar a sua senha" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Senha atual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova senha" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostrar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nome de Exibição" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Seu endereço de e-mail" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Preencha um endereço de e-mail para habilitar a recuperação de senha" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usar este endereço para conectar-se ao seu ownCloud no seu gerenciador de arquivos" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versão" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -292,10 +313,6 @@ msgstr "Ilimitado" msgid "Other" msgstr "Outro" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Nome de Exibição" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Grupo Administrativo" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 7c537702150c92cf307e045a21c0570ff113107e..6abc8f57af79e8a3426827c493249a0bf1ada453 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: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "Usar TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Não use-o para conexões SSL, pois falhará." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 2c30f25b7230c97a8f22237d6c9da9eec16cfd8a..720a1bc3a2e4a4b6cb4eea6607fc9d3cc798797f 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -8,16 +8,16 @@ # <duartegrilo@gmail.com>, 2013. # Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. # <helder.meneses@gmail.com>, 2011, 2012. -# Helder Meneses <helder.meneses@gmail.com>, 2012. +# Helder Meneses <helder.meneses@gmail.com>, 2012-2013. # Nelson Rosado <nelsontrosado@gmail.com>, 2012. # <rjgpp.1994@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" -"Last-Translator: Duarte Velez Grilo <duartegrilo@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -58,8 +58,9 @@ msgid "No category to add?" msgstr "Nenhuma categoria para adicionar?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Esta categoria já existe:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -163,59 +164,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Definições" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "Há 1 hora" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "hoje" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "ontem" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "ultÃmo mês" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "meses atrás" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "ano passado" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "anos atrás" @@ -474,7 +475,7 @@ msgstr "Editar categorias" msgid "Add" msgstr "Adicionar" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Aviso de Segurança" @@ -484,71 +485,75 @@ msgid "" "OpenSSL extension." msgstr "Não existe nenhum gerador seguro de números aleatórios, por favor, active a extensão OpenSSL no PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sem nenhum gerador seguro de números aleatórios, uma pessoa mal intencionada pode prever a sua password, reiniciar as seguranças adicionais e tomar conta da sua conta. " +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "A sua pasta com os dados e os seus ficheiros estão provavelmente acessÃveis a partir das internet. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessÃvel, ou mova a pasta com os dados para fora da raiz de documentos do servidor web." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Criar uma <strong>conta administrativa</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configure a base de dados" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "vai ser usada" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Utilizador da base de dados" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Password da base de dados" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nome da base de dados" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Tablespace da base de dados" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Anfitrião da base de dados" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Acabar instalação" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "serviços web sob o seu controlo" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Sair" @@ -570,14 +575,18 @@ msgstr "Por favor mude a sua palavra-passe para assegurar a sua conta de novo." msgid "Lost your password?" msgstr "Esqueceu-se da sua password?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "lembrar" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Entrar" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "Contas de acesso alternativas" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 70714ed855d1324c7661177b49d30f2727528f33..4f3a80d9f705e05054df915926e419dd37cda7a3 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,16 +8,16 @@ # <duartegrilo@gmail.com>, 2013. # Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. # <geral@ricardolameiro.pt>, 2012. -# Helder Meneses <helder.meneses@gmail.com>, 2012. +# Helder Meneses <helder.meneses@gmail.com>, 2012-2013. # Miguel Sousa <migueljorgesousa@sapo.pt>, 2013. # <rjgpp.1994@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 02:40+0000\n" -"Last-Translator: Mouxy <daniel@mouxy.net>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -25,46 +25,60 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Sem erro, ficheiro enviado com sucesso" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede o diretivo MAX_FILE_SIZE especificado no formulário HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado só foi enviado parcialmente" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Não foi enviado nenhum ficheiro" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Falta uma pasta temporária" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Espaço em disco insuficiente!" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directório Inválido" @@ -76,11 +90,15 @@ msgstr "Ficheiros" msgid "Unshare" msgstr "Deixar de partilhar" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "Eliminar permanentemente" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Apagar" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Renomear" @@ -185,31 +203,31 @@ msgstr "O URL não pode estar vazio." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 3ff3c4b6238334cc7a15c4fab13ed0a74b705a32..5f79fd320696e54b06fb8ff65af4739a153061b6 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 02:40+0000\n" -"Last-Translator: Mouxy <daniel@mouxy.net>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +18,45 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Restaurar" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Apagado" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 pasta" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} pastas" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ficheiro" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index 596deab439655d4c5456ff5030ebfe3472d7a5d1..48cc4e4416c270ba2467f8a3453a5355e32d1719 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Histórico" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionamento de Ficheiros" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 9071ca3e16cc691212d2e1779f6c63872b32c425..8c1833afc0e8119ce57c8f33eee6c98f8cb92161 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 02:40+0000\n" -"Last-Translator: Mouxy <daniel@mouxy.net>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -29,6 +29,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Incapaz de carregar a lista da App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Erro de autenticação" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "O grupo já existe" @@ -53,10 +62,6 @@ msgstr "Email inválido" msgid "Unable to delete group" msgstr "ImpossÃvel apagar grupo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Erro de autenticação" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ImpossÃvel apagar utilizador" @@ -119,7 +124,7 @@ msgstr "Erro" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "A guardar..." @@ -196,67 +201,83 @@ msgstr "Transferir o cliente android" msgid "Download iOS Client" msgstr "Transferir o cliente iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Palavra-chave" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "A sua palavra-passe foi alterada" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Não foi possivel alterar a sua palavra-chave" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Palavra-chave actual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova palavra-chave" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostrar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Alterar palavra-chave" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nome público" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "endereço de email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "O seu endereço de email" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use este endereço no seu gestor de ficheiros para ligar à sua ownCloud" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versão" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -290,10 +311,6 @@ msgstr "Ilimitado" msgid "Other" msgstr "Outro" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Nome público" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Grupo Administrador" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 66e002ab89e8bda03b61ed020d9bea213f671143..643d61ad73aeec8ce18752fef93f23f067a16555 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -6,14 +6,14 @@ # <daniel@mouxy.net>, 2012-2013. # Daniel Pinto <daniel@mouxy.net>, 2013. # Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. -# Helder Meneses <helder.meneses@gmail.com>, 2012. +# Helder Meneses <helder.meneses@gmail.com>, 2012-2013. # Nelson Rosado <nelsontrosado@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -177,7 +177,7 @@ msgstr "Sem nenhuma variável. Exemplo: \"objectClass=posixGroup\"." #: templates/settings.php:31 msgid "Connection Settings" -msgstr "" +msgstr "Definições de ligação" #: templates/settings.php:33 msgid "Configuration Active" @@ -218,8 +218,8 @@ msgid "Use TLS" msgstr "Usar TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Não use para ligações SSL, irá falhar." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" @@ -245,7 +245,7 @@ msgstr "em segundos. Uma alteração esvazia a cache." #: templates/settings.php:43 msgid "Directory Settings" -msgstr "" +msgstr "Definições de directorias" #: templates/settings.php:45 msgid "User Display Name Field" @@ -297,7 +297,7 @@ msgstr "Associar utilizador ao grupo." #: templates/settings.php:53 msgid "Special Attributes" -msgstr "" +msgstr "Atributos especiais" #: templates/settings.php:56 msgid "in bytes" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 65658de58b3ba69e58816982d47ebed261bf2b43..ef9d59ed88317e52ab3d1c74621bf491836c275d 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -56,8 +56,9 @@ msgid "No category to add?" msgstr "Nici o categorie de adăugat?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Această categorie deja există:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -161,59 +162,59 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Configurări" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} ore în urmă" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "astăzi" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "ieri" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "ultima lună" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} luni în urmă" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "ultimul an" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "ani în urmă" @@ -472,7 +473,7 @@ msgstr "Editează categoriile" msgid "Add" msgstr "Adaugă" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Avertisment de securitate" @@ -482,71 +483,75 @@ msgid "" "OpenSSL extension." msgstr "Generatorul de numere pentru securitate nu este disponibil, va rog activati extensia PHP OpenSSL" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Fara generatorul pentru numere de securitate , un atacator poate afla parola si reseta contul tau" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Directorul tău de date È™i fiÈ™ierele tale probabil sunt accesibile prin internet. FiÈ™ierul .htaccess oferit de ownCloud nu funcÈ›ionează. ÃŽÈ›i recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Crează un <strong>cont de administrator</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avansat" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Director date" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurează baza de date" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "vor fi folosite" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Utilizatorul bazei de date" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Parola bazei de date" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Numele bazei de date" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Tabela de spaÈ›iu a bazei de date" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Bază date" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Finalizează instalarea" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "servicii web controlate de tine" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "IeÈ™ire" @@ -568,14 +573,18 @@ msgstr "Te rog schimba parola pentru ca, contul tau sa fie securizat din nou." msgid "Lost your password?" msgstr "Ai uitat parola?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "aminteÈ™te" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Autentificare" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedentul" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index e6df42f7c71e5814dc181d30a67f273c9a226f03..5cb6516a7378209d5f918fd4c00f6c0085c9409e 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -23,46 +23,60 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nici un fiÈ™ier nu a fost încărcat. Eroare necunoscută" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Nicio eroare, fiÈ™ierul a fost încărcat cu succes" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "FiÈ™ierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "FiÈ™ierul a fost încărcat doar parÈ›ial" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Niciun fiÈ™ier încărcat" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "LipseÈ™te un dosar temporar" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Eroare la scriere pe disc" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Nu este suficient spaÈ›iu disponibil" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Director invalid." @@ -74,11 +88,15 @@ msgstr "FiÈ™iere" msgid "Unshare" msgstr "Anulează partajarea" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Șterge" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Redenumire" @@ -183,31 +201,31 @@ msgstr "Adresa URL nu poate fi goală." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nume" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Dimensiune" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 folder" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fisier" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fisiere" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 180def499df6f2cec76daeb86548e61765888b97..252b8a0e7d8d58e3827d3a4244641d9893e70d62 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,45 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nume" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 folder" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} foldare" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fisier" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fisiere" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index 28514d6ddd3f59a7b93ebaada49b7fdc7d563820..46715013ca3bb3baf2d827a2f51c50b636931fbc 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -18,10 +18,45 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Istoric" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionare fiÈ™iere" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index e538f04214655fff067bba9c7deceb522ecd6169..a54bf6ea81fb5d33f7752efaac3f2b85e5f29a3f 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -28,6 +28,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Imposibil de încărcat lista din App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Eroare de autentificare" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupul există deja" @@ -52,10 +61,6 @@ msgstr "E-mail nevalid" msgid "Unable to delete group" msgstr "Nu s-a putut È™terge grupul" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Eroare de autentificare" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nu s-a putut È™terge utilizatorul" @@ -118,7 +123,7 @@ msgstr "Eroare" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Salvez..." @@ -195,67 +200,83 @@ msgstr "Descarcă client Android" msgid "Download iOS Client" msgstr "Descarcă client iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Parolă" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Parola a fost modificată" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Imposibil de-aÈ›i schimbat parola" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Parola curentă" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Noua parolă" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "afiÈ™ează" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Adresa ta de email" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Completează o adresă de mail pentru a-È›i putea recupera parola" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Limba" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajută la traducere" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "FoloseÈ™te această adresă pentru a conecta ownCloud cu managerul de fiÈ™iere" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versiunea" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -289,10 +310,6 @@ msgstr "Nelimitată" msgid "Other" msgstr "Altele" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Grupul Admin " diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 388d6f13f218fc3113a1509ba95c9674f24cc89a..4a97d1b7d6a031ca9d4de1bfdfb534ee4b426cf2 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "Utilizează TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "A nu se utiliza pentru conexiuni SSL, va eÈ™ua." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index d7d104fdf6bf2ca33e8a46591ac6fdb9cdaf9996..f41a1f241b90fca5adec7b14be538c1ba82c0879 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -8,17 +8,19 @@ # <k0ldbl00d@gmail.com>, 2012. # Mihail Vasiliev <mickvav@gmail.com>, 2012. # <semen@sam002.net>, 2012. +# Sergey <sergey@markevich.ru>, 2013. # <sharov3@gmail.com>, 2013. # <skoptev@ukr.net>, 2012. # <tony.mccourin@gmail.com>, 2011. # Victor Bravo <>, 2012. # <victor.dubiniuk@gmail.com>, 2012. +# Дмитрий <langaru@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -60,8 +62,9 @@ msgid "No category to add?" msgstr "Ðет категорий Ð´Ð»Ñ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ðта ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ð¸Ñ ÑƒÐ¶Ðµ ÑущеÑтвует: " +#, php-format +msgid "This category already exists: %s" +msgstr "Ðта ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ð¸Ñ ÑƒÐ¶Ðµ ÑущеÑтвует: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -165,59 +168,59 @@ msgstr "ÐоÑбрь" msgid "December" msgstr "Декабрь" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ÐаÑтройки" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "неÑколько Ñекунд назад" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "Ñ‡Ð°Ñ Ð½Ð°Ð·Ð°Ð´" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} чаÑов назад" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "ÑегоднÑ" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "вчера" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "в прошлом меÑÑце" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} меÑÑцев назад" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "неÑколько меÑÑцев назад" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "в прошлом году" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "неÑколько лет назад" @@ -266,7 +269,7 @@ msgstr "Открыть доÑтуп" #: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 msgid "Shared" -msgstr "" +msgstr "Общие" #: js/share.js:141 js/share.js:611 msgid "Error while sharing" @@ -389,11 +392,11 @@ msgid "" "The update was unsuccessful. Please report this issue to the <a " "href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " "community</a>." -msgstr "" +msgstr "При обновлении произошла ошибка. ПожалуйÑта Ñообщите об Ñтом в <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud ÑообщеÑтво</a>." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Обновление прошло уÑпешно. ПеренаправлÑемÑÑ Ð² Ваш ownCloud..." #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -476,7 +479,7 @@ msgstr "Редактировать категории" msgid "Add" msgstr "Добавить" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Предупреждение безопаÑноÑти" @@ -486,71 +489,75 @@ msgid "" "OpenSSL extension." msgstr "Ðет доÑтупного защищенного генератора Ñлучайных чиÑел, пожалуйÑта, включите раÑширение PHP OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Без защищенного генератора Ñлучайных чиÑел злоумышленник может предугадать токены ÑброÑа Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð¸ завладеть Вашей учетной запиÑью." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Ваши каталоги данных и файлы, вероÑтно, доÑтупны из Интернета. Файл .htaccess, предоÑтавлÑемый ownCloud, не работает. Мы наÑтоÑтельно рекомендуем Вам наÑтроить вебÑервер таким образом, чтобы каталоги данных больше не были доÑтупны, или перемеÑтить их за пределы корневого каталога документов веб-Ñервера." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Создать <strong>учётную запиÑÑŒ админиÑтратора</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Дополнительно" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ñ Ð´Ð°Ð½Ð½Ñ‹Ð¼Ð¸" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ÐаÑтройка базы данных" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "будет иÑпользовано" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð´Ð»Ñ Ð±Ð°Ð·Ñ‹ данных" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Пароль Ð´Ð»Ñ Ð±Ð°Ð·Ñ‹ данных" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Ðазвание базы данных" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Табличое проÑтранÑтво базы данных" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "ХоÑÑ‚ базы данных" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Завершить уÑтановку" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Сетевые Ñлужбы под твоим контролем" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Выйти" @@ -572,14 +579,18 @@ msgstr "ПожалуйÑта, Ñмените пароль, чтобы обезо msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "запомнить" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Войти" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "Ðльтернативные имена пользователÑ" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "пред" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 63ecf244040111ff6c9b4af39337d78d20c54ffd..bbb67c0ef4ace723eb4f520bd7d9d5a9a76d9781 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -9,17 +9,19 @@ # <mpolr21@gmail.com>, 2012. # Nick Remeslennikov <homolibere@gmail.com>, 2012. # <semen@sam002.net>, 2012. +# Sergey <sergey@markevich.ru>, 2013. # <sharov3@gmail.com>, 2013. # <skoptev@ukr.net>, 2012. # <tony.mccourin@gmail.com>, 2011. # Victor Bravo <>, 2012. # <victor.dubiniuk@gmail.com>, 2012. +# Дмитрий <langaru@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -28,46 +30,60 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. ÐеизвеÑÑ‚Ð½Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Файл уÑпешно загружен" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл превышает размер уÑтановленный upload_max_filesize в php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Файл был загружен не полноÑтью" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Ðевозможно найти временную папку" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Ошибка запиÑи на диÑк" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "ÐедоÑтаточно Ñвободного меÑта" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ðеправильный каталог." @@ -79,11 +95,15 @@ msgstr "Файлы" msgid "Unshare" msgstr "Отменить публикацию" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "Удалено навÑегда" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Удалить" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Переименовать" @@ -117,7 +137,7 @@ msgstr "заменено {new_name} на {old_name}" #: js/filelist.js:280 msgid "perform delete operation" -msgstr "" +msgstr "выполнÑетÑÑ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -135,17 +155,17 @@ msgstr "Ðеправильное имÑ, '\\', '/', '<', '>', ':', '\"', '|', '? #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Ваше диÑковое проÑтранÑтво полноÑтью заполнено, произведите очиÑтку перед загрузкой новых файлов." #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Ваше хранилище почти заполнено ({usedSpacePercent}%)" #: js/files.js:224 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Загрузка началаÑÑŒ. Ðто может потребовать много времени, еÑли файл большого размера." #: js/files.js:261 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -188,31 +208,31 @@ msgstr "СÑылка не может быть пуÑтой." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ðеправильное Ð¸Ð¼Ñ ÐºÐ°Ñ‚Ð°Ð»Ð¾Ð³Ð°. Ð˜Ð¼Ñ 'Shared' зарезервировано." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ðазвание" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Изменён" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 папка" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 файл" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} файлов" @@ -270,7 +290,7 @@ msgstr "Из ÑÑылки" #: templates/index.php:40 msgid "Trash" -msgstr "" +msgstr "Корзина" #: templates/index.php:46 msgid "Cancel upload" @@ -304,4 +324,4 @@ msgstr "Текущее Ñканирование" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Обновление кеша файловой ÑиÑтемы..." diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index b9f437eee8cdae6039fe0db92555a3a138bb3a2d..4f23cda8f69f46cea4cb033bac9084424adb09b8 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # Denis <reg.transifex.net@demitel.ru>, 2012. +# Дмитрий <langaru@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 06:40+0000\n" +"Last-Translator: Langaru <langaru@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,23 +23,23 @@ msgstr "" msgid "" "Please switch to your ownCloud client and change your encryption password to" " complete the conversion." -msgstr "" +msgstr "ПожалуйÑта переключитеÑÑŒ на Ваш клиент ownCloud и поменÑйте пароль ÑˆÐ¸Ð²Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ð¿Ñ€ÐµÐ¾Ð±Ñ€Ð°Ð·Ð¾Ð²Ð°Ð½Ð¸Ñ." #: js/settings-personal.js:17 msgid "switched to client side encryption" -msgstr "" +msgstr "переключён на шифрование Ñо Ñтороны клиента" #: js/settings-personal.js:21 msgid "Change encryption password to login password" -msgstr "" +msgstr "Изменить пароль ÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð²Ñ…Ð¾Ð´Ð°" #: js/settings-personal.js:25 msgid "Please check your passwords and try again." -msgstr "" +msgstr "ПожалуйÑта проверьте пароли и попробуйте Ñнова." #: js/settings-personal.js:25 msgid "Could not change your file encryption password to your login password" -msgstr "" +msgstr "Ðевозможно изменить Ваш пароль файла ÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð²Ñ…Ð¾Ð´Ð°" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" @@ -46,15 +47,15 @@ msgstr "Шифрование" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Шифрование файла включено." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Следующие типы файлов не будут зашифрованы:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "ИÑключить Ñледующие типы файлов из шифрованных:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index b208ca663dabfb7afb283c3d63c0446245870bf6..2da2f61dbc1ff5d70c84200b6d84d244734919b9 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Дмитрий <langaru@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 04:50+0000\n" +"Last-Translator: Langaru <langaru@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +18,52 @@ 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/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "%s не может быть удалён навÑегда" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "%s не может быть воÑÑтановлен" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" -msgstr "" +msgstr "выполнить операцию воÑÑтановлениÑ" + +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "удалить файл навÑегда" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "ИмÑ" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" -msgstr "" +msgstr "Удалён" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} папок" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 файл" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} файлов" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "ЗдеÑÑŒ ничего нет. Ваша корзина пуÑта!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "" +msgstr "ВоÑÑтановить" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index e25aa41375aeaeffd3ec645f9f7751a1277f652d..87dce55db7e5dfc0e49e11a49daac21fb5f50fc9 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -6,13 +6,14 @@ # Denis <reg.transifex.net@demitel.ru>, 2012. # <skoptev@ukr.net>, 2012. # <victor.dubiniuk@gmail.com>, 2012. +# Дмитрий <langaru@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 06:30+0000\n" +"Last-Translator: Langaru <langaru@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,10 +21,45 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "Ðе может быть возвращён: %s" + +#: history.php:40 +msgid "success" +msgstr "уÑпех" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "Файл %s был возвращён к верÑии %s" + +#: history.php:49 +msgid "failure" +msgstr "провал" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "Файл %s не может быть возвращён к верÑии %s" + +#: history.php:68 +msgid "No old versions available" +msgstr "Ðет доÑтупных Ñтарых верÑий" + +#: history.php:73 +msgid "No path specified" +msgstr "Путь не указан" + #: js/versions.js:16 msgid "History" msgstr "ИÑториÑ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "Вернуть файл к предыдущей верÑии нажатием на кнопку возврата" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ВерÑии файлов" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 3426bc617228b2450e96edff874d2797f698344a..f834d506e211929469154a3299eb1483899a5519 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -7,14 +7,15 @@ # <k0ldbl00d@gmail.com>, 2012. # Mihail Vasiliev <mickvav@gmail.com>, 2012. # <mpolr21@gmail.com>, 2012. +# Sergey <sergey@markevich.ru>, 2013. # <victor.dubiniuk@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-17 00:26+0100\n" -"PO-Revision-Date: 2013-01-16 23:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 07:20+0000\n" +"Last-Translator: m4rkell <sergey@markevich.ru>\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,49 +23,49 @@ 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:301 +#: app.php:313 msgid "Help" msgstr "Помощь" -#: app.php:308 +#: app.php:320 msgid "Personal" msgstr "Личное" -#: app.php:313 +#: app.php:325 msgid "Settings" msgstr "ÐаÑтройки" -#: app.php:318 +#: app.php:330 msgid "Users" msgstr "Пользователи" -#: app.php:325 +#: app.php:337 msgid "Apps" msgstr "ПриложениÑ" -#: app.php:327 +#: app.php:339 msgid "Admin" msgstr "Admin" -#: files.php:365 +#: files.php:202 msgid "ZIP download is turned off." msgstr "ZIP-Ñкачивание отключено." -#: files.php:366 +#: files.php:203 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: files.php:366 files.php:391 +#: files.php:203 files.php:228 msgid "Back to Files" msgstr "Ðазад к файлам" -#: files.php:390 +#: files.php:227 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы Ñлишком велики, чтобы Ñоздать zip файл." -#: helper.php:228 +#: helper.php:226 msgid "couldn't be determined" -msgstr "" +msgstr "Ðевозможно уÑтановить" #: json.php:28 msgid "Application is not enabled" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 489a9f51c7773d0c298a9564e0a76352494716fb..b0831ab57ab990c09cfacc061ba08db7ca87efd3 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -10,18 +10,20 @@ # Nick Remeslennikov <homolibere@gmail.com>, 2012. # <rasperepodvipodvert@gmail.com>, 2012. # <semen@sam002.net>, 2012. +# Sergey <sergey@markevich.ru>, 2013. # <sharov3@gmail.com>, 2012-2013. # <skoptev@ukr.net>, 2012. # <tony.mccourin@gmail.com>, 2011. # Victor Bravo <>, 2012. # <victor.dubiniuk@gmail.com>, 2012. +# Дмитрий <langaru@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 07:10+0000\n" +"Last-Translator: Langaru <langaru@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,6 +35,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Загрузка из App Store запрещена" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Ошибка авторизации" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "Ðевозможно изменить отображаемое имÑ" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Группа уже ÑущеÑтвует" @@ -57,10 +68,6 @@ msgstr "Ðеправильный Email" msgid "Unable to delete group" msgstr "Ðевозможно удалить группу" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Ошибка авторизации" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ðевозможно удалить пользователÑ" @@ -89,11 +96,11 @@ msgstr "Ðевозможно удалить Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸Ð· гру #: ajax/updateapp.php:13 msgid "Couldn't update app." -msgstr "" +msgstr "Ðевозможно обновить приложение" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "Обновить до {верÑÐ¸Ñ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -105,15 +112,15 @@ msgstr "Включить" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "Повремени..." #: js/apps.js:84 msgid "Updating...." -msgstr "" +msgstr "Обновление..." #: js/apps.js:87 msgid "Error while updating app" -msgstr "" +msgstr "Ошибка в процеÑÑе Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ" #: js/apps.js:87 msgid "Error" @@ -121,9 +128,9 @@ msgstr "Ошибка" #: js/apps.js:90 msgid "Updated" -msgstr "" +msgstr "Обновлено" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Сохранение..." @@ -200,67 +207,83 @@ msgstr "Загрузка Android-приложениÑ" msgid "Download iOS Client" msgstr "Загрузка iOS-приложениÑ" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Пароль" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ваш пароль изменён" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ðевозможно Ñменить пароль" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Ðовый пароль" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "показать" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Сменить пароль" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Отображаемое имÑ" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "Ваше отображаемое Ð¸Ð¼Ñ Ð±Ñ‹Ð»Ð¾ изменено" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "Ðевозможно изменить Ваше отображаемое имÑ" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "Изменить отображаемое имÑ" + +#: templates/personal.php:55 msgid "Email" msgstr "e-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ваш Ð°Ð´Ñ€ÐµÑ Ñлектронной почты" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Введите Ð°Ð´Ñ€ÐµÑ Ñлектронной почты, чтобы поÑвилаÑÑŒ возможноÑÑ‚ÑŒ воÑÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Язык" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Помочь Ñ Ð¿ÐµÑ€ÐµÐ²Ð¾Ð´Ð¾Ð¼" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ИÑпользуйте Ñтот URL Ð´Ð»Ñ Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¾Ð³Ð¾ менеджера к Вашему хранилищу" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "ВерÑиÑ" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -272,7 +295,7 @@ msgstr "РазрабатываетÑÑ <a href=\"http://ownCloud.org/contact\" t #: templates/users.php:21 templates/users.php:79 msgid "Login Name" -msgstr "" +msgstr "Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" #: templates/users.php:26 templates/users.php:82 templates/users.php:107 msgid "Groups" @@ -294,10 +317,6 @@ msgstr "Ðеограниченно" msgid "Other" msgstr "Другое" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Группа ÐдминиÑтраторы" @@ -308,11 +327,11 @@ msgstr "Хранилище" #: templates/users.php:97 msgid "change display name" -msgstr "" +msgstr "изменить отображаемое имÑ" #: templates/users.php:101 msgid "set new password" -msgstr "" +msgstr "уÑтановить новый пароль" #: templates/users.php:137 msgid "Default" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 0d01260dd959141236a98932c2d52c23f078d2f7..d9c19d16f885dbae70c6ab0e6dc86c8b2305a62a 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -6,12 +6,13 @@ # <4671992@gmail.com>, 2012. # Denis <reg.transifex.net@demitel.ru>, 2012. # <semen@sam002.net>, 2012. +# Дмитрий <langaru@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -22,11 +23,11 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Ðе удалоÑÑŒ удалить конфигурацию Ñервера" #: ajax/testConfiguration.php:35 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ Ð¸ подключение может быть уÑтановлено!" #: ajax/testConfiguration.php:37 msgid "" @@ -38,7 +39,7 @@ msgstr "" msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð½Ðµ верна. ПожалуйÑта, поÑмотрите в журнале ownCloud детали." #: js/settings.js:66 msgid "Deletion failed" @@ -46,31 +47,31 @@ msgstr "Удаление не удалоÑÑŒ" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "ПринÑÑ‚ÑŒ наÑтройки из поÑледней конфигурации Ñервера?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "Сохранить наÑтройки?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "Ðе получилоÑÑŒ добавить конфигурацию Ñервера" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "Проверка ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ ÑƒÐ´Ð°Ð»Ð°ÑÑŒ" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "Проверка ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð½Ðµ удалаÑÑŒ" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "Ð’Ñ‹ дейÑтвительно хотите удалить ÑущеÑтвующую конфигурацию Ñервера?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "Подтверждение удалениÑ" #: templates/settings.php:8 msgid "" @@ -87,11 +88,11 @@ msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ñервера" #: templates/settings.php:17 msgid "Add Server Configuration" -msgstr "" +msgstr "Добавить конфигурацию Ñервера" #: templates/settings.php:21 msgid "Host" @@ -175,11 +176,11 @@ msgstr "без заполнениÑ, например \"objectClass=posixGroup\" #: templates/settings.php:31 msgid "Connection Settings" -msgstr "" +msgstr "ÐаÑтройки подключениÑ" #: templates/settings.php:33 msgid "Configuration Active" -msgstr "" +msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð°" #: templates/settings.php:33 msgid "When unchecked, this configuration will be skipped." @@ -205,7 +206,7 @@ msgstr "" #: templates/settings.php:37 msgid "Disable Main Server" -msgstr "" +msgstr "Отключение главного Ñервера" #: templates/settings.php:37 msgid "When switched on, ownCloud will only connect to the replica server." @@ -216,8 +217,8 @@ msgid "Use TLS" msgstr "ИÑпользовать TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ðе иÑпользуйте Ð´Ð»Ñ Ñоединений SSL" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" @@ -243,7 +244,7 @@ msgstr "в Ñекундах. Изменение очиÑтит кÑш." #: templates/settings.php:43 msgid "Directory Settings" -msgstr "" +msgstr "ÐаÑтройки каталога" #: templates/settings.php:45 msgid "User Display Name Field" @@ -263,11 +264,11 @@ msgstr "" #: templates/settings.php:47 msgid "User Search Attributes" -msgstr "" +msgstr "ПоиÑковые атрибуты пользователÑ" #: templates/settings.php:47 templates/settings.php:50 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Опционально; один атрибут на линию" #: templates/settings.php:48 msgid "Group Display Name Field" @@ -295,7 +296,7 @@ msgstr "ÐÑÑÐ¾Ñ†Ð¸Ð°Ñ†Ð¸Ñ Ð“Ñ€ÑƒÐ¿Ð¿Ð°-УчаÑтник" #: templates/settings.php:53 msgid "Special Attributes" -msgstr "" +msgstr "Специальные атрибуты" #: templates/settings.php:56 msgid "in bytes" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 465c3cb0a8ba489cd5217cdd81cbe38b31620e93..a32af7892a240bb26620e1842676fdde40934a65 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -5,12 +5,13 @@ # Translators: # <cdewqazxsqwe@gmail.com>, 2013. # <cdewqazxsqwe@gmail.com>, 2012. +# Дмитрий <langaru@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -52,8 +53,9 @@ msgid "No category to add?" msgstr "Ðет категории Ð´Ð»Ñ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ðта ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ð¸Ñ ÑƒÐ¶Ðµ ÑущеÑтвует:" +#, php-format +msgid "This category already exists: %s" +msgstr "Ðта ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ð¸Ñ ÑƒÐ¶Ðµ ÑущеÑтвует: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +159,59 @@ msgstr "ÐоÑбрь" msgid "December" msgstr "Декабрь" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ÐаÑтройки" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "Ñекунд назад" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr " 1 минуту назад" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{минуты} минут назад" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 Ñ‡Ð°Ñ Ð½Ð°Ð·Ð°Ð´" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{чаÑÑ‹} чаÑов назад" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "ÑегоднÑ" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "вчера" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{дни} дней назад" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "в прошлом меÑÑце" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{меÑÑцы} меÑÑцев назад" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "меÑÑц назад" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "в прошлом году" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "лет назад" @@ -468,7 +470,7 @@ msgstr "Редактирование категорий" msgid "Add" msgstr "Добавить" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Предупреждение ÑиÑтемы безопаÑноÑти" @@ -478,71 +480,75 @@ msgid "" "OpenSSL extension." msgstr "Ðет доÑтупного защищенного генератора Ñлучайных чиÑел, пожалуйÑта, включите раÑширение PHP OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Без защищенного генератора Ñлучайных чиÑел злоумышленник может Ñпрогнозировать пароль, ÑброÑить учетные данные и завладеть Вашим аккаунтом." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Ваши каталоги данных и файлы, вероÑтно, доÑтупны из Интернета. Файл .htaccess, предоÑтавлÑемый ownCloud, не работает. Мы наÑтоÑтельно рекомендуем Вам наÑтроить вебÑервер таким образом, чтобы каталоги данных больше не были доÑтупны, или перемеÑтить их за пределы корневого каталога документов веб-Ñервера." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Создать <strong>admin account</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "РаÑширенный" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Папка данных" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ÐаÑтроить базу данных" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "будет иÑпользоватьÑÑ" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Пользователь базы данных" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Пароль базы данных" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Ð˜Ð¼Ñ Ð±Ð°Ð·Ñ‹ данных" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Ð¢Ð°Ð±Ð»Ð¸Ñ‡Ð½Ð°Ñ Ð¾Ð±Ð»Ð°ÑÑ‚ÑŒ базы данных" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Сервер базы данных" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Завершение наÑтройки" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "веб-ÑервиÑÑ‹ под Вашим контролем" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Выйти" @@ -564,14 +570,18 @@ msgstr "ПожалуйÑта, измените пароль, чтобы защи msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "запомнить" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Войти" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "Ðльтернативные Имена" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "предыдущий" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index d0beae0d809517973c2737ffe2b09797b75a0bac..574b383f37a0f45089e0b4fa123948d0eb0493ce 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -6,12 +6,13 @@ # <cdewqazxsqwe@gmail.com>, 2013. # <cdewqazxsqwe@gmail.com>, 2012. # <skoptev@ukr.net>, 2012. +# Дмитрий <langaru@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -20,46 +21,60 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. ÐеизвеÑÑ‚Ð½Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ошибка отÑутÑтвует, файл загружен уÑпешно." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Размер загружаемого файла превышает upload_max_filesize директиву в php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Размер загруженного" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Загружаемый файл был загружен чаÑтично" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ОтÑутÑтвует Ð²Ñ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ Ð¿Ð°Ð¿ÐºÐ°" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Ðе удалоÑÑŒ запиÑать на диÑк" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Ðе доÑтаточно Ñвободного меÑта" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ðеверный каталог." @@ -71,11 +86,15 @@ msgstr "Файлы" msgid "Unshare" msgstr "Скрыть" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "Удалить навÑегда" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Удалить" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Переименовать" @@ -109,7 +128,7 @@ msgstr "заменено {новое_имÑ} Ñ {Ñтарое_имÑ}" #: js/filelist.js:280 msgid "perform delete operation" -msgstr "" +msgstr "выполнÑетÑÑ Ð¿Ñ€Ð¾Ñ†ÐµÑÑ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -127,17 +146,17 @@ msgstr "Ðекорректное имÑ, '\\', '/', '<', '>', ':', '\"', '|', '? #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Ваше хранилище переполнено, фалы больше не могут быть обновлены или Ñинхронизированы!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Ваше хранилище почти полно ({usedSpacePercent}%)" #: js/files.js:224 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Идёт подготовка к Ñкачке Вашего файла. Ðто может занÑÑ‚ÑŒ некоторое времÑ, еÑли фалы большие." #: js/files.js:261 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -180,31 +199,31 @@ msgstr "URL не должен быть пуÑтым." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ðеверное Ð¸Ð¼Ñ Ð¿Ð°Ð¿ÐºÐ¸. ИÑпользование Ð½Ð°Ð¸Ð¼ÐµÐ½Ð¾Ð²Ð°Ð½Ð¸Ñ 'Опубликовано' зарезервировано Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "ИмÑ" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Изменен" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 папка" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{количеÑтво} папок" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 файл" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{количеÑтво} файлов" @@ -262,7 +281,7 @@ msgstr "По ÑÑылке" #: templates/index.php:40 msgid "Trash" -msgstr "" +msgstr "Корзина" #: templates/index.php:46 msgid "Cancel upload" diff --git a/l10n/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po index 71505abd669cfdcbcb466ead1d20ccf41586a1a7..d738f9f42154bb6609ac8f57393b1dbafe4d23c8 100644 --- a/l10n/ru_RU/files_trashbin.po +++ b/l10n/ru_RU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 17:51+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" @@ -17,31 +17,45 @@ 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/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "ИмÑ" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{количеÑтво} папок" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 файл" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{количеÑтво} файлов" @@ -51,4 +65,4 @@ msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "" +msgstr "ВоÑÑтановить" diff --git a/l10n/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po index 440d5bbecb080d2d6c30f7fe5ed7d0b76082fc29..1cb13519bbbfe0ab34413316c93e54db6f8ec153 100644 --- a/l10n/ru_RU/files_versions.po +++ b/l10n/ru_RU/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ИÑториÑ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Файлы ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð²ÐµÑ€ÑиÑми" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index b7258db60abfd9055c487bb81cfa06d7b2235a3c..184b4e73c63cb9d715f6b9e4dec2797d3760ebd3 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ðевозможно загрузить ÑпиÑок из App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Ошибка авторизации" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Группа уже ÑущеÑтвует" @@ -47,10 +56,6 @@ msgstr "Ðеверный email" msgid "Unable to delete group" msgstr "Ðевозможно удалить группу" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Ошибка авторизации" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ðевозможно удалить пользователÑ" @@ -113,7 +118,7 @@ msgstr "Ошибка" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Сохранение" @@ -190,67 +195,83 @@ msgstr "Загрузить клиент под Android " msgid "Download iOS Client" msgstr "Загрузить клиент под iOS " -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Пароль" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ваш пароль был изменен" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ðевозможно изменить Ваш пароль" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Ðовый пароль" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "показать" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Изменить пароль" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "ÐÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð°Ñ Ð¿Ð¾Ñ‡Ñ‚Ð°" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ÐÐ´Ñ€ÐµÑ Ð’Ð°ÑˆÐµÐ¹ Ñлектронной почты" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Введите Ð°Ð´Ñ€ÐµÑ Ñлектронной почты Ð´Ð»Ñ Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð¾Ñти воÑÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Язык" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Помогите перевеÑти" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ИÑпользуйте Ñтот Ð°Ð´Ñ€ÐµÑ Ð´Ð»Ñ Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ðº ownCloud в Вашем файловом менеджере" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "ВерÑиÑ" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -284,10 +305,6 @@ msgstr "Ðеограниченный" msgid "Other" msgstr "Другой" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Группа Admin" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po index 848fc9df8d74aba574d9849a0e7b11296624eb66..0b6b9ebf1a5b39783be624399aca49c3a4990d73 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/ru_RU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "ИÑпользовать TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ðе иÑпользуйте Ñто SSL-Ñоединений, Ñто не будет выполнено." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 1d65d6ef591be88f9ddcf03f22db228bc21fe376..d628f447037566f4a1249e629e85ec3618a6bc50 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -53,7 +53,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -158,59 +159,59 @@ msgstr "නොවà·à¶¸à·Šà¶¶à¶»à·Š" msgid "December" msgstr "දෙසà·à¶¸à·Šà¶¶à¶»à·Š" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "à·ƒà·à¶šà·ƒà·”ම්" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "à¶à¶à·Šà¶´à¶»à¶ºà¶±à·Šà¶§ පෙර" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 මිනිà¶à·Šà¶à·”වකට පෙර" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "අද" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "පෙර මà·à·ƒà¶ºà·š" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "මà·à·ƒ කීපයකට පෙර" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" @@ -469,7 +470,7 @@ msgstr "ප්â€à¶»à¶·à·šà¶¯à¶ºà¶±à·Š සංස්කරණය" msgid "Add" msgstr "එක් කරන්න" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "ආරක්ෂක නිවේදනයක්" @@ -479,71 +480,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "ආරක්ෂිචඅහඹු සංඛ්â€à¶ºà· උà¶à·Šà¶´à·à¶¯à¶šà¶ºà¶šà·Š නොමà·à¶à·’ නම් ඔබගේ ගිණුමට පහරදෙන අයකුට එහි මුරපද යළි පිහිටුවීමට අවà·à·Šâ€à¶º ටà·à¶šà¶± පහසුවෙන් සොයà·à¶œà·™à¶± ඔබගේ ගිණුම පà·à·„à·à¶»à¶œà¶ à·„à·à¶š." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "ඔබගේ දà¶à·Šà¶ ඩිරෙක්ටරිය හ෠ගොනුවලට අන්à¶à¶»à·Šà¶¢à·à¶½à¶ºà·™à¶±à·Š පිවිසිය à·„à·à¶š. ownCloud සපය෠ඇà¶à·’ .htaccess ගොනුව ක්â€à¶»à·’යà·à¶šà¶»à¶±à·Šà¶±à·š නà·à¶. අපි à¶à¶»à¶ºà·š කිය෠සිටිනුයේ නම්, මෙම දà¶à·Šà¶ හ෠ගොනු එසේ පිවිසීමට නොහà·à¶šà·’ වන ලෙස ඔබේ වෙබ් සේවà·à¶¯à·à¶ºà¶šà¶ºà· වින්â€à¶ºà·à·ƒ කරන ලෙස හ෠එම ඩිරෙක්ටරිය වෙබ් මූලයෙන් පිටà¶à¶§ ගෙනයන ලෙසය." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "දියුණු/උසස්" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "දà¶à·Šà¶ à·†à·à¶½à·Šà¶©à¶»à¶º" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "දà¶à·Šà¶ සමුදà·à¶º à·„à·à¶©à¶œà·à·ƒà·“ම" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "භà·à·€à·’à¶à· වනු ඇà¶" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "දà¶à·Šà¶à¶œà¶¶à¶©à· භà·à·€à·’à¶à·à¶šà¶»à·”" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "දà¶à·Šà¶à¶œà¶¶à¶©à·à·€à·š මුරපදය" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "දà¶à·Šà¶à¶œà¶¶à¶©à·à·€à·š නම" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "දà¶à·Šà¶à¶œà¶¶à¶©à· සේවà·à¶¯à·à¶ºà¶šà¶ºà·" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ස්ථà·à¶´à¶±à¶º කිරීම අවසන් කරන්න" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ඔබට පà·à¶½à¶±à¶º කළ à·„à·à¶šà·’ වෙබ් සේවà·à·€à¶±à·Š" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "නික්මීම" @@ -565,14 +570,18 @@ msgstr "" msgid "Lost your password?" msgstr "මුරපදය අමà¶à¶šà¶¯?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "මà¶à¶š à¶à¶¶à·à¶œà¶±à·Šà¶±" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "ප්â€à¶»à·€à·šà·à·€à¶±à·Šà¶±" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "පෙර" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index b61cf98e2dd5dfd811cfd4e08f0a9c3fc40cbf82..e3e769381eb3bfae9b6595c6ce02a2669ba1c9af 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,60 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගචනොවුනි. නොහà·à¶³à·’නු දà·à·‚යක්" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "නිවà·à¶»à¶¯à·’ à·€ ගොනුව උඩුගචකෙරිනි" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "උඩුගචකළ ගොනුවේ විà·à·à¶½à¶à·Šà·€à¶º HTML පà·à¶»à¶¸à¶ºà·š නියම කළ ඇà¶à·’ MAX_FILE_SIZE විà·à·à¶½à¶à·Šà·€à¶ºà¶§ වඩ෠වà·à¶©à·’ය" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගචකළ ගොනුවේ කොටසක් පමණක් උඩුගචවිය" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "කිසිදු ගොනවක් උඩුගචනොවිනි" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "à¶à·à·€à¶šà·à¶½à·’ක ෆොල්ඩරයක් සොයà·à¶œà¶ නොහà·à¶š" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "à¶à·à¶§à·’ගචකිරීම අසà·à¶»à·Šà¶®à¶šà¶ºà·’" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +84,15 @@ msgstr "ගොනු" msgid "Unshare" msgstr "නොබෙදු" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "මකන්න" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "නà·à·€à¶ නම් කරන්න" @@ -179,31 +197,31 @@ msgstr "යොමුව හිස් විය නොහà·à¶š" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "නම" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "ප්â€à¶»à¶¸à·à¶«à¶º" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index c5abfae0b8113af59379b729e778889a3cb0bfd3..a1174c1e82c605904b191a09f67f1afed102c6a3 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,45 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "නම" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/si_LK/files_versions.po b/l10n/si_LK/files_versions.po index 65443ed184b8d7d55870ad761f4e07f8e32d9bb3..a7a9fdc4990d30c5da5c576b322709eb818578e4 100644 --- a/l10n/si_LK/files_versions.po +++ b/l10n/si_LK/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +18,45 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ඉà¶à·’à·„à·à·ƒà¶º" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ගොනු අනුවà·à¶¯à¶ºà¶±à·Š" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 76d2386842ec835c86e5e83f6a39787ea0263396..223283dfa924c636b0d61e2e645708830e03dd13 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "à·ƒà¶à·Šâ€à¶ºà·à¶´à¶± දà·à·‚යක්" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "කණ්ඩà·à¶ºà¶¸ දà·à¶±à¶§à¶¸à¶à·Š à¶à·’බේ" @@ -48,10 +57,6 @@ msgstr "අවලංගු වි-à¶à·à¶´à·‘ල" msgid "Unable to delete group" msgstr "කණ්ඩà·à¶ºà¶¸ මà·à¶šà·“මට නොහà·à¶š" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "à·ƒà¶à·Šâ€à¶ºà·à¶´à¶± දà·à·‚යක්" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "පරිà·à·“ලකය෠මà·à¶šà·“මට නොහà·à¶š" @@ -114,7 +119,7 @@ msgstr "දà·à·‚යක්" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "සුරà·à¶šà·™à¶¸à·’න් පවà¶à·“..." @@ -191,67 +196,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "මුරපදය" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "ඔබගේ මුර පදය වෙනස් කෙරුණි" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "මුර පදය වෙනස් කළ නොහà·à¶šà·’ විය" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "à·€à¶à·Šà¶¸à¶±à·Š මුරපදය" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "නව මුරපදය" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "ප්â€à¶»à¶¯à¶»à·Šà·à¶±à¶º කිරීම" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "මුරපදය වෙනස් කිරීම" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "විද්â€à¶ºà·”à¶à·Š à¶à·à¶´à·‘ල" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ඔබගේ විද්â€à¶ºà·”à¶à·Š à¶à·à¶´à·‘ල" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "මුරපද ප්â€à¶»à¶à·’ස්ථà·à¶´à¶±à¶º සඳහ෠විද්â€à¶ºà·”à¶à·Š à¶à·à¶´à·à¶½à·Š විස්à¶à¶» ලබ෠දෙන්න" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "භà·à·‚à·à·€" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "පරිවර්ථන සහය" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -285,10 +306,6 @@ msgstr "" msgid "Other" msgstr "වෙනà¶à·Š" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "කà·à¶«à·Šà¶© පරිපà·à¶½à¶š" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index cb5a0b25f19947a1a9ce3f854ae642000d37506c..992b171e9093a4414032ae2a1061ca98dc55fb4d 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,7 +214,7 @@ msgid "Use TLS" msgstr "TLS භà·à·€à·’à¶à· කරන්න" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/sk/core.po b/l10n/sk/core.po new file mode 100644 index 0000000000000000000000000000000000000000..5986e77ed44fb2cf725af486e3f7b2acad8831e0 --- /dev/null +++ b/l10n/sk/core.po @@ -0,0 +1,593 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ajax/share.php:85 +#, php-format +msgid "User %s shared a file with you" +msgstr "" + +#: ajax/share.php:87 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:89 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:91 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:32 +msgid "Monday" +msgstr "" + +#: js/config.php:32 +msgid "Tuesday" +msgstr "" + +#: js/config.php:32 +msgid "Wednesday" +msgstr "" + +#: js/config.php:32 +msgid "Thursday" +msgstr "" + +#: js/config.php:32 +msgid "Friday" +msgstr "" + +#: js/config.php:32 +msgid "Saturday" +msgstr "" + +#: js/config.php:33 +msgid "January" +msgstr "" + +#: js/config.php:33 +msgid "February" +msgstr "" + +#: js/config.php:33 +msgid "March" +msgstr "" + +#: js/config.php:33 +msgid "April" +msgstr "" + +#: js/config.php:33 +msgid "May" +msgstr "" + +#: js/config.php:33 +msgid "June" +msgstr "" + +#: js/config.php:33 +msgid "July" +msgstr "" + +#: js/config.php:33 +msgid "August" +msgstr "" + +#: js/config.php:33 +msgid "September" +msgstr "" + +#: js/config.php:33 +msgid "October" +msgstr "" + +#: js/config.php:33 +msgid "November" +msgstr "" + +#: js/config.php:33 +msgid "December" +msgstr "" + +#: js/js.js:284 +msgid "Settings" +msgstr "" + +#: js/js.js:764 +msgid "seconds ago" +msgstr "" + +#: js/js.js:765 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:766 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:767 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:768 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:769 +msgid "today" +msgstr "" + +#: js/js.js:770 +msgid "yesterday" +msgstr "" + +#: js/js.js:771 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:772 +msgid "last month" +msgstr "" + +#: js/js.js:773 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:774 +msgid "months ago" +msgstr "" + +#: js/js.js:775 +msgid "last year" +msgstr "" + +#: js/js.js:776 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:126 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:162 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:163 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:180 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:571 +#: js/share.js:583 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 +msgid "Share" +msgstr "" + +#: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 +msgid "Shared" +msgstr "" + +#: js/share.js:141 js/share.js:611 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:152 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:159 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:168 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:170 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:175 +msgid "Share with" +msgstr "" + +#: js/share.js:180 +msgid "Share with link" +msgstr "" + +#: js/share.js:183 +msgid "Password protect" +msgstr "" + +#: js/share.js:185 templates/installation.php:44 templates/login.php:35 +msgid "Password" +msgstr "" + +#: js/share.js:189 +msgid "Email link to person" +msgstr "" + +#: js/share.js:190 +msgid "Send" +msgstr "" + +#: js/share.js:194 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:195 +msgid "Expiration date" +msgstr "" + +#: js/share.js:227 +msgid "Share via email:" +msgstr "" + +#: js/share.js:229 +msgid "No people found" +msgstr "" + +#: js/share.js:256 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:292 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:313 +msgid "Unshare" +msgstr "" + +#: js/share.js:325 +msgid "can edit" +msgstr "" + +#: js/share.js:327 +msgid "access control" +msgstr "" + +#: js/share.js:330 +msgid "create" +msgstr "" + +#: js/share.js:333 +msgid "update" +msgstr "" + +#: js/share.js:336 +msgid "delete" +msgstr "" + +#: js/share.js:339 +msgid "share" +msgstr "" + +#: js/share.js:373 js/share.js:558 +msgid "Password protected" +msgstr "" + +#: js/share.js:571 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:583 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:598 +msgid "Sending ..." +msgstr "" + +#: js/share.js:609 +msgid "Email sent" +msgstr "" + +#: js/update.js:14 +msgid "" +"The update was unsuccessful. Please report this issue to the <a " +"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " +"community</a>." +msgstr "" + +#: js/update.js:18 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:47 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:23 templates/installation.php:30 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:25 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" + +#: templates/installation.php:36 +msgid "Create an <strong>admin account</strong>" +msgstr "" + +#: templates/installation.php:52 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:54 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:61 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:113 +msgid "Database password" +msgstr "" + +#: templates/installation.php:117 +msgid "Database name" +msgstr "" + +#: templates/installation.php:125 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:131 +msgid "Database host" +msgstr "" + +#: templates/installation.php:136 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:33 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:48 +msgid "Log out" +msgstr "" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:41 +msgid "remember" +msgstr "" + +#: templates/login.php:43 +msgid "Log in" +msgstr "" + +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po new file mode 100644 index 0000000000000000000000000000000000000000..e1beb2b3ae564feda5de09f882777baf5755ad0a --- /dev/null +++ b/l10n/sk/files.po @@ -0,0 +1,314 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:26 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:27 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:29 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:31 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:32 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:33 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:34 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:83 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:10 +msgid "Files" +msgstr "" + +#: js/fileactions.js:117 templates/index.php:85 templates/index.php:86 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:187 +msgid "Rename" +msgstr "" + +#: js/filelist.js:208 js/filelist.js:210 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:208 js/filelist.js:210 +msgid "replace" +msgstr "" + +#: js/filelist.js:208 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:208 js/filelist.js:210 +msgid "cancel" +msgstr "" + +#: js/filelist.js:253 +msgid "replaced {new_name}" +msgstr "" + +#: js/filelist.js:253 js/filelist.js:255 +msgid "undo" +msgstr "" + +#: js/filelist.js:255 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:280 +msgid "perform delete operation" +msgstr "" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:224 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:261 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:261 +msgid "Upload Error" +msgstr "" + +#: js/files.js:278 +msgid "Close" +msgstr "" + +#: js/files.js:297 js/files.js:413 js/files.js:444 +msgid "Pending" +msgstr "" + +#: js/files.js:317 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:320 js/files.js:375 js/files.js:390 +msgid "{count} files uploading" +msgstr "" + +#: js/files.js:393 js/files.js:428 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:502 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:575 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:580 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:953 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:954 templates/index.php:78 +msgid "Size" +msgstr "" + +#: js/files.js:955 templates/index.php:80 +msgid "Modified" +msgstr "" + +#: js/files.js:974 +msgid "1 folder" +msgstr "" + +#: js/files.js:976 +msgid "{count} folders" +msgstr "" + +#: js/files.js:984 +msgid "1 file" +msgstr "" + +#: js/files.js:986 +msgid "{count} files" +msgstr "" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:40 +msgid "Trash" +msgstr "" + +#: templates/index.php:46 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:59 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "" + +#: templates/index.php:105 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:107 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:112 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:115 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..1873413f16c9af1f8be24b2d80864085b92ab810 --- /dev/null +++ b/l10n/sk/files_encryption.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-08-12 22:33+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: js/settings-personal.js:17 +msgid "" +"Please switch to your ownCloud client and change your encryption password to" +" complete the conversion." +msgstr "" + +#: js/settings-personal.js:17 +msgid "switched to client side encryption" +msgstr "" + +#: js/settings-personal.js:21 +msgid "Change encryption password to login password" +msgstr "" + +#: js/settings-personal.js:25 +msgid "Please check your passwords and try again." +msgstr "" + +#: js/settings-personal.js:25 +msgid "Could not change your file encryption password to your login password" +msgstr "" + +#: templates/settings-personal.php:4 templates/settings.php:5 +msgid "Encryption" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" + +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 +msgid "None" +msgstr "" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..3c72b5b471470936059969dfe224a32b1c2011aa --- /dev/null +++ b/l10n/sk/files_external.po @@ -0,0 +1,120 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:73 js/google.js:72 +msgid "Fill out all required fields" +msgstr "" + +#: js/dropbox.js:85 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:26 js/google.js:73 js/google.js:78 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:405 +msgid "" +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:406 +msgid "" +"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:22 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:9 +msgid "Backend" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:27 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:85 +msgid "None set" +msgstr "" + +#: templates/settings.php:86 +msgid "All Users" +msgstr "" + +#: templates/settings.php:87 +msgid "Groups" +msgstr "" + +#: templates/settings.php:95 +msgid "Users" +msgstr "" + +#: templates/settings.php:108 templates/settings.php:109 +#: templates/settings.php:144 templates/settings.php:145 +msgid "Delete" +msgstr "" + +#: templates/settings.php:124 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:125 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:136 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:153 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..942e60b0498d651b2cae2ea7f39ec94250e84b0b --- /dev/null +++ b/l10n/sk/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-08-12 22:35+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 +msgid "Download" +msgstr "" + +#: templates/public.php:29 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:35 +msgid "web services under your control" +msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..8655044756660973bca07542240635e6b95c6263 --- /dev/null +++ b/l10n/sk/files_trashbin.po @@ -0,0 +1,68 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-01-31 16:03+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 +msgid "Name" +msgstr "" + +#: js/trash.js:126 templates/index.php:27 +msgid "Deleted" +msgstr "" + +#: js/trash.js:135 +msgid "1 folder" +msgstr "" + +#: js/trash.js:137 +msgid "{count} folders" +msgstr "" + +#: js/trash.js:145 +msgid "1 file" +msgstr "" + +#: js/trash.js:147 +msgid "{count} files" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "" diff --git a/l10n/sk/files_versions.po b/l10n/sk/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..dd26d70a1ccec158fe47384e0c23fb33245e41b3 --- /dev/null +++ b/l10n/sk/files_versions.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-08-12 22:37+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + +#: js/versions.js:16 +msgid "History" +msgstr "" + +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..0d0976b9704ef8be2a693a46eaf5fde0328fe480 --- /dev/null +++ b/l10n/sk/lib.po @@ -0,0 +1,156 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: app.php:313 +msgid "Help" +msgstr "" + +#: app.php:320 +msgid "Personal" +msgstr "" + +#: app.php:325 +msgid "Settings" +msgstr "" + +#: app.php:330 +msgid "Users" +msgstr "" + +#: app.php:337 +msgid "Apps" +msgstr "" + +#: app.php:339 +msgid "Admin" +msgstr "" + +#: files.php:202 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:203 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:203 files.php:228 +msgid "Back to Files" +msgstr "" + +#: files.php:227 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: helper.php:226 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: template.php:113 +msgid "seconds ago" +msgstr "" + +#: template.php:114 +msgid "1 minute ago" +msgstr "" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:116 +msgid "1 hour ago" +msgstr "" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 +msgid "today" +msgstr "" + +#: template.php:119 +msgid "yesterday" +msgstr "" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:121 +msgid "last month" +msgstr "" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:123 +msgid "last year" +msgstr "" + +#: template.php:124 +msgid "years ago" +msgstr "" + +#: updater.php:75 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:77 +msgid "up to date" +msgstr "" + +#: updater.php:80 +msgid "updates check is disabled" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..8ae555c067af1d2116cad873522e97555b1e1bb1 --- /dev/null +++ b/l10n/sk/settings.po @@ -0,0 +1,328 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:28 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:34 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:13 +msgid "Couldn't update app." +msgstr "" + +#: js/apps.js:30 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:36 js/apps.js:76 +msgid "Disable" +msgstr "" + +#: js/apps.js:36 js/apps.js:64 +msgid "Enable" +msgstr "" + +#: js/apps.js:55 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:84 +msgid "Updating...." +msgstr "" + +#: js/apps.js:87 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:87 +msgid "Error" +msgstr "" + +#: js/apps.js:90 +msgid "Updated" +msgstr "" + +#: js/personal.js:96 +msgid "Saving..." +msgstr "" + +#: personal.php:34 personal.php:35 +msgid "__language_name__" +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:24 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:28 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:29 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" + +#: templates/apps.php:31 +msgid "Update" +msgstr "" + +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:7 +msgid "Forum" +msgstr "" + +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" +msgstr "" + +#: templates/personal.php:12 +msgid "Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 +msgid "Password" +msgstr "" + +#: templates/personal.php:24 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:25 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:26 +msgid "Current password" +msgstr "" + +#: templates/personal.php:27 +msgid "New password" +msgstr "" + +#: templates/personal.php:28 +msgid "show" +msgstr "" + +#: templates/personal.php:29 +msgid "Change password" +msgstr "" + +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 +msgid "Email" +msgstr "" + +#: templates/personal.php:56 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:57 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:63 templates/personal.php:64 +msgid "Language" +msgstr "" + +#: templates/personal.php:69 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:74 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:76 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:85 +msgid "Version" +msgstr "" + +#: templates/personal.php:87 +msgid "" +"Developed by the <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +msgstr "" + +#: templates/users.php:21 templates/users.php:79 +msgid "Login Name" +msgstr "" + +#: templates/users.php:26 templates/users.php:82 templates/users.php:107 +msgid "Groups" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:142 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:157 +msgid "Other" +msgstr "" + +#: templates/users.php:84 templates/users.php:121 +msgid "Group Admin" +msgstr "" + +#: templates/users.php:86 +msgid "Storage" +msgstr "" + +#: templates/users.php:97 +msgid "change display name" +msgstr "" + +#: templates/users.php:101 +msgid "set new password" +msgstr "" + +#: templates/users.php:137 +msgid "Default" +msgstr "" + +#: templates/users.php:165 +msgid "Delete" +msgstr "" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..3148a0621610d1c22de02b96a7d1835b5951d138 --- /dev/null +++ b/l10n/sk/user_ldap.po @@ -0,0 +1,309 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-08-12 22:45+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:35 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:37 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:40 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:121 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:126 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:136 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:137 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +msgid "" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:15 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:17 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:21 +msgid "Host" +msgstr "" + +#: templates/settings.php:21 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:22 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:22 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:22 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:23 +msgid "User DN" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:24 +msgid "Password" +msgstr "" + +#: templates/settings.php:24 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:25 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:25 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:25 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:26 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:26 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:26 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:27 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:27 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:27 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:31 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:33 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:33 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:34 +msgid "Port" +msgstr "" + +#: templates/settings.php:35 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:35 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:36 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:37 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:37 +msgid "When switched on, ownCloud will only connect to the replica server." +msgstr "" + +#: templates/settings.php:38 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:38 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:39 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:40 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:40 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:40 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:41 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:43 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:45 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:45 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:46 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:46 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:47 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:47 templates/settings.php:50 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:48 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:48 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:49 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:49 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:50 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:51 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:53 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:56 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:58 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:62 +msgid "Help" +msgstr "" diff --git a/l10n/sk/user_webdavauth.po b/l10n/sk/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..eb6e13c58c0b8df5ce71710b079c030a8f6d3010 --- /dev/null +++ b/l10n/sk/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-11-09 09:06+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: 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:7 +msgid "" +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 573c3348cb499ae629e26c348b846db22a93a308..fa46fb2750a47d5d3edc4f5e109a8add7cda8f34 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# georg <georg007@gmail.com>, 2013. # <intense.feel@gmail.com>, 2011, 2012. # Marián Hvolka <marian.hvolka@stuba.sk>, 2013. # <martin.babik@gmail.com>, 2012. @@ -13,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -56,8 +57,9 @@ msgid "No category to add?" msgstr "Žiadna kategória pre pridanie?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Táto kategória už existuje:" +#, php-format +msgid "This category already exists: %s" +msgstr "Kategéria: %s už existuje." #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -161,59 +163,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "Pred 1 hodinou." -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "dnes" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "vÄera" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "minulý rok" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "pred rokmi" @@ -472,7 +474,7 @@ msgstr "Úprava kategóriÃ" msgid "Add" msgstr "PridaÅ¥" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "BezpeÄnostné varovanie" @@ -482,71 +484,75 @@ msgid "" "OpenSSL extension." msgstr "Nie je dostupný žiadny bezpeÄný generátor náhodných ÄÃsel, prosÃm, povoľte rozÅ¡Ãrenie OpenSSL v PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Bez bezpeÄného generátora náhodných ÄÃsel môže útoÄnÃk predpovedaÅ¥ token pre obnovu hesla a prevziaÅ¥ kontrolu nad vaÅ¡Ãm kontom." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Váš prieÄinok s dátami a VaÅ¡e súbory sú pravdepodobne dostupné z internetu. .htaccess súbor dodávaný s inÅ¡taláciou ownCloud nespĺňa úlohu. Dôrazne Vám doporuÄujeme nakonfigurovaÅ¥ webserver takým spôsobom, aby dáta v prieÄinku neboli verejné, alebo presuňte dáta mimo Å¡truktúry prieÄinkov webservera." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "VytvoriÅ¥ <strong>administrátorský úÄet</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "PokroÄilé" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "PrieÄinok dát" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "NastaviÅ¥ databázu" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "bude použité" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Hostiteľ databázy" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Heslo databázy" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Meno databázy" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Tabuľkový priestor databázy" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Server databázy" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "DokonÄiÅ¥ inÅ¡taláciu" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "webové služby pod vaÅ¡ou kontrolou" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "OdhlásiÅ¥" @@ -568,14 +574,18 @@ msgstr "ProsÃm, zmeňte svoje heslo pre opätovné zabezpeÄenie Vášho úÄtu msgid "Lost your password?" msgstr "Zabudli ste heslo?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "zapamätaÅ¥" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "PrihlásiÅ¥ sa" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "AltrnatÃvne loginy" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "späť" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index cd6c5db9e9561a1d37964840a4bdcedc7e797014..618ce24cad4facba144141d69864656f78eedaec 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# georg <georg007@gmail.com>, 2013. # <intense.feel@gmail.com>, 2012. # Marián Hvolka <marian.hvolka@stuba.sk>, 2013. # <martin.babik@gmail.com>, 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-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 20:00+0000\n" -"Last-Translator: mhh <marian.hvolka@stuba.sk>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -22,6 +23,20 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" @@ -58,8 +73,8 @@ msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Nie je k dispozÃcii dostatok miesta" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." @@ -73,11 +88,15 @@ msgstr "Súbory" msgid "Unshare" msgstr "NezdielaÅ¥" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "ZmazaÅ¥ trvalo" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "OdstrániÅ¥" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "PremenovaÅ¥" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index 7977f0fe3e15d1d0abd1a7dece6f5a301c999b26..1e9b778f2670e7903f2492c068010b54c97c21e2 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# georg <georg007@gmail.com>, 2013. # <intense.feel@gmail.com>, 2012. # Marián Hvolka <marian.hvolka@stuba.sk>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 22:50+0000\n" +"Last-Translator: georg007 <georg007@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" @@ -47,15 +48,15 @@ msgstr "Å ifrovanie" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Kryptovanie súborov nastavené." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Uvedené typy súborov nebudú kryptované:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "NekryptovaÅ¥ uvedené typy súborov" #: templates/settings.php:12 msgid "None" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index e11f6529c52c716e4bc5485eeaab0832c42b743d..93a413261a498c74ca5a056477e63886d8f09bd8 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# georg <georg007@gmail.com>, 2013. # Marián Hvolka <marian.hvolka@stuba.sk>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 20:00+0000\n" -"Last-Translator: mhh <marian.hvolka@stuba.sk>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 22:50+0000\n" +"Last-Translator: georg007 <georg007@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" @@ -18,31 +19,45 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "Nemožno obnoviÅ¥ %s" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "vykonaÅ¥ obnovu" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "trvalo zmazaÅ¥ súbor" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Meno" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Zmazané" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 prieÄinok" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} prieÄinkov" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 súbor" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} súborov" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index 32d3549ff908a19c08907f273cb679100b8b01e0..90a6c26e2409808e502e35b54f980b2446116a39 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# georg <georg007@gmail.com>, 2013. # <martin.babik@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 22:40+0000\n" +"Last-Translator: georg007 <georg007@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" @@ -18,10 +19,45 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "uspech" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "Subror %s bol vrateny na verziu %s" + +#: history.php:49 +msgid "failure" +msgstr "chyba" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "Nie sú dostupné žiadne starÅ¡ie verzie" + +#: history.php:73 +msgid "No path specified" +msgstr "Nevybrali ste cestu" + #: js/versions.js:16 msgid "History" msgstr "História" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Vytváranie verzià súborov" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index cfaa9da6bc0b67df14e571621c3c4f558636a170..3ba63102905c365b25ca407cc37009081b008d28 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 20:00+0000\n" -"Last-Translator: mhh <marian.hvolka@stuba.sk>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nie je možné nahraÅ¥ zoznam z App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Chyba pri autentifikácii" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Skupina už existuje" @@ -51,10 +60,6 @@ msgstr "Neplatný email" msgid "Unable to delete group" msgstr "Nie je možné odstrániÅ¥ skupinu" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Chyba pri autentifikácii" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nie je možné odstrániÅ¥ použÃvateľa" @@ -117,7 +122,7 @@ msgstr "Chyba" msgid "Updated" msgstr "Aktualizované" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Ukladám..." @@ -194,67 +199,83 @@ msgstr "StiahnuÅ¥ Android klienta" msgid "Download iOS Client" msgstr "StiahnuÅ¥ iOS klienta" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Heslo" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Heslo bolo zmenené" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Nie je možné zmeniÅ¥ vaÅ¡e heslo" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Aktuálne heslo" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "zobraziÅ¥" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "ZmeniÅ¥ heslo" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Zobrazované meno" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "VaÅ¡a emailová adresa" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Vyplňte emailovú adresu pre aktivovanie obnovy hesla" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "PomôcÅ¥ s prekladom" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použite túto adresu pre pripojenie vášho ownCloud k súborovému správcovi" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Verzia" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -288,10 +309,6 @@ msgstr "Nelimitované" msgid "Other" msgstr "Iné" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Zobrazované meno" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Správca skupiny" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index ab48e3110ab7bcbcb8ae5e974b71f29fd2bda77a..69f4aa7436b5b0980326bedf9c5c606325de3be6 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 20:00+0000\n" -"Last-Translator: mhh <marian.hvolka@stuba.sk>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Použi TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "NepoužÃvajte pre pripojenie SSL, pripojenie zlyhá." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index d463f42279e75ddff6280f1fb4d166f952187d6d..8f861f48a3a154f0ced740cd85beb52aafe22d13 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -54,8 +54,9 @@ msgid "No category to add?" msgstr "Ni kategorije za dodajanje?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ta kategorija že obstaja:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -159,59 +160,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "pred 1 uro" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "danes" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "vÄeraj" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "lansko leto" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "let nazaj" @@ -470,7 +471,7 @@ msgstr "Uredi kategorije" msgid "Add" msgstr "Dodaj" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Varnostno opozorilo" @@ -480,71 +481,75 @@ msgid "" "OpenSSL extension." msgstr "Na voljo ni varnega generatorja nakljuÄnih Å¡tevil. Prosimo, Äe omogoÄite PHP OpenSSL razÅ¡iritev." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Brez varnega generatorja nakljuÄnih Å¡tevil lahko napadalec napove žetone za ponastavitev gesla, kar mu omogoÄa, da prevzame vaÅ¡ ​​raÄun." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogoÄen vsem uporabnikom na omrežju. Datoteka .htaccess, vkljuÄena v ownCloud namreÄ ni omogoÄena. MoÄno priporoÄamo nastavitev spletnega strežnika tako, da mapa podatkov ne bo javno dostopna ali pa, da jo prestavite ven iz korenske mape spletnega strežnika." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Ustvari <strong>skrbniÅ¡ki raÄun</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Napredne možnosti" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Mapa s podatki" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Nastavi podatkovno zbirko" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "bo uporabljen" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Uporabnik zbirke" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Geslo podatkovne zbirke" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Ime podatkovne zbirke" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Razpredelnica podatkovne zbirke" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Gostitelj podatkovne zbirke" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "DokonÄaj namestitev" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "spletne storitve pod vaÅ¡im nadzorom" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Odjava" @@ -566,14 +571,18 @@ msgstr "Spremenite geslo za izboljÅ¡anje zaÅ¡Äite raÄuna." msgid "Lost your password?" msgstr "Ali ste pozabili geslo?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "Zapomni si me" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Prijava" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "nazaj" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 661f1ee1074d26aea1b4896337b54aef44ed1242..89ab93eb4258a1a72aa0be4b31dfe223dff75c99 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -21,46 +21,60 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nobena datoteka ni naložena. Neznana napaka." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspeÅ¡no naložena brez napak." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Naložena datoteka presega dovoljeno velikost. Le-ta je doloÄena z vrstico upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Naložena datoteka presega velikost, ki jo doloÄa parameter MAX_FILE_SIZE v HTML obrazcu" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je le delno naložena" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nobena datoteka ni bila naložena" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Manjka zaÄasna mapa" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -72,11 +86,15 @@ msgstr "Datoteke" msgid "Unshare" msgstr "Odstrani iz souporabe" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "IzbriÅ¡i" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Preimenuj" @@ -181,31 +199,31 @@ msgstr "Naslov URL ne sme biti prazen." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Velikost" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} datotek" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 835ba52d9abd13433bb20ab5fe7fc0fd3adb6c55..525f304069e588664d0a4ba17abbc1e0df21cfcc 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ 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/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mapa" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} map" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 datoteka" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} datotek" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 1a4d2854d91db2f5baff937c0a6d4d8c7971ffa4..dad9f10280ea231dea19be416aa109c214b17e4a 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -19,10 +19,45 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Zgodovina" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Sledenje razliÄicam" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 9ed9b294bddf9aa4be5bd376e0aaea831e0634c9..9046223ab32844b3d6b97c8be58284153d91b222 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ni mogoÄe naložiti seznama iz App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Napaka overitve" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Skupina že obstaja" @@ -49,10 +58,6 @@ msgstr "Neveljaven elektronski naslov" msgid "Unable to delete group" msgstr "Ni mogoÄe izbrisati skupine" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Napaka overitve" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ni mogoÄe izbrisati uporabnika" @@ -115,7 +120,7 @@ msgstr "Napaka" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Poteka shranjevanje ..." @@ -192,67 +197,83 @@ msgstr "Prenesi Android odjemalec" msgid "Download iOS Client" msgstr "Prenesi iOS odjemalec" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Geslo" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "VaÅ¡e geslo je spremenjeno" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Gesla ni mogoÄe spremeniti." -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Trenutno geslo" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Novo geslo" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "pokaži" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Spremeni geslo" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Elektronska poÅ¡ta" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "VaÅ¡ elektronski poÅ¡tni naslov" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "VpiÅ¡ite vaÅ¡ elektronski naslov in s tem omogoÄite obnovitev gesla" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jezik" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Pomagajte pri prevajanju" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Uporabite ta naslov za povezavo do ownCloud v vaÅ¡em upravljalniku datotek." -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "RazliÄica" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -286,10 +307,6 @@ msgstr "Neomejeno" msgid "Other" msgstr "Drugo" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Skrbnik skupine" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index d644dac5e5632fca241ef804a78f8918755d4d73..c3b92afff382b98157cf1b2e496497c1cfc7cd4f 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Uporabi TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Uporaba SSL za povezave bo spodletela." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index a67b4bd93ab53cc4feacc9838462ee11bf591a99..c74ef339d87edbb5d7d6fd15f252cc7f3d40df11 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-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 19:00+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "Додати још неку категорију?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Категорија већ поÑтоји:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "Ðовембар" msgid "December" msgstr "Децембар" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Подешавања" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "пре неколико Ñекунди" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "Пре једног Ñата" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "Пре {hours} Ñата (Ñати)" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "данаÑ" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "јуче" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "прошлог меÑеца" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "Пре {months} меÑеца (меÑеци)" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "меÑеци раније" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "прошле године" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "година раније" @@ -469,7 +470,7 @@ msgstr "Измени категорије" msgid "Add" msgstr "Додај" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "СигурноÑно упозорење" @@ -479,71 +480,75 @@ msgid "" "OpenSSL extension." msgstr "Поуздан генератор Ñлучајних бројева није доÑтупан, предлажемо да укључите PHP проширење OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Без поузданог генератора Ñлучајнох бројева нападач лако може предвидети лозинку за поништавање кључа шифровања и отети вам налог." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Тренутно Ñу ваши подаци и датотеке доÑтупне Ñа интернета. Датотека .htaccess коју је обезбедио пакет ownCloud не функционише. Саветујемо вам да подеÑите веб Ñервер тако да директоријум Ñа подацима не буде изложен или да га премеÑтите изван коренÑког директоријума веб Ñервера." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Ðаправи <strong>админиÑтративни налог</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Ðапредно" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Фацикла података" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Подешавање базе" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "ће бити коришћен" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "КориÑник базе" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Име базе" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Радни проÑтор базе података" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Домаћин базе" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Заврши подешавање" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "веб ÑервиÑи под контролом" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Одјава" @@ -573,6 +578,10 @@ msgstr "упамти" msgid "Log in" msgstr "Пријава" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "претходно" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index a234e81648129927e6983c0fbd66bc451b159e03..e3ee1fecc9417c72dfbb03d756d3248ce24d4788 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 15:00+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -20,46 +20,60 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ðије дошло до грешке. Датотека је уÑпешно отпремљена." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази Ñмерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Отпремљена датотека прелази Ñмерницу MAX_FILE_SIZE која је наведена у HTML обраÑцу" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ÐедоÑтаје привремена фаÑцикла" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Ðе могу да пишем на диÑк" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +85,15 @@ msgstr "Датотеке" msgid "Unshare" msgstr "Укини дељење" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Обриши" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Преименуј" @@ -180,31 +198,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ðазив" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Величина" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Измењено" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 фаÑцикла" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} фаÑцикле/и" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 датотека" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} датотеке/а" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index b7069b0278a41301534dee56357a76453f4afddd..d2e787a42cddc76c281c99a06c24ccb52d06ded8 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 19:00+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 17:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -37,7 +37,7 @@ msgstr "" #: templates/public.php:14 templates/public.php:30 msgid "Download" -msgstr "" +msgstr "Преузми" #: templates/public.php:29 msgid "No preview available for" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 5274cee524ebe27ec5865a0dc91e95a1d700fbb2..58c3430bb90617a90959e642dcc1c7080516b1f7 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,45 @@ 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/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "врати у претходно Ñтање" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "ОбриÑано" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 фаÑцикла" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} фаÑцикле/и" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 датотека" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} датотеке/а" diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po index 84371b65544bddf14531934b8750f0ed67eec938..74719197c5f64636cc76d5cf49066bf08fb3d063 100644 --- a/l10n/sr/files_versions.po +++ b/l10n/sr/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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 14:10+0000\n" -"Last-Translator: Rancher <theranchcowboy@gmail.com>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -18,10 +18,45 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ИÑторија" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Прављење верзија датотека" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 58c80f3e1f12ed2651a33253cfb773e9ee57bf46..5f6cad797ab1805d6d54b0aa343f00e871becd57 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 15:00+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 17:30+0000\n" "Last-Translator: Rancher <theranchcowboy@gmail.com>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -20,27 +20,27 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:312 +#: app.php:313 msgid "Help" msgstr "Помоћ" -#: app.php:319 +#: app.php:320 msgid "Personal" msgstr "Лично" -#: app.php:324 +#: app.php:325 msgid "Settings" msgstr "ПоÑтавке" -#: app.php:329 +#: app.php:330 msgid "Users" msgstr "КориÑници" -#: app.php:336 +#: app.php:337 msgid "Apps" msgstr "Ðпликације" -#: app.php:338 +#: app.php:339 msgid "Admin" msgstr "ÐдминиÑтратор" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 9bd0665d7c2786dc3e503988aa6c38cdad822311..57f48decd5797afb26e177e6b12fe948bd506e26 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 19:00+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Грешка приликом учитавања ÑпиÑка из Складишта Програма" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Грешка при аутентификацији" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Група већ поÑтоји" @@ -47,10 +56,6 @@ msgstr "ÐеиÑправна е-адреÑа" msgid "Unable to delete group" msgstr "Ðе могу да уклоним групу" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Грешка при аутентификацији" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ðе могу да уклоним кориÑника" @@ -113,7 +118,7 @@ msgstr "Грешка" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Чување у току..." @@ -218,39 +223,55 @@ msgstr "прикажи" msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:38 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:39 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ваша адреÑа е-поште" -#: templates/personal.php:40 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Ун" -#: templates/personal.php:46 templates/personal.php:47 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Језик" -#: templates/personal.php:52 +#: templates/personal.php:69 msgid "Help translate" msgstr " Помозите у превођењу" -#: templates/personal.php:57 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:59 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:68 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:70 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -284,10 +305,6 @@ msgstr "" msgid "Other" msgstr "Друго" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Управник групе" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 138ac0e03ff785ffb520a484fde63ed6eaffdad3..28760cfceb4a7f7668cc6af3e0d59f5af98913f2 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/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-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 20:40+0000\n" -"Last-Translator: Rancher <theranchcowboy@gmail.com>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "КориÑти TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ðе кориÑтите за SSL везе јер неће радити." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index fd54f215b9b491b6473b2c6d74df40b9726b991d..dea4d27d0675f53c961e368805242db802897a91 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-30 00:23+0100\n" -"PO-Revision-Date: 2013-01-29 23:23+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -51,7 +51,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -156,59 +157,59 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:284 msgid "Settings" msgstr "PodeÅ¡avanja" -#: js/js.js:762 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -467,7 +468,7 @@ msgstr "" msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -477,71 +478,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Napravi <strong>administrativni nalog</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Napredno" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Facikla podataka" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "PodeÅ¡avanje baze" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "će biti korišćen" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Korisnik baze" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Lozinka baze" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Ime baze" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Domaćin baze" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ZavrÅ¡i podeÅ¡avanje" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:32 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Odjava" @@ -563,14 +568,18 @@ msgstr "" msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "upamti" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prethodno" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 844954659949900b13b9a9df6ff83a11c9c440d5..d0e6867e65ef897c7ecf49dfd7955e24d6b0b915 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,60 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Nema greÅ¡ke, fajl je uspeÅ¡no poslat" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimiÄno otpremljen!" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +83,15 @@ msgstr "Fajlovi" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ObriÅ¡i" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -178,31 +196,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "VeliÄina" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 358a19f433b88c24000270259ea8fdb1f06b5a58..1c241fa05a44dfa1f209e7c850576b5b2c86a8b9 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ 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/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po index a35cd43237b53a3f32bf749d70a84f3ca571ffb8..d049a5e55bd167aab3516b9553a539adfd767e2b 100644 --- a/l10n/sr@latin/files_versions.po +++ b/l10n/sr@latin/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +17,45 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 693e317cb9373d4873e7d9721d53a408d4866aca..f5f05886b64ecd368594c68c308f0b20aa75469d 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "GreÅ¡ka pri autentifikaciji" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -46,10 +55,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "GreÅ¡ka pri autentifikaciji" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -112,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ne mogu da izmenim vaÅ¡u lozinku" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "prikaži" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jezik" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -283,10 +304,6 @@ msgstr "" msgid "Other" msgstr "Drugo" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 9933827859ea8aac2bb489c14a5a85839264850b..b53dc7e85e978b050c932f12d2787bbaf99a980b 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 0e7666126ff833834493e3195e8d8649e8bbcf82..dbcbf991dacdc2c3030c72f6b140c472b337322e 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -57,8 +57,9 @@ msgid "No category to add?" msgstr "Ingen kategori att lägga till?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Denna kategori finns redan:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -162,59 +163,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Inställningar" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "i dag" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "i gÃ¥r" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "förra mÃ¥naden" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} mÃ¥nader sedan" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "mÃ¥nader sedan" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "förra Ã¥ret" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "Ã¥r sedan" @@ -473,7 +474,7 @@ msgstr "Redigera kategorier" msgid "Add" msgstr "Lägg till" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Säkerhetsvarning" @@ -483,71 +484,75 @@ msgid "" "OpenSSL extension." msgstr "Ingen säker slumptalsgenerator finns tillgänglig. Du bör aktivera PHP OpenSSL-tillägget." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Utan en säker slumptalsgenerator kan angripare fÃ¥ möjlighet att förutsäga lösenordsÃ¥terställningar och ta över ditt konto." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Din datakatalog och dina filer är förmodligen tillgängliga frÃ¥n Internet. Den .htaccess-fil som ownCloud tillhandahÃ¥ller fungerar inte. Vi rekommenderar starkt att du konfigurerar webbservern sÃ¥ att datakatalogen inte längre är tillgänglig eller att du flyttar datakatalogen utanför webbserverns dokument-root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Skapa ett <strong>administratörskonto</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avancerat" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datamapp" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfigurera databasen" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "kommer att användas" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasanvändare" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Lösenord till databasen" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Databasnamn" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Databas tabellutrymme" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Databasserver" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Avsluta installation" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "webbtjänster under din kontroll" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Logga ut" @@ -569,14 +574,18 @@ msgstr "Ändra genast lösenord för att säkra ditt konto." msgid "Lost your password?" msgstr "Glömt ditt lösenord?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "kom ihÃ¥g" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Logga in" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "föregÃ¥ende" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 0cb97531859616708d404ebd6c8309ae7160c7f1..1ca2ac1ef0e7d73e39fd5448169ed8a8d2dbaa59 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 02:10+0000\n" -"Last-Translator: Lokal_Profil <lokal_profil@hotmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -24,46 +24,60 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen överstiger MAX_FILE_SIZE direktivet som anges i HTML-formulär" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ingen fil blev uppladdad" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Saknar en tillfällig mapp" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Inte tillräckligt med utrymme tillgängligt" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Felaktig mapp." @@ -75,11 +89,15 @@ msgstr "Filer" msgid "Unshare" msgstr "Sluta dela" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Radera" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Byt namn" @@ -184,31 +202,31 @@ msgstr "URL kan inte vara tom." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Storlek" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Ändrad" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fil" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index 1e4c8002b0827aec9c9491e55a92693c04699990..3c52fd72781fca6474915c3eb5019336e160d553 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André <lokal_profil@hotmail.com>, 2013. # Magnus Höglund <magnus@linux.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 02:41+0000\n" +"Last-Translator: Lokal_Profil <lokal_profil@hotmail.com>\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" @@ -46,15 +47,15 @@ msgstr "Kryptering" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Filkryptering är aktiverat." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Följande filtyper kommer inte att krypteras:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Exkludera följande filtyper frÃ¥n kryptering:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index d68d5954fe2dffabc48452e6605b11e30fd8e364..177e741225d4b591ef3fda48f945e9d24cca2fc2 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -18,31 +18,45 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" +msgstr "utför Ã¥terställning" + +#: js/trash.js:33 +msgid "delete file permanently" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Namn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Raderad" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mapp" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mappar" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fil" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index 5f3d273b389e704bd1d32ad693bcdd25642cb28d..5efefb7d136b8c107f2d56b66229de9ffd76086e 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -18,10 +18,45 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historik" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionshantering av filer" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 9891f7d1ec61476d1c08cf1033b899355811dd22..c51345d4304293c9dff337bfb43be0c4a347f284 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 00:50+0000\n" -"Last-Translator: Lokal_Profil <lokal_profil@hotmail.com>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -30,6 +30,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Kan inte ladda listan frÃ¥n App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentiseringsfel" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Gruppen finns redan" @@ -54,10 +63,6 @@ msgstr "Ogiltig e-post" msgid "Unable to delete group" msgstr "Kan inte radera grupp" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentiseringsfel" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Kan inte radera användare" @@ -120,7 +125,7 @@ msgstr "Fel" msgid "Updated" msgstr "Uppdaterad" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Sparar..." @@ -197,67 +202,83 @@ msgstr "Ladda ner klient för Android" msgid "Download iOS Client" msgstr "Ladda ner klient för iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Lösenord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ditt lösenord har ändrats" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Kunde inte ändra ditt lösenord" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Nuvarande lösenord" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nytt lösenord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "visa" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Ändra lösenord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Visat namn" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-post" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Din e-postadress" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Fyll i en e-postadress för att aktivera Ã¥terställning av lösenord" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "SprÃ¥k" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hjälp att översätta" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Använd denna adress för att ansluta till ownCloud i din filhanterare" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -291,10 +312,6 @@ msgstr "Obegränsad" msgid "Other" msgstr "Annat" -#: templates/users.php:80 -msgid "Display Name" -msgstr "Visat namn" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Gruppadministratör" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 955753ff393f9f70cc30c928719a1b5dc66feee7..4eb8e55278d4f28349ebd24b599a1c82f11df6eb 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 14:20+0000\n" -"Last-Translator: danielholm <admin@danielholm.se>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "Använd TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Använd inte för SSL-anslutningar, det kommer inte att fungera." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po new file mode 100644 index 0000000000000000000000000000000000000000..e6919ac84dadf31f94405ecf98d97dfe6321e98e --- /dev/null +++ b/l10n/sw_KE/core.po @@ -0,0 +1,593 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:85 +#, php-format +msgid "User %s shared a file with you" +msgstr "" + +#: ajax/share.php:87 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:89 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:91 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:32 +msgid "Monday" +msgstr "" + +#: js/config.php:32 +msgid "Tuesday" +msgstr "" + +#: js/config.php:32 +msgid "Wednesday" +msgstr "" + +#: js/config.php:32 +msgid "Thursday" +msgstr "" + +#: js/config.php:32 +msgid "Friday" +msgstr "" + +#: js/config.php:32 +msgid "Saturday" +msgstr "" + +#: js/config.php:33 +msgid "January" +msgstr "" + +#: js/config.php:33 +msgid "February" +msgstr "" + +#: js/config.php:33 +msgid "March" +msgstr "" + +#: js/config.php:33 +msgid "April" +msgstr "" + +#: js/config.php:33 +msgid "May" +msgstr "" + +#: js/config.php:33 +msgid "June" +msgstr "" + +#: js/config.php:33 +msgid "July" +msgstr "" + +#: js/config.php:33 +msgid "August" +msgstr "" + +#: js/config.php:33 +msgid "September" +msgstr "" + +#: js/config.php:33 +msgid "October" +msgstr "" + +#: js/config.php:33 +msgid "November" +msgstr "" + +#: js/config.php:33 +msgid "December" +msgstr "" + +#: js/js.js:284 +msgid "Settings" +msgstr "" + +#: js/js.js:764 +msgid "seconds ago" +msgstr "" + +#: js/js.js:765 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:766 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:767 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:768 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:769 +msgid "today" +msgstr "" + +#: js/js.js:770 +msgid "yesterday" +msgstr "" + +#: js/js.js:771 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:772 +msgid "last month" +msgstr "" + +#: js/js.js:773 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:774 +msgid "months ago" +msgstr "" + +#: js/js.js:775 +msgid "last year" +msgstr "" + +#: js/js.js:776 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:126 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:162 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:163 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:180 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:571 +#: js/share.js:583 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 +msgid "Share" +msgstr "" + +#: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 +msgid "Shared" +msgstr "" + +#: js/share.js:141 js/share.js:611 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:152 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:159 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:168 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:170 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:175 +msgid "Share with" +msgstr "" + +#: js/share.js:180 +msgid "Share with link" +msgstr "" + +#: js/share.js:183 +msgid "Password protect" +msgstr "" + +#: js/share.js:185 templates/installation.php:44 templates/login.php:35 +msgid "Password" +msgstr "" + +#: js/share.js:189 +msgid "Email link to person" +msgstr "" + +#: js/share.js:190 +msgid "Send" +msgstr "" + +#: js/share.js:194 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:195 +msgid "Expiration date" +msgstr "" + +#: js/share.js:227 +msgid "Share via email:" +msgstr "" + +#: js/share.js:229 +msgid "No people found" +msgstr "" + +#: js/share.js:256 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:292 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:313 +msgid "Unshare" +msgstr "" + +#: js/share.js:325 +msgid "can edit" +msgstr "" + +#: js/share.js:327 +msgid "access control" +msgstr "" + +#: js/share.js:330 +msgid "create" +msgstr "" + +#: js/share.js:333 +msgid "update" +msgstr "" + +#: js/share.js:336 +msgid "delete" +msgstr "" + +#: js/share.js:339 +msgid "share" +msgstr "" + +#: js/share.js:373 js/share.js:558 +msgid "Password protected" +msgstr "" + +#: js/share.js:571 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:583 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:598 +msgid "Sending ..." +msgstr "" + +#: js/share.js:609 +msgid "Email sent" +msgstr "" + +#: js/update.js:14 +msgid "" +"The update was unsuccessful. Please report this issue to the <a " +"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " +"community</a>." +msgstr "" + +#: js/update.js:18 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:47 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:23 templates/installation.php:30 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:25 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" + +#: templates/installation.php:36 +msgid "Create an <strong>admin account</strong>" +msgstr "" + +#: templates/installation.php:52 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:54 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:61 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:113 +msgid "Database password" +msgstr "" + +#: templates/installation.php:117 +msgid "Database name" +msgstr "" + +#: templates/installation.php:125 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:131 +msgid "Database host" +msgstr "" + +#: templates/installation.php:136 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:33 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:48 +msgid "Log out" +msgstr "" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:41 +msgid "remember" +msgstr "" + +#: templates/login.php:43 +msgid "Log in" +msgstr "" + +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po new file mode 100644 index 0000000000000000000000000000000000000000..ed72da9980bc70ecb7ee4ba846c18494d38cabc9 --- /dev/null +++ b/l10n/sw_KE/files.po @@ -0,0 +1,314 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:26 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:27 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:29 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:31 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:32 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:33 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:34 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:83 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:10 +msgid "Files" +msgstr "" + +#: js/fileactions.js:117 templates/index.php:85 templates/index.php:86 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:187 +msgid "Rename" +msgstr "" + +#: js/filelist.js:208 js/filelist.js:210 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:208 js/filelist.js:210 +msgid "replace" +msgstr "" + +#: js/filelist.js:208 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:208 js/filelist.js:210 +msgid "cancel" +msgstr "" + +#: js/filelist.js:253 +msgid "replaced {new_name}" +msgstr "" + +#: js/filelist.js:253 js/filelist.js:255 +msgid "undo" +msgstr "" + +#: js/filelist.js:255 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:280 +msgid "perform delete operation" +msgstr "" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:224 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:261 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:261 +msgid "Upload Error" +msgstr "" + +#: js/files.js:278 +msgid "Close" +msgstr "" + +#: js/files.js:297 js/files.js:413 js/files.js:444 +msgid "Pending" +msgstr "" + +#: js/files.js:317 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:320 js/files.js:375 js/files.js:390 +msgid "{count} files uploading" +msgstr "" + +#: js/files.js:393 js/files.js:428 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:502 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:575 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:580 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:953 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:954 templates/index.php:78 +msgid "Size" +msgstr "" + +#: js/files.js:955 templates/index.php:80 +msgid "Modified" +msgstr "" + +#: js/files.js:974 +msgid "1 folder" +msgstr "" + +#: js/files.js:976 +msgid "{count} folders" +msgstr "" + +#: js/files.js:984 +msgid "1 file" +msgstr "" + +#: js/files.js:986 +msgid "{count} files" +msgstr "" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:40 +msgid "Trash" +msgstr "" + +#: templates/index.php:46 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:59 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "" + +#: templates/index.php:105 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:107 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:112 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:115 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..f168cce6dbb950fa0cdc3e671263c89a383cab28 --- /dev/null +++ b/l10n/sw_KE/files_encryption.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2012-08-12 22:33+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/settings-personal.js:17 +msgid "" +"Please switch to your ownCloud client and change your encryption password to" +" complete the conversion." +msgstr "" + +#: js/settings-personal.js:17 +msgid "switched to client side encryption" +msgstr "" + +#: js/settings-personal.js:21 +msgid "Change encryption password to login password" +msgstr "" + +#: js/settings-personal.js:25 +msgid "Please check your passwords and try again." +msgstr "" + +#: js/settings-personal.js:25 +msgid "Could not change your file encryption password to your login password" +msgstr "" + +#: templates/settings-personal.php:4 templates/settings.php:5 +msgid "Encryption" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" + +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 +msgid "None" +msgstr "" diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..0c02d8edc5fb440924cd52879c62460c19a54b90 --- /dev/null +++ b/l10n/sw_KE/files_external.po @@ -0,0 +1,120 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:73 js/google.js:72 +msgid "Fill out all required fields" +msgstr "" + +#: js/dropbox.js:85 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:26 js/google.js:73 js/google.js:78 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:405 +msgid "" +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:406 +msgid "" +"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:22 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:9 +msgid "Backend" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:27 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:85 +msgid "None set" +msgstr "" + +#: templates/settings.php:86 +msgid "All Users" +msgstr "" + +#: templates/settings.php:87 +msgid "Groups" +msgstr "" + +#: templates/settings.php:95 +msgid "Users" +msgstr "" + +#: templates/settings.php:108 templates/settings.php:109 +#: templates/settings.php:144 templates/settings.php:145 +msgid "Delete" +msgstr "" + +#: templates/settings.php:124 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:125 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:136 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:153 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..adbbc6c0f0372246d89a9c61496fd821843c15ad --- /dev/null +++ b/l10n/sw_KE/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2012-08-12 22:35+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 +msgid "Download" +msgstr "" + +#: templates/public.php:29 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:35 +msgid "web services under your control" +msgstr "" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..91113e58ba9f52f525ac7e0863c1a76e5c0b7cca --- /dev/null +++ b/l10n/sw_KE/files_trashbin.po @@ -0,0 +1,68 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 +msgid "Name" +msgstr "" + +#: js/trash.js:126 templates/index.php:27 +msgid "Deleted" +msgstr "" + +#: js/trash.js:135 +msgid "1 folder" +msgstr "" + +#: js/trash.js:137 +msgid "{count} folders" +msgstr "" + +#: js/trash.js:145 +msgid "1 file" +msgstr "" + +#: js/trash.js:147 +msgid "{count} files" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "" diff --git a/l10n/sw_KE/files_versions.po b/l10n/sw_KE/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..1194d23a785238fe5076bb203e5381cf58691521 --- /dev/null +++ b/l10n/sw_KE/files_versions.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + +#: js/versions.js:16 +msgid "History" +msgstr "" + +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..2934a40eb6cc38150b26134a1d23b4af5837861b --- /dev/null +++ b/l10n/sw_KE/lib.po @@ -0,0 +1,156 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:313 +msgid "Help" +msgstr "" + +#: app.php:320 +msgid "Personal" +msgstr "" + +#: app.php:325 +msgid "Settings" +msgstr "" + +#: app.php:330 +msgid "Users" +msgstr "" + +#: app.php:337 +msgid "Apps" +msgstr "" + +#: app.php:339 +msgid "Admin" +msgstr "" + +#: files.php:202 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:203 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:203 files.php:228 +msgid "Back to Files" +msgstr "" + +#: files.php:227 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: helper.php:226 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: template.php:113 +msgid "seconds ago" +msgstr "" + +#: template.php:114 +msgid "1 minute ago" +msgstr "" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:116 +msgid "1 hour ago" +msgstr "" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 +msgid "today" +msgstr "" + +#: template.php:119 +msgid "yesterday" +msgstr "" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:121 +msgid "last month" +msgstr "" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:123 +msgid "last year" +msgstr "" + +#: template.php:124 +msgid "years ago" +msgstr "" + +#: updater.php:75 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:77 +msgid "up to date" +msgstr "" + +#: updater.php:80 +msgid "updates check is disabled" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..ebfabb7d98e6788a149ef15564f38da5040652ab --- /dev/null +++ b/l10n/sw_KE/settings.po @@ -0,0 +1,328 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:28 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:34 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:13 +msgid "Couldn't update app." +msgstr "" + +#: js/apps.js:30 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:36 js/apps.js:76 +msgid "Disable" +msgstr "" + +#: js/apps.js:36 js/apps.js:64 +msgid "Enable" +msgstr "" + +#: js/apps.js:55 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:84 +msgid "Updating...." +msgstr "" + +#: js/apps.js:87 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:87 +msgid "Error" +msgstr "" + +#: js/apps.js:90 +msgid "Updated" +msgstr "" + +#: js/personal.js:96 +msgid "Saving..." +msgstr "" + +#: personal.php:34 personal.php:35 +msgid "__language_name__" +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:24 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:28 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:29 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" + +#: templates/apps.php:31 +msgid "Update" +msgstr "" + +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:7 +msgid "Forum" +msgstr "" + +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" +msgstr "" + +#: templates/personal.php:12 +msgid "Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 +msgid "Password" +msgstr "" + +#: templates/personal.php:24 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:25 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:26 +msgid "Current password" +msgstr "" + +#: templates/personal.php:27 +msgid "New password" +msgstr "" + +#: templates/personal.php:28 +msgid "show" +msgstr "" + +#: templates/personal.php:29 +msgid "Change password" +msgstr "" + +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 +msgid "Email" +msgstr "" + +#: templates/personal.php:56 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:57 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:63 templates/personal.php:64 +msgid "Language" +msgstr "" + +#: templates/personal.php:69 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:74 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:76 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:85 +msgid "Version" +msgstr "" + +#: templates/personal.php:87 +msgid "" +"Developed by the <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +msgstr "" + +#: templates/users.php:21 templates/users.php:79 +msgid "Login Name" +msgstr "" + +#: templates/users.php:26 templates/users.php:82 templates/users.php:107 +msgid "Groups" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:142 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:157 +msgid "Other" +msgstr "" + +#: templates/users.php:84 templates/users.php:121 +msgid "Group Admin" +msgstr "" + +#: templates/users.php:86 +msgid "Storage" +msgstr "" + +#: templates/users.php:97 +msgid "change display name" +msgstr "" + +#: templates/users.php:101 +msgid "set new password" +msgstr "" + +#: templates/users.php:137 +msgid "Default" +msgstr "" + +#: templates/users.php:165 +msgid "Delete" +msgstr "" diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..2ef2872dc3f590d141ade2a02a262fc8df6f9245 --- /dev/null +++ b/l10n/sw_KE/user_ldap.po @@ -0,0 +1,309 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:35 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:37 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:40 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:121 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:126 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:136 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:137 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +msgid "" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:15 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:17 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:21 +msgid "Host" +msgstr "" + +#: templates/settings.php:21 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:22 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:22 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:22 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:23 +msgid "User DN" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:24 +msgid "Password" +msgstr "" + +#: templates/settings.php:24 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:25 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:25 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:25 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:26 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:26 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:26 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:27 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:27 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:27 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:31 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:33 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:33 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:34 +msgid "Port" +msgstr "" + +#: templates/settings.php:35 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:35 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:36 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:37 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:37 +msgid "When switched on, ownCloud will only connect to the replica server." +msgstr "" + +#: templates/settings.php:38 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:38 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:39 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:40 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:40 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:40 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:41 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:43 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:45 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:45 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:46 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:46 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:47 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:47 templates/settings.php:50 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:48 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:48 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:49 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:49 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:50 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:51 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:53 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:56 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:58 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:62 +msgid "Help" +msgstr "" diff --git a/l10n/sw_KE/user_webdavauth.po b/l10n/sw_KE/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..1e07c21030d991e6bcd4a4fc19e8f3b6a9b084da --- /dev/null +++ b/l10n/sw_KE/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2012-11-09 09:06+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\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:7 +msgid "" +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 08005ae0930fdcc3deea6c98f8d3c63d7c19e6b4..a7f267a577048386e62597640f9abdcd4ba0c49d 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -51,8 +51,9 @@ msgid "No category to add?" msgstr "சேரà¯à®ªà¯à®ªà®¤à®±à¯à®•à®¾à®© வகைகள௠இலà¯à®²à¯ˆà®¯à®¾?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "இநà¯à®¤ வகை à®à®±à¯à®•à®©à®µà¯‡ உளà¯à®³à®¤à¯:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -156,59 +157,59 @@ msgstr "காரà¯à®¤à¯à®¤à®¿à®•à¯ˆ" msgid "December" msgstr "மாரà¯à®•à®´à®¿" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "அமைபà¯à®ªà¯à®•à®³à¯" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "செகà¯à®•à®©à¯à®•à®³à¯à®•à¯à®•à¯ à®®à¯à®©à¯" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 நிமிடதà¯à®¤à®¿à®±à¯à®•à¯ à®®à¯à®©à¯ " -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{நிமிடஙà¯à®•à®³à¯} நிமிடஙà¯à®•à®³à¯à®•à¯à®•à¯ à®®à¯à®©à¯ " -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 மணிதà¯à®¤à®¿à®¯à®¾à®²à®¤à¯à®¤à®¿à®±à¯à®•à¯ à®®à¯à®©à¯" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{மணிதà¯à®¤à®¿à®¯à®¾à®²à®™à¯à®•à®³à¯} மணிதà¯à®¤à®¿à®¯à®¾à®²à®™à¯à®•à®³à®¿à®±à¯à®•à¯ à®®à¯à®©à¯" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "இனà¯à®±à¯" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "நேறà¯à®±à¯" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{நாடà¯à®•à®³à¯} நாடà¯à®•à®³à¯à®•à¯à®•à¯ à®®à¯à®©à¯" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "கடநà¯à®¤ மாதமà¯" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{மாதஙà¯à®•à®³à¯} மாதஙà¯à®•à®³à®¿à®±à¯à®•à¯ à®®à¯à®©à¯" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "மாதஙà¯à®•à®³à¯à®•à¯à®•à¯ à®®à¯à®©à¯" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "கடநà¯à®¤ வரà¯à®Ÿà®®à¯" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "வரà¯à®Ÿà®™à¯à®•à®³à¯à®•à¯à®•à¯ à®®à¯à®©à¯" @@ -467,7 +468,7 @@ msgstr "வகைகளை தொகà¯à®•à¯à®•" msgid "Add" msgstr "சேரà¯à®•à¯à®•" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "பாதà¯à®•à®¾à®ªà¯à®ªà¯ எசà¯à®šà®°à®¿à®•à¯à®•à¯ˆ" @@ -477,71 +478,75 @@ msgid "" "OpenSSL extension." msgstr "கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿà¯à®Ÿ எணà¯à®£à®¿à®•à¯à®•à¯ˆ பாதà¯à®•à®¾à®ªà¯à®ªà®¾à®© பà¯à®±à®ªà¯à®ªà®¾à®•à¯à®•à®¿ / உணà¯à®Ÿà®¾à®•à¯à®•à®¿à®•à®³à¯ இலà¯à®²à¯ˆ, தயவà¯à®šà¯†à®¯à¯à®¤à¯ PHP OpenSSL நீடà¯à®šà®¿à®¯à¯ˆ இயலà¯à®®à¯ˆà®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®•. " -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "பாதà¯à®•à®¾à®ªà¯à®ªà®¾à®© சீரறà¯à®± எணà¯à®£à®¿à®•à¯à®•à¯ˆà®¯à®¾à®© பà¯à®±à®ªà¯à®ªà®¾à®•à¯à®•à®¿ இலà¯à®²à¯ˆà®¯à¯†à®©à®¿à®©à¯, தாகà¯à®•à¯à®©à®°à®¾à®²à¯ கடவà¯à®šà¯à®šà¯Šà®²à¯ மீளமைபà¯à®ªà¯ அடையாளவிலà¯à®²à¯ˆà®•à®³à¯ à®®à¯à®©à¯à®®à¯Šà®´à®¿à®¯à®ªà¯à®ªà®Ÿà¯à®Ÿà¯ உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ கணகà¯à®•à¯ˆ கைபà¯à®ªà®±à¯à®±à®²à®¾à®®à¯." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ தரவ௠அடைவ௠மறà¯à®±à¯à®®à¯ உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ கோபà¯à®ªà¯à®•à¯à®•à®³à¯ˆ பெரà¯à®®à¯à®ªà®¾à®²à¯à®®à¯ இணையதà¯à®¤à®¿à®©à¯‚டாக அணà¯à®•à®²à®¾à®®à¯. ownCloud இனால௠வழஙà¯à®•à®ªà¯à®ªà®Ÿà¯à®•à®¿à®©à¯à®± .htaccess கோபà¯à®ªà¯ வேலை செயà¯à®¯à®µà®¿à®²à¯à®²à¯ˆ. தரவ௠அடைவை நீணà¯à®Ÿ நேரதà¯à®¤à®¿à®±à¯à®•à¯ அணà¯à®•à®•à¯à®•à¯‚டியதாக உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ வலைய சேவையகதà¯à®¤à¯ˆ தகவமைகà¯à®•à¯à®®à®¾à®±à¯ நாஙà¯à®•à®³à¯ உறà¯à®¤à®¿à®¯à®¾à®• கூறà¯à®•à®¿à®±à¯‹à®®à¯ அலà¯à®²à®¤à¯ தரவ௠அடைவை வலைய சேவையக மூல ஆவணதà¯à®¤à®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯ வெளியே அகறà¯à®±à¯à®•. " +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "<strong> நிரà¯à®µà®¾à®• கணகà¯à®•à¯Šà®©à¯à®±à¯ˆ </strong> உரà¯à®µà®¾à®•à¯à®•à¯à®•" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "மேமà¯à®ªà®Ÿà¯à®Ÿ" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "தரவ௠கோபà¯à®ªà¯à®±à¯ˆ" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "தரவà¯à®¤à¯à®¤à®³à®¤à¯à®¤à¯ˆ தகவமைகà¯à®•" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®ªà¯à®ªà®Ÿà¯à®®à¯" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "தரவà¯à®¤à¯à®¤à®³ பயனாளரà¯" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "தரவà¯à®¤à¯à®¤à®³ கடவà¯à®šà¯à®šà¯Šà®²à¯" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "தரவà¯à®¤à¯à®¤à®³ பெயரà¯" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "தரவà¯à®¤à¯à®¤à®³ அடà¯à®Ÿà®µà®£à¯ˆ" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "தரவà¯à®¤à¯à®¤à®³ ஓமà¯à®ªà¯à®©à®°à¯" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "அமைபà¯à®ªà¯ˆ à®®à¯à®Ÿà®¿à®•à¯à®•" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "உஙà¯à®•à®³à¯ கடà¯à®Ÿà¯à®ªà¯à®ªà®¾à®Ÿà¯à®Ÿà®¿à®©à¯ கீழ௠இணைய சேவைகளà¯" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "விடà¯à®ªà®¤à®¿à®•à¯ˆ செயà¯à®•" @@ -563,14 +568,18 @@ msgstr "உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ கணகà¯à®•à¯ˆ மீணà¯à®Ÿà¯à®®à¯ msgid "Lost your password?" msgstr "உஙà¯à®•à®³à¯ கடவà¯à®šà¯à®šà¯Šà®²à¯à®²à¯ˆ தொலைதà¯à®¤à¯à®µà®¿à®Ÿà¯à®Ÿà¯€à®°à¯à®•à®³à®¾?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ஞாபகபà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®•" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "பà¯à®•à¯à®ªà®¤à®¿à®•à¯ˆ" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "à®®à¯à®¨à¯à®¤à¯ˆà®¯" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 392eb89ac494a20fda871a371498d231d123bc3a..71d8d03be36f3b3347bf1d2d220e5221dac89054 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,60 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ஒர௠கோபà¯à®ªà¯à®®à¯ பதிவேறà¯à®±à®ªà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ. அறியபà¯à®ªà®Ÿà®¾à®¤ வழà¯" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "இஙà¯à®•à¯ வழ௠இலà¯à®²à¯ˆ, கோபà¯à®ªà¯ வெறà¯à®±à®¿à®•à®°à®®à®¾à®• பதிவேறà¯à®±à®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "பதிவேறà¯à®±à®ªà¯à®ªà®Ÿà¯à®Ÿ கோபà¯à®ªà®¾à®©à®¤à¯ HTML படிவதà¯à®¤à®¿à®²à¯ கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿà®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³ MAX_FILE_SIZE directive ஠விட கூடியதà¯" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேறà¯à®±à®ªà¯à®ªà®Ÿà¯à®Ÿ கோபà¯à®ªà®¾à®©à®¤à¯ பகà¯à®¤à®¿à®¯à®¾à®• மடà¯à®Ÿà¯à®®à¯‡ பதிவேறà¯à®±à®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "எநà¯à®¤ கோபà¯à®ªà¯à®®à¯ பதிவேறà¯à®±à®ªà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ஒர௠தறà¯à®•à®¾à®²à®¿à®•à®®à®¾à®© கோபà¯à®ªà¯à®±à¯ˆà®¯à¯ˆ காணவிலà¯à®²à¯ˆ" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "வடà¯à®Ÿà®¿à®²à¯ எழà¯à®¤ à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +83,15 @@ msgstr "கோபà¯à®ªà¯à®•à®³à¯" msgid "Unshare" msgstr "பகிரபà¯à®ªà®Ÿà®¾à®¤à®¤à¯" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "அழிகà¯à®•" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "பெயரà¯à®®à®¾à®±à¯à®±à®®à¯" @@ -178,31 +196,31 @@ msgstr "URL வெறà¯à®®à¯ˆà®¯à®¾à®• இரà¯à®•à¯à®•à®®à¯à®Ÿà®¿à®¯à®¾à®¤ msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "பெயரà¯" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "அளவà¯" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "மாறà¯à®±à®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 கோபà¯à®ªà¯à®±à¯ˆ" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{எணà¯à®£à®¿à®•à¯à®•à¯ˆ} கோபà¯à®ªà¯à®±à¯ˆà®•à®³à¯" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 கோபà¯à®ªà¯" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{எணà¯à®£à®¿à®•à¯à®•à¯ˆ} கோபà¯à®ªà¯à®•à®³à¯" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index be19d3c7f3375f54c053888d6b63e21d05da8577..731846dde06f1d754cae9e02c0a1200b604966ba 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,45 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "பெயரà¯" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 கோபà¯à®ªà¯à®±à¯ˆ" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{எணà¯à®£à®¿à®•à¯à®•à¯ˆ} கோபà¯à®ªà¯à®±à¯ˆà®•à®³à¯" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 கோபà¯à®ªà¯" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{எணà¯à®£à®¿à®•à¯à®•à¯ˆ} கோபà¯à®ªà¯à®•à®³à¯" diff --git a/l10n/ta_LK/files_versions.po b/l10n/ta_LK/files_versions.po index ed417e58282a79abf8a40396cab5c3dd7003964f..971b58bc8e79db0befbf41db1e5b731ebf3e6d57 100644 --- a/l10n/ta_LK/files_versions.po +++ b/l10n/ta_LK/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +18,45 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "வரலாறà¯" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "கோபà¯à®ªà¯ பதிபà¯à®ªà¯à®•à®³à¯" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 04ffdaacb5e1416a3e7c943977c0e61102981cd2..6e3983c95c4eb0cafda168283ad167d67ba33809 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "செயலி சேமிபà¯à®ªà®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯ படà¯à®Ÿà®¿à®¯à®²à¯ˆ à®à®±à¯à®±à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯à®³à¯à®³à®¤à¯" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "அதà¯à®¤à®¾à®Ÿà¯à®šà®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à®¿à®²à¯ வழà¯" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "கà¯à®´à¯ à®à®±à¯à®•à®©à®µà¯‡ உளà¯à®³à®¤à¯" @@ -46,10 +55,6 @@ msgstr "செலà¯à®²à¯à®ªà®Ÿà®¿à®¯à®±à¯à®± மினà¯à®©à®žà¯à®šà®²à¯" msgid "Unable to delete group" msgstr "கà¯à®´à¯à®µà¯ˆ நீகà¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "அதà¯à®¤à®¾à®Ÿà¯à®šà®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à®¿à®²à¯ வழà¯" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "பயனாளரை நீகà¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯" @@ -112,7 +117,7 @@ msgstr "வழà¯" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "இயலà¯à®®à¯ˆà®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®•" @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "கடவà¯à®šà¯à®šà¯Šà®²à¯" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ கடவà¯à®šà¯à®šà¯Šà®²à¯ மாறà¯à®±à®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ கடவà¯à®šà¯à®šà¯Šà®²à¯à®²à¯ˆ மாறà¯à®±à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "தறà¯à®ªà¯‹à®¤à¯ˆà®¯ கடவà¯à®šà¯à®šà¯Šà®²à¯" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "பà¯à®¤à®¿à®¯ கடவà¯à®šà¯à®šà¯Šà®²à¯" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "காடà¯à®Ÿà¯" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "கடவà¯à®šà¯à®šà¯Šà®²à¯à®²à¯ˆ மாறà¯à®±à¯à®•" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "மினà¯à®©à®žà¯à®šà®²à¯" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ மினà¯à®©à®žà¯à®šà®²à¯ à®®à¯à®•à®µà®°à®¿" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "கடவà¯à®šà¯à®šà¯Šà®²à¯ மீள௠பெறà¯à®µà®¤à¯ˆ இயலà¯à®®à¯ˆà®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®µà®¤à®±à¯à®•à¯ மினà¯à®©à®žà¯à®šà®²à¯ à®®à¯à®•à®µà®°à®¿à®¯à¯ˆ இயலà¯à®®à¯ˆà®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®•" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "மொழி" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "மொழிபெயரà¯à®•à¯à®• உதவி" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -283,10 +304,6 @@ msgstr "" msgid "Other" msgstr "மறà¯à®±à®µà¯ˆ" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "கà¯à®´à¯ நிரà¯à®µà®¾à®•à®¿" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index c9b1c2c58d48798bb25a59fc91e2d0f392fdba66..9e62a4a67e36b3159ff38e9a441f11f293a35626 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "TLS ஠பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®µà¯à®®à¯" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "SSL இணைபà¯à®ªà®¿à®±à¯à®•à¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®µà¯‡à®£à¯à®Ÿà®¾à®®à¯, அத௠தோலà¯à®µà®¿à®¯à®Ÿà¯ˆà®¯à¯à®®à¯." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index f1afb42f0ee75cd2ae273f0ca63b158217728fc8..43634de4b387e3f64b6a0a8d2c65d8634a3e5619 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-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+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" @@ -50,7 +50,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -155,59 +156,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -466,7 +467,7 @@ msgstr "" msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -476,71 +477,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the " -"webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "" @@ -570,6 +575,10 @@ msgstr "" msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 34bc7000c6232c199eb332957ca8f4d89721bcf1..2ac9ac8686db1b3d7c10d8602f9f6569db55d3e7 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-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+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,20 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -53,7 +67,7 @@ msgid "Failed to write to disk" msgstr "" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 @@ -68,11 +82,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 7a06b3ede0a4e68edb063cd42ca1931cc10b37f1..e1cc407d59e446b43479dbced2e02c4064c56917 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-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+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 84e3ca4e992c7c65feb29a453d19ac3f9b0e2888..0d4d620d98bcaf004122eb8a1e532f08acc5bb20 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-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+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 5de56c72e914e9e16f59710fda753d96b6fee288..bf6ff52b50b0109f33285f3b272996ef0a7beccc 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-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+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_trashbin.pot b/l10n/templates/files_trashbin.pot index 206be07e6829bcf3d120cc1dc86f604cde34f611..3f59bb32a0f00bf3527989c578e4500b61bbdc54 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+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,31 +17,45 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 94a37a83d03aaccd343ac57eeb270a2fbecbf00a..80d8fa35cd9fec8e7b6f6c738dcc6ddf7d0cf7f4 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-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+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,10 +17,45 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 69d33a082d0eebee4746b13920c35d751e2b9117..5c9b6e4cb88bfa1a67cb1746fb34aedf82e969ee 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-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -17,27 +17,27 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: app.php:312 +#: app.php:313 msgid "Help" msgstr "" -#: app.php:319 +#: app.php:320 msgid "Personal" msgstr "" -#: app.php:324 +#: app.php:325 msgid "Settings" msgstr "" -#: app.php:329 +#: app.php:330 msgid "Users" msgstr "" -#: app.php:336 +#: app.php:337 msgid "Apps" msgstr "" -#: app.php:338 +#: app.php:339 msgid "Admin" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 40c9c5deb2c80aa0e897cc0aa19809a62fe3e5f7..0ed2c65e0db47905cf826e6c8a45cdb312bc9bd6 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-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+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" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -217,39 +222,55 @@ msgstr "" msgid "Change password" msgstr "" -#: templates/personal.php:38 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:46 templates/personal.php:47 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:59 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:68 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:70 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank" "\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" " @@ -282,10 +303,6 @@ msgstr "" msgid "Other" msgstr "" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 8e560cca7cebee351323e6f83b21b6aff8443552..d13915b5b5c8906e6d7ebb8579ab0d917fe6d6bc 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-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+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" @@ -212,7 +212,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 9690e764a5c75c6f933c429ac0f9540ab4388413..1f3da3f43f9a3db7a2fb460d41c8b232e0b4299c 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-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+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/th_TH/core.po b/l10n/th_TH/core.po index e890f708a2458ef89c259c38510f059bc71e9cdf..ae9a01253675040a5671f12d1830d5f76b385240 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 03:30+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "ไม่มีหมวดหมู่ที่ต้à¸à¸‡à¸à¸²à¸£à¹€à¸žà¸´à¹ˆà¸¡?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "หมวดหมู่นี้มีà¸à¸¢à¸¹à¹ˆà¹à¸¥à¹‰à¸§: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "พฤศจิà¸à¸²à¸¢à¸™" msgid "December" msgstr "ธันวาคม" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "วินาที à¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 นาทีà¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} นาทีà¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 ชั่วโมงà¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} ชั่วโมงà¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "วันนี้" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "เมื่à¸à¸§à¸²à¸™à¸™à¸µà¹‰" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{day} วันà¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "เดืà¸à¸™à¸—ี่à¹à¸¥à¹‰à¸§" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} เดืà¸à¸™à¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "เดืà¸à¸™ ที่ผ่านมา" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "ปีที่à¹à¸¥à¹‰à¸§" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "ปี ที่ผ่านมา" @@ -468,7 +469,7 @@ msgstr "à¹à¸à¹‰à¹„ขหมวดหมู่" msgid "Add" msgstr "เพิ่ม" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "คำเตืà¸à¸™à¹€à¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸„วามปลà¸à¸”ภัย" @@ -478,71 +479,75 @@ msgid "" "OpenSSL extension." msgstr "ยังไม่มีตัวสร้างหมายเลขà¹à¸šà¸šà¸ªà¸¸à¹ˆà¸¡à¹ƒà¸«à¹‰à¹ƒà¸Šà¹‰à¸‡à¸²à¸™, à¸à¸£à¸¸à¸“าเปิดใช้งานส่วนเสริม PHP OpenSSL" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "หาà¸à¸›à¸£à¸²à¸¨à¸ˆà¸²à¸à¸•à¸±à¸§à¸ªà¸£à¹‰à¸²à¸‡à¸«à¸¡à¸²à¸¢à¹€à¸¥à¸‚à¹à¸šà¸šà¸ªà¸¸à¹ˆà¸¡à¸—ี่ช่วยป้à¸à¸‡à¸à¸±à¸™à¸„วามปลà¸à¸”ภัย ผู้บุà¸à¸£à¸¸à¸à¸à¸²à¸ˆà¸ªà¸²à¸¡à¸²à¸£à¸–ที่จะคาดคะเนรหัสยืนยันà¸à¸²à¸£à¹€à¸‚้าถึงเพื่à¸à¸£à¸µà¹€à¸‹à¹‡à¸•à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™ à¹à¸¥à¸°à¹€à¸à¸²à¸šà¸±à¸à¸Šà¸µà¸‚à¸à¸‡à¸„ุณไปเป็นขà¸à¸‡à¸•à¸™à¹€à¸à¸‡à¹„ด้" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "ไดเร็à¸à¸—à¸à¸£à¸µà¹ˆà¸‚้à¸à¸¡à¸¹à¸¥à¹à¸¥à¸°à¹„ฟล์ขà¸à¸‡à¸„ุณสามารถเข้าถึงได้จาà¸à¸à¸´à¸™à¹€à¸—à¸à¸£à¹Œà¹€à¸™à¹‡à¸• ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้à¸à¸¢à¹ˆà¸²à¸‡à¹€à¸«à¸¡à¸²à¸°à¸ªà¸¡ เราขà¸à¹à¸™à¸°à¸™à¸³à¹ƒà¸«à¹‰à¸„ุณà¸à¸³à¸«à¸™à¸”ค่าเว็บเซิร์ฟเวà¸à¸£à¹Œà¹ƒà¸«à¸¡à¹ˆà¹ƒà¸™à¸£à¸¹à¸›à¹à¸šà¸šà¸—ี่ไดเร็à¸à¸—à¸à¸£à¸µà¹ˆà¹€à¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥à¹„ม่สามารถเข้าถึงได้à¸à¸µà¸à¸•à¹ˆà¸à¹„ป หรืà¸à¸„ุณได้ย้ายไดเร็à¸à¸—à¸à¸£à¸µà¹ˆà¸—ี่ใช้เà¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥à¹„ปà¸à¸¢à¸¹à¹ˆà¸ ายนà¸à¸à¸•à¸³à¹à¸«à¸™à¹ˆà¸‡ root ขà¸à¸‡à¹€à¸§à¹‡à¸šà¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œà¹à¸¥à¹‰à¸§" +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "สร้าง <strong>บัà¸à¸Šà¸µà¸œà¸¹à¹‰à¸”ูà¹à¸¥à¸£à¸°à¸šà¸š</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "ขั้นสูง" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "โฟลเดà¸à¸£à¹Œà¹€à¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "à¸à¸³à¸«à¸™à¸”ค่าà¸à¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "จะถูà¸à¹ƒà¸Šà¹‰" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ชื่à¸à¸œà¸¹à¹‰à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¸à¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "รหัสผ่านà¸à¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ชื่à¸à¸à¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "พื้นที่ตารางในà¸à¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Database host" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ติดตั้งเรียบร้à¸à¸¢à¹à¸¥à¹‰à¸§" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "web services under your control" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "à¸à¸à¸à¸ˆà¸²à¸à¸£à¸°à¸šà¸š" @@ -572,6 +577,10 @@ msgstr "จำรหัสผ่าน" msgid "Log in" msgstr "เข้าสู่ระบบ" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "à¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 2ea3d92a701d2a66c34ab95a21177729cfa21423..2b84a1a30083f60bf1f310c88cb7d1011652082c 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:04+0100\n" -"PO-Revision-Date: 2013-02-03 03:30+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,20 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูà¸à¸à¸±à¸žà¹‚หลด เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดที่ไม่ทราบสาเหตุ" @@ -55,8 +69,8 @@ msgid "Failed to write to disk" msgstr "เขียนข้à¸à¸¡à¸¹à¸¥à¸¥à¸‡à¹à¸œà¹ˆà¸™à¸”ิสà¸à¹Œà¸¥à¹‰à¸¡à¹€à¸«à¸¥à¸§" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "มีพื้นที่เหลืà¸à¹„ม่เพียงพà¸" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." @@ -70,11 +84,15 @@ msgstr "ไฟล์" msgid "Unshare" msgstr "ยà¸à¹€à¸¥à¸´à¸à¸à¸²à¸£à¹à¸Šà¸£à¹Œà¸‚้à¸à¸¡à¸¹à¸¥" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ลบ" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "เปลี่ยนชื่à¸" @@ -179,31 +197,31 @@ msgstr "URL ไม่สามารถเว้นว่างได้" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ชื่à¸à¹‚ฟลเดà¸à¸£à¹Œà¹„ม่ถูà¸à¸•à¹‰à¸à¸‡ à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™ 'à¹à¸Šà¸£à¹Œ' สงวนไว้สำหรับ Owncloud เท่านั้น" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "ชื่à¸" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "ขนาด" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 โฟลเดà¸à¸£à¹Œ" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} โฟลเดà¸à¸£à¹Œ" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ไฟล์" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 86d6b648284d9b8fedcf244440d45edce45d8e65..45c363a10ad9c748133abc53cc619ff5e6c785b5 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +18,45 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "ดำเนินà¸à¸²à¸£à¸„ืนค่า" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "ชื่à¸" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "ลบà¹à¸¥à¹‰à¸§" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 โฟลเดà¸à¸£à¹Œ" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} โฟลเดà¸à¸£à¹Œ" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ไฟล์" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ไฟล์" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index c36c1b5941bc5d8a1aa17fca875257c953bf796a..4d724184b1c272112ef29642e47ae8df8301819b 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +18,45 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ประวัติ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "à¸à¸²à¸£à¸à¸³à¸«à¸™à¸”เวà¸à¸£à¹Œà¸Šà¸±à¹ˆà¸™à¸‚à¸à¸‡à¹„ฟล์" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 21602086ef114c0206f392ed9c8ca6f414554a4c..a04a575b536fe78baee0d7a5af3c153caebc4cad 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 03:30+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "ไม่สามารถโหลดรายà¸à¸²à¸£à¸ˆà¸²à¸ App Store ได้" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดเà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸ªà¸´à¸—ธิ์à¸à¸²à¸£à¹€à¸‚้าใช้งาน" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "มีà¸à¸¥à¸¸à¹ˆà¸¡à¸”ังà¸à¸¥à¹ˆà¸²à¸§à¸à¸¢à¸¹à¹ˆà¹ƒà¸™à¸£à¸°à¸šà¸šà¸à¸¢à¸¹à¹ˆà¹à¸¥à¹‰à¸§" @@ -48,10 +57,6 @@ msgstr "à¸à¸µà¹€à¸¡à¸¥à¹„ม่ถูà¸à¸•à¹‰à¸à¸‡" msgid "Unable to delete group" msgstr "ไม่สามารถลบà¸à¸¥à¸¸à¹ˆà¸¡à¹„ด้" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดเà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸ªà¸´à¸—ธิ์à¸à¸²à¸£à¹€à¸‚้าใช้งาน" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ไม่สามารถลบผู้ใช้งานได้" @@ -114,7 +119,7 @@ msgstr "ข้à¸à¸œà¸´à¸”พลาด" msgid "Updated" msgstr "à¸à¸±à¸žà¹€à¸”ทà¹à¸¥à¹‰à¸§" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "à¸à¸³à¸¥à¸±à¸‡à¸šà¸±à¸™à¸—ึุà¸à¸‚้à¸à¸¡à¸¹à¸¥..." @@ -191,67 +196,83 @@ msgstr "ดาวน์โหลดโปรà¹à¸à¸£à¸¡à¹„คลเà¸à¸™à¸•à¹Œ msgid "Download iOS Client" msgstr "ดาวน์โหลดโปรà¹à¸à¸£à¸¡à¹„คลเà¸à¸™à¸•à¹Œà¸ªà¸³à¸«à¸£à¸±à¸š iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "รหัสผ่าน" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "รหัสผ่านขà¸à¸‡à¸„ุณถูà¸à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸¥à¹‰à¸§" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "ไม่สามารถเปลี่ยนรหัสผ่านขà¸à¸‡à¸„ุณได้" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "รหัสผ่านปัจจุบัน" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "รหัสผ่านใหม่" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "à¹à¸ªà¸”ง" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "ชื่à¸à¸—ี่ต้à¸à¸‡à¸à¸²à¸£à¹à¸ªà¸”ง" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "à¸à¸µà¹€à¸¡à¸¥à¹Œ" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ที่à¸à¸¢à¸¹à¹ˆà¸à¸µà¹€à¸¡à¸¥à¹Œà¸‚à¸à¸‡à¸„ุณ" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "à¸à¸£à¸à¸à¸—ี่à¸à¸¢à¸¹à¹ˆà¸à¸µà¹€à¸¡à¸¥à¹Œà¸‚à¸à¸‡à¸„ุณเพื่à¸à¹€à¸›à¸´à¸”ให้มีà¸à¸²à¸£à¸à¸¹à¹‰à¸„ืนรหัสผ่านได้" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "ภาษา" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "ช่วยà¸à¸±à¸™à¹à¸›à¸¥" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ใช้ที่à¸à¸¢à¸¹à¹ˆà¸™à¸µà¹‰à¹€à¸žà¸·à¹ˆà¸à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•à¹ˆà¸à¸à¸±à¸š ownCloud ในโปรà¹à¸à¸£à¸¡à¸ˆà¸±à¸”à¸à¸²à¸£à¹„ฟล์ขà¸à¸‡à¸„ุณ" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "รุ่น" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -285,10 +306,6 @@ msgstr "ไม่จำà¸à¸±à¸”จำนวน" msgid "Other" msgstr "à¸à¸·à¹ˆà¸™à¹†" -#: templates/users.php:80 -msgid "Display Name" -msgstr "ชื่à¸à¸—ี่ต้à¸à¸‡à¸à¸²à¸£à¹à¸ªà¸”ง" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "ผู้ดูà¹à¸¥à¸à¸¥à¸¸à¹ˆà¸¡" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 549b4b971bca15763d6bb6d24375e27d669314b3..3d906030931f66bea57581cfb65848214ee8fb79 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/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-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 04:40+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "ใช้ TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "à¸à¸£à¸¸à¸“าà¸à¸¢à¹ˆà¸²à¹ƒà¸Šà¹‰à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•à¹ˆà¸à¹à¸šà¸š SSL à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•à¹ˆà¸à¸ˆà¸°à¹€à¸à¸´à¸”à¸à¸²à¸£à¸¥à¹‰à¸¡à¹€à¸«à¸¥à¸§" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index ed983c565f054bf848e44f4cf244aa3dd5dc2706..e6ef436731dced9e9668472236ce0fda7de5686a 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -55,8 +55,9 @@ msgid "No category to add?" msgstr "Eklenecek kategori yok?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Bu kategori zaten mevcut: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +161,59 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "bugün" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "dün" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "geçen ay" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "ay önce" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "geçen yıl" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "yıl önce" @@ -471,7 +472,7 @@ msgstr "Kategorileri düzenle" msgid "Add" msgstr "Ekle" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Güvenlik Uyarisi" @@ -481,71 +482,75 @@ msgid "" "OpenSSL extension." msgstr "Güvenli rasgele sayı üreticisi bulunamadı. Lütfen PHP OpenSSL eklentisini etkinleÅŸtirin." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Güvenli rasgele sayı üreticisi olmadan saldırganlar parola sıfırlama simgelerini tahmin edip hesabınızı ele geçirebilir." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden eriÅŸilebilir. Owncloud tarafından saÄŸlanan .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine eriÅŸimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı ÅŸiddetle tavsiye ederiz." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Bir <strong>yönetici hesabı</strong> oluÅŸturun" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "GeliÅŸmiÅŸ" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Veri klasörü" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Veritabanını ayarla" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "kullanılacak" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Veritabanı kullanıcı adı" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Veritabanı parolası" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Veritabanı adı" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Veritabanı tablo alanı" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Veritabanı sunucusu" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Kurulumu tamamla" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "kontrolünüzdeki web servisleri" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Çıkış yap" @@ -567,14 +572,18 @@ msgstr "Hesabınızı korumak için lütfen parolanızı deÄŸiÅŸtirin." msgid "Lost your password?" msgstr "Parolanızı mı unuttunuz?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "hatırla" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "GiriÅŸ yap" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "önceki" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 322d36729b403bf737e957d584dffac8ad1780f4..af033c86936c32ce924f6d82cdab727c5c1a191f 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -23,46 +23,60 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Bir hata yok, dosya baÅŸarıyla yüklendi" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Yüklenen dosyanın sadece bir kısmı yüklendi" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Hiç dosya yüklenmedi" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Geçici bir klasör eksik" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "Yeterli disk alanı yok" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Geçersiz dizin." @@ -74,11 +88,15 @@ msgstr "Dosyalar" msgid "Unshare" msgstr "Paylaşılmayan" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Sil" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Ä°sim deÄŸiÅŸtir." @@ -183,31 +201,31 @@ msgstr "URL boÅŸ olamaz." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Geçersiz dizin adı. Shared isminin kullanımı Owncloud tarafından rezerver edilmiÅŸtir." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ad" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Boyut" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "DeÄŸiÅŸtirilme" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 dosya" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} dosya" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index e987986453c7a2cbb6706d97f4dbc7aca7be4c8a..fff563d2bf960a513199a9043a0ea2f4ecf16c2a 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ä°sim" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 dizin" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} dizin" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 dosya" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} dosya" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index 6f30f6794a29d302318fde4055b0a63fa46cc823..73c00cd9cf18780d7746baea6b0062d3ee3a97e2 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -18,10 +18,45 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "GeçmiÅŸ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Dosya Sürümleri" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 15b5cc3f9e8737a0bf65cf76cd3d6f6fc0f38f04..0b51576c5a32beb03cf938152ec80c160a73c011 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "App Store'dan liste yüklenemiyor" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "EÅŸleÅŸme hata" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grup zaten mevcut" @@ -49,10 +58,6 @@ msgstr "Geçersiz eposta" msgid "Unable to delete group" msgstr "Grup silinemiyor" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "EÅŸleÅŸme hata" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Kullanıcı silinemiyor" @@ -115,7 +120,7 @@ msgstr "Hata" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Kaydediliyor..." @@ -192,67 +197,83 @@ msgstr "Android Ä°stemcisini Ä°ndir" msgid "Download iOS Client" msgstr "iOS Ä°stemcisini Ä°ndir" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Parola" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Åžifreniz deÄŸiÅŸtirildi" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Parolanız deÄŸiÅŸtirilemiyor" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Mevcut parola" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Yeni parola" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "göster" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Parola deÄŸiÅŸtir" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Eposta" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Eposta adresiniz" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Parola sıfırlamayı aktifleÅŸtirmek için eposta adresi girin" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Dil" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Çevirilere yardım edin" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Sürüm" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -286,10 +307,6 @@ msgstr "" msgid "Other" msgstr "DiÄŸer" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Yönetici Grubu " diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 6a5f2430b1cb249b27d3744e6f826996df996ff7..8cdf1507e90ca465c49e77a87c584f336ebfec8c 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "TLS kullan" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "SSL baÄŸlantıları ile kullanmayın, baÅŸarısız olacaktır." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 5b2fb82733eef46e1904e90ed283e899f61f3713..78e4e2d04ce9c79fcaccd666ce84e1a9a2e4eba6 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -8,12 +8,13 @@ # Soul Kim <warlock.rf@gmail.com>, 2012. # <victor.dubiniuk@gmail.com>, 2012. # <volodya327@gmail.com>, 2013. +# пан Володимир <volodya327@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -55,8 +56,9 @@ msgid "No category to add?" msgstr "ВідÑутні категорії Ð´Ð»Ñ Ð´Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ð¦Ñ ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ñ–Ñ Ð²Ð¶Ðµ Ñ–Ñнує: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +162,59 @@ msgstr "ЛиÑтопад" msgid "December" msgstr "Грудень" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ÐалаштуваннÑ" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "Ñекунди тому" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "Ñьогодні" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "вчора" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "минулого міÑÑцÑ" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} міÑÑців тому" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "міÑÑці тому" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "минулого року" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "роки тому" @@ -261,7 +263,7 @@ msgstr "ПоділитиÑÑ" #: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 msgid "Shared" -msgstr "" +msgstr "Опубліковано" #: js/share.js:141 js/share.js:611 msgid "Error while sharing" @@ -384,11 +386,11 @@ msgid "" "The update was unsuccessful. Please report this issue to the <a " "href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " "community</a>." -msgstr "" +msgstr "ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð²Ð¸ÐºÐ¾Ð½Ð°Ð»Ð¾ÑÑŒ неуÑпішно. Будь лаÑка, повідомте про цю проблему в <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">Ñпільноті ownCloud</a>." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð²Ð¸ÐºÐ¾Ð½Ð°Ð»Ð¾ÑÑŒ уÑпішно. ПеренаправлÑємо Ð²Ð°Ñ Ð½Ð° ownCloud." #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -471,7 +473,7 @@ msgstr "Редагувати категорії" msgid "Add" msgstr "Додати" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "ÐŸÐ¾Ð¿ÐµÑ€ÐµÐ´Ð¶ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ небезпеку" @@ -481,71 +483,75 @@ msgid "" "OpenSSL extension." msgstr "Ðе доÑтупний безпечний генератор випадкових чиÑел, будь лаÑка, активуйте PHP OpenSSL додаток." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Без безпечного генератора випадкових чиÑел зловмиÑник може визначити токени ÑÐºÐ¸Ð´Ð°Ð½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ñ– заволодіти Вашим обліковим запиÑом." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Ваш каталог з даними та Ваші файли можливо доÑтупні з Інтернету. Файл .htaccess, наданий з ownCloud, не працює. Ми наполегливо рекомендуємо Вам налаштувати Ñвій веб-Ñервер таким чином, щоб каталог data більше не був доÑтупний, або переміÑтити каталог data за межі кореневого каталогу документів веб-Ñервера." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Створити <strong>обліковий Ð·Ð°Ð¿Ð¸Ñ Ð°Ð´Ð¼Ñ–Ð½Ñ–Ñтратора</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Додатково" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Каталог даних" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð±Ð°Ð·Ð¸ даних" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "буде викориÑтано" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "КориÑтувач бази даних" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Пароль Ð´Ð»Ñ Ð±Ð°Ð·Ð¸ даних" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Ðазва бази даних" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Ð¢Ð°Ð±Ð»Ð¸Ñ†Ñ Ð±Ð°Ð·Ð¸ даних" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "ХоÑÑ‚ бази даних" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Завершити налаштуваннÑ" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "веб-ÑÐµÑ€Ð²Ñ–Ñ Ð¿Ñ–Ð´ вашим контролем" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Вихід" @@ -567,14 +573,18 @@ msgstr "Будь лаÑка, змініть Ñвій пароль, щоб зно msgid "Lost your password?" msgstr "Забули пароль?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "запам'Ñтати" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Вхід" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "Ðльтернативні Логіни" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "попередній" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 97c4a8121ed2850adc0b50373e624ab4bcd22e6f..44b18cb87c9a198514e93791fd53e2ad69947e66 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -6,12 +6,13 @@ # <dzubchikd@gmail.com>, 2012. # <skoptev@ukr.net>, 2012. # Soul Kim <warlock.rf@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-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -20,48 +21,62 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ðе завантажено жодного файлу. Ðевідома помилка" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Файл уÑпішно вивантажено без помилок." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір Ð·Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ²Ð¸Ñ‰ÑƒÑ” upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише чаÑтково" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ðе відвантажено жодного файлу" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ВідÑутній тимчаÑовий каталог" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ÐевдалоÑÑ Ð·Ð°Ð¿Ð¸Ñати на диÑк" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." -msgstr "" +msgstr "Ðевірний каталог." #: appinfo/app.php:10 msgid "Files" @@ -71,11 +86,15 @@ msgstr "Файли" msgid "Unshare" msgstr "Заборонити доÑтуп" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "Видалити назавжди" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Видалити" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Перейменувати" @@ -109,15 +128,15 @@ msgstr "замінено {new_name} на {old_name}" #: js/filelist.js:280 msgid "perform delete operation" -msgstr "" +msgstr "виконати операцію видаленнÑ" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' це невірне ім'Ñ Ñ„Ð°Ð¹Ð»Ñƒ." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr " Ім'Ñ Ñ„Ð°Ð¹Ð»Ñƒ не може бути порожнім." #: js/files.js:64 msgid "" @@ -127,17 +146,17 @@ msgstr "Ðевірне ім'Ñ, '\\', '/', '<', '>', ':', '\"', '|', '?' та '* #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Ваше Ñховище переповнене, файли більше не можуть бути оновлені або Ñинхронізовані !" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Ваше Ñховище майже повне ({usedSpacePercent}%)" #: js/files.js:224 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Ваше Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð³Ð¾Ñ‚ÑƒÑ”Ñ‚ÑŒÑÑ. Це може зайнÑти деÑкий чаÑ, Ñкщо файли завеликі." #: js/files.js:261 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -178,33 +197,33 @@ msgstr "URL не може бути пуÑтим." #: js/files.js:580 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Ðевірне ім'Ñ Ñ‚ÐµÐºÐ¸. ВикориÑÑ‚Ð°Ð½Ð½Ñ \"Shared\" зарезервовано Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ім'Ñ" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Розмір" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Змінено" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 папка" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 файл" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} файлів" @@ -262,7 +281,7 @@ msgstr "З поÑиланнÑ" #: templates/index.php:40 msgid "Trash" -msgstr "" +msgstr "Смітник" #: templates/index.php:46 msgid "Cancel upload" @@ -296,4 +315,4 @@ msgstr "Поточне ÑкануваннÑ" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ ÐºÐµÑˆÐ° файлової ÑиÑтеми..." diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 7e9614c45d4de5b7b3d1bd2d9cf23db20af58343..b33723c870293ad0c40469f20928847c334c2d10 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ 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/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ім'Ñ" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} папок" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 файл" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} файлів" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index 1a8bb981db62637413e84932fe4a921437a97152..a511f9ae55720db9f1e155d4d60fd45994ed223d 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ІÑторіÑ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ВерÑÑ–Ñ— файлів" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index bfce5870201a985bff812ff8385e13eb1da64254..1646712c6977c6c93e64f13bba385fcffdacefb7 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -6,13 +6,14 @@ # <dzubchikd@gmail.com>, 2012. # <skoptev@ukr.net>, 2012. # <volodya327@gmail.com>, 2012-2013. +# пан Володимир <volodya327@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 15:20+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" @@ -24,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ðе вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸ ÑпиÑок з App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Помилка автентифікації" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "Ðе вдалоÑÑ Ð·Ð¼Ñ–Ð½Ð¸Ñ‚Ð¸ зображене ім'Ñ" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Група вже Ñ–Ñнує" @@ -48,10 +58,6 @@ msgstr "Ðевірна адреÑа" msgid "Unable to delete group" msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ групу" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Помилка автентифікації" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ кориÑтувача" @@ -80,11 +86,11 @@ msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ кориÑтувача із гру #: ajax/updateapp.php:13 msgid "Couldn't update app." -msgstr "" +msgstr "Ðе вдалоÑÑ Ð¾Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ програму. " #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "Оновити до {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -96,15 +102,15 @@ msgstr "Включити" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "Зачекайте, будь лаÑка..." #: js/apps.js:84 msgid "Updating...." -msgstr "" +msgstr "ОновлюєтьÑÑ..." #: js/apps.js:87 msgid "Error while updating app" -msgstr "" +msgstr "Помилка при оновленні програми" #: js/apps.js:87 msgid "Error" @@ -112,9 +118,9 @@ msgstr "Помилка" #: js/apps.js:90 msgid "Updated" -msgstr "" +msgstr "Оновлено" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Зберігаю..." @@ -191,67 +197,83 @@ msgstr "Завантажити клієнт Ð´Ð»Ñ Android" msgid "Download iOS Client" msgstr "Завантажити клієнт Ð´Ð»Ñ iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Пароль" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ваш пароль змінено" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ðе вдалоÑÑ Ð·Ð¼Ñ–Ð½Ð¸Ñ‚Ð¸ Ваш пароль" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Поточний пароль" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Ðовий пароль" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "показати" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Змінити пароль" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Показати Ім'Ñ" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "Ваше ім'Ñ Ð±ÑƒÐ»Ð¾ змінене" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "Ðеможливо змінити ваше зображене ім'Ñ" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "Змінити зображене ім'Ñ" + +#: templates/personal.php:55 msgid "Email" msgstr "Ел.пошта" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ваша адреÑа електронної пошти" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Введіть адреÑу електронної пошти Ð´Ð»Ñ Ð²Ñ–Ð´Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»ÑŽ" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Мова" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Допомогти з перекладом" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ВикориÑтовуйте цю адреÑу Ð´Ð»Ñ Ð¿Ñ–Ð´'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð´Ð¾ вашого ownCloud у вашому файловому менеджері" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "ВерÑÑ–Ñ" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -263,7 +285,7 @@ msgstr "Розроблено <a href=\"http://ownCloud.org/contact\" target=\"_b #: templates/users.php:21 templates/users.php:79 msgid "Login Name" -msgstr "" +msgstr "Ім'Ñ Ð›Ð¾Ð³Ñ–Ð½Ñƒ" #: templates/users.php:26 templates/users.php:82 templates/users.php:107 msgid "Groups" @@ -285,10 +307,6 @@ msgstr "Ðеобмежено" msgid "Other" msgstr "Інше" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "ÐдмініÑтратор групи" @@ -299,11 +317,11 @@ msgstr "Сховище" #: templates/users.php:97 msgid "change display name" -msgstr "" +msgstr "змінити зображене ім'Ñ" #: templates/users.php:101 msgid "set new password" -msgstr "" +msgstr "вÑтановити новий пароль" #: templates/users.php:137 msgid "Default" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 709ba9d797ff34d81755c93b039a863e4762ccd7..2b1bfc0ad9d683ab50142a990318b45c61044ff2 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -5,12 +5,13 @@ # Translators: # <victor.dubiniuk@gmail.com>, 2012. # <volodya327@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-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -21,23 +22,23 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ конфігурацію Ñервера" #: ajax/testConfiguration.php:35 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ð²Ñ–Ñ€Ð½Ð° Ñ– зв'Ñзок може бути вÑтановлений ​​!" #: ajax/testConfiguration.php:37 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ð²Ñ–Ñ€Ð½Ð°, але вÑтановити зв'Ñзок не вдалоÑÑ. Будь лаÑка, перевірте Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñервера Ñ– облікові дані." #: ajax/testConfiguration.php:40 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ð½ÐµÐ²Ñ–Ñ€Ð½Ð°. Подробиці подивітьÑÑ, будь лаÑка, в журналі ownCloud." #: js/settings.js:66 msgid "Deletion failed" @@ -45,31 +46,31 @@ msgstr "Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð½Ðµ було виконано" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "ЗаÑтоÑувати Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð· оÑтанньої конфігурації Ñервера ?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "Зберегти Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ ?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "Ðеможливо додати конфігурацію Ñервера" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "Перевірка з'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾Ð¹ÑˆÐ»Ð° уÑпішно" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "Перевірка з'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐ¸Ð»Ð°ÑÑŒ неуÑпішно" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "Ви дійÑно бажаєте видалити поточну конфігурацію Ñервера ?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "Підтвердіть ВидаленнÑ" #: templates/settings.php:8 msgid "" @@ -82,15 +83,15 @@ msgstr "<b>Увага:</b> ЗаÑтоÑунки user_ldap та user_webdavauth msgid "" "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Увага:</ b> Потрібний модуль PHP LDAP не вÑтановлено, базова програма працювати не буде. Будь лаÑка, звернітьÑÑ Ð´Ð¾ ÑиÑтемного адмініÑтратора, щоб вÑтановити його." #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¡ÐµÑ€Ð²ÐµÑ€Ð°" #: templates/settings.php:17 msgid "Add Server Configuration" -msgstr "" +msgstr "Додати Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¡ÐµÑ€Ð²ÐµÑ€Ð°" #: templates/settings.php:21 msgid "Host" @@ -107,7 +108,7 @@ msgstr "Базовий DN" #: templates/settings.php:22 msgid "One Base DN per line" -msgstr "" +msgstr "Один Base DN на одній Ñтрочці" #: templates/settings.php:22 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -178,11 +179,11 @@ msgstr "" #: templates/settings.php:33 msgid "Configuration Active" -msgstr "" +msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ðктивне" #: templates/settings.php:33 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Якщо \"галочка\" знÑта, Ñ†Ñ ÐºÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ð±ÑƒÐ´Ðµ пропущена." #: templates/settings.php:34 msgid "Port" @@ -215,8 +216,8 @@ msgid "Use TLS" msgstr "ВикориÑтовуйте TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ðе викориÑтовуйте його Ð´Ð»Ñ SSL з'єднань, це не буде виконано." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" @@ -258,7 +259,7 @@ msgstr "ОÑновне Дерево КориÑтувачів" #: templates/settings.php:46 msgid "One User Base DN per line" -msgstr "" +msgstr "Один КориÑтувач Base DN на одній Ñтрочці" #: templates/settings.php:47 msgid "User Search Attributes" @@ -282,7 +283,7 @@ msgstr "ОÑновне Дерево Груп" #: templates/settings.php:49 msgid "One Group Base DN per line" -msgstr "" +msgstr "Одна Група Base DN на одній Ñтрочці" #: templates/settings.php:50 msgid "Group Search Attributes" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 1575146567332fa19271004358e7e02809afe50f..012e1202e95c365c28a786285e32843e4db351c6 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -55,8 +55,9 @@ msgid "No category to add?" msgstr "Không có danh mục được thêm?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Danh mục nà y đã được tạo :" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +161,59 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Cà i đặt" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "và i giây trÆ°á»›c" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 phút trÆ°á»›c" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} phút trÆ°á»›c" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 giá» trÆ°á»›c" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} giá» trÆ°á»›c" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "hôm nay" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} ngà y trÆ°á»›c" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "tháng trÆ°á»›c" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} tháng trÆ°á»›c" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "tháng trÆ°á»›c" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "năm trÆ°á»›c" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "năm trÆ°á»›c" @@ -471,7 +472,7 @@ msgstr "Sá»a thể loại" msgid "Add" msgstr "Thêm" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Cảnh bảo bảo máºt" @@ -481,71 +482,75 @@ msgid "" "OpenSSL extension." msgstr "Không an toà n ! chức năng random number generator đã có sẵn ,vui lòng báºt PHP OpenSSL extension." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Nếu không có random number generator , Hacker có thể thiết láºp lại máºt khẩu và chiếm tà i khoản của bạn." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "ThÆ° mục dữ liệu và những táºp tin của bạn có thể dá»… dà ng bị truy cáºp từ mạng. Táºp tin .htaccess do ownCloud cung cấp không hoạt Ä‘á»™ng. Chúng tôi Ä‘á» nghị bạn nên cấu hình lại máy chủ web để thÆ° mục dữ liệu không còn bị truy cáºp hoặc bạn nên di chuyển thÆ° mục dữ liệu ra bên ngoà i thÆ° mục gốc của máy chủ." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Tạo má»™t <strong>tà i khoản quản trị</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Nâng cao" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "ThÆ° mục dữ liệu" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Cấu hình cÆ¡ sở dữ liệu" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "được sá» dụng" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "NgÆ°á»i dùng cÆ¡ sở dữ liệu" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Máºt khẩu cÆ¡ sở dữ liệu" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Tên cÆ¡ sở dữ liệu" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "CÆ¡ sở dữ liệu tablespace" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Database host" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Cà i đặt hoà n tất" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "các dịch vụ web dÆ°á»›i sá»± kiểm soát của bạn" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Äăng xuất" @@ -567,14 +572,18 @@ msgstr "Vui lòng thay đổi máºt khẩu của bạn để đảm bảo tà i k msgid "Lost your password?" msgstr "Bạn quên máºt khẩu ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ghi nhá»›" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Äăng nháºp" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Lùi lại" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 44b47a64cd2f8ef125080d11468163ea2fa41d82..131a491428d6768faeba11d1eeb743b6e089641e 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,60 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Không có táºp tin nà o được tải lên. Lá»—i không xác định" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Không có lá»—i, các táºp tin đã được tải lên thà nh công" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "KÃch thÆ°á»›c những táºp tin tải lên vượt quá MAX_FILE_SIZE đã được quy định" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Táºp tin tải lên má»›i chỉ tải lên được má»™t phần" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Không có táºp tin nà o được tải lên" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Không tìm thấy thÆ° mục tạm" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Không thể ghi " -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -72,11 +86,15 @@ msgstr "Táºp tin" msgid "Unshare" msgstr "Không chia sẽ" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Xóa" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Sá»a tên" @@ -181,31 +199,31 @@ msgstr "URL không được để trống." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Tên" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "KÃch cỡ" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 thÆ° mục" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} thÆ° mục" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 táºp tin" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} táºp tin" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 696681bd68a2ccb758b85fffb2d29478a7e6ae40..3d2b604621fce69e5717c8a972ed3e81393d67fa 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Tên" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 thÆ° mục" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} thÆ° mục" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 táºp tin" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} táºp tin" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index 4de9dbf8467b1eac1bd1057ea19885f8d54d688f..9ebe3a80d4b568fbde13b19324dbb296b08c19be 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -19,10 +19,45 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Lịch sá»" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Phiên bản táºp tin" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index d7a5c629f52fc04a0e77eb882d78667782d84243..a8cdfa2fbb90e1d99cee4a9cf0e6b398fd8e3401 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Không thể tải danh sách ứng dụng từ App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Lá»—i xác thá»±c" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Nhóm đã tồn tại" @@ -51,10 +60,6 @@ msgstr "Email không hợp lệ" msgid "Unable to delete group" msgstr "Không thể xóa nhóm" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Lá»—i xác thá»±c" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Không thể xóa ngÆ°á»i dùng" @@ -117,7 +122,7 @@ msgstr "Lá»—i" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Äang tiến hà nh lÆ°u ..." @@ -194,67 +199,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Máºt khẩu" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Máºt khẩu của bạn đã được thay đổi." -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Không thể đổi máºt khẩu" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Máºt khẩu cÅ©" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Máºt khẩu má»›i " -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "Hiện" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Äổi máºt khẩu" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Email của bạn" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Nháºp địa chỉ email của bạn để khôi phục lại máºt khẩu" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Ngôn ngữ" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Há»— trợ dịch thuáºt" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -288,10 +309,6 @@ msgstr "" msgid "Other" msgstr "Khác" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "Nhóm quản trị" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index d067549c1d8278e44d449a3ac0355ac1a47fbfde..fb97cfd9a49b04b4d14fa777634f436fb5b03d5c 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: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Sá» dụng TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Kết nối SSL bị lá»—i. " +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 514f8d534c9f7578403624dbbc50e7c4b134bc8e..1d9bf29559fc1b36ea80b1ae6dfbdda4faf17891 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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "æ²¡æœ‰åˆ†ç±»æ·»åŠ äº†?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "这个分类已ç»å˜åœ¨äº†:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "å一月" msgid "December" msgstr "å二月" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "设置" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "秒å‰" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 分钟å‰" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟å‰" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "今天" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "昨天" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} 天å‰" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "上个月" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "月å‰" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "去年" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "å¹´å‰" @@ -468,7 +469,7 @@ msgstr "编辑分类" msgid "Add" msgstr "æ·»åŠ " -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "安全è¦å‘Š" @@ -478,71 +479,75 @@ msgid "" "OpenSSL extension." msgstr "没有安全éšæœºç 生æˆå™¨ï¼Œè¯·å¯ç”¨ PHP OpenSSL 扩展。" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "没有安全éšæœºç 生æˆå™¨ï¼Œé»‘客å¯ä»¥é¢„测密ç é‡ç½®ä»¤ç‰Œå¹¶æŽ¥ç®¡ä½ 的账户。" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "您的数æ®æ–‡ä»¶å¤¹å’Œæ‚¨çš„文件或许能够从互è”网访问。ownCloud æ供的 .htaccesss 文件未其作用。我们强烈建议您é…置网络æœåŠ¡å™¨ä»¥ä½¿æ•°æ®æ–‡ä»¶å¤¹ä¸èƒ½ä»Žäº’è”网访问,或将移动数æ®æ–‡ä»¶å¤¹ç§»å‡ºç½‘络æœåŠ¡å™¨æ–‡æ¡£æ ¹ç›®å½•ã€‚" +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "建立一个 <strong>管ç†å¸æˆ·</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "进阶" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "æ•°æ®å˜æ”¾æ–‡ä»¶å¤¹" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "é…置数æ®åº“" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "将会使用" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "æ•°æ®åº“用户" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "æ•°æ®åº“密ç " -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "æ•°æ®åº“用户å" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "æ•°æ®åº“è¡¨æ ¼ç©ºé—´" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "æ•°æ®åº“主机" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "完æˆå®‰è£…" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ä½ æŽ§åˆ¶ä¸‹çš„ç½‘ç»œæœåŠ¡" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "注销" @@ -564,14 +569,18 @@ msgstr "请修改您的密ç 以ä¿æŠ¤è´¦æˆ·ã€‚" msgid "Lost your password?" msgstr "忘记密ç ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "备忘" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "登陆" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "åŽé€€" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 71d9b0482200e2ba09b572897e36be63fdc733e8..000f4c3195c2ddaaadaf3a1330fd37b9b1c2c046 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,60 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "æ²¡æœ‰ä¸Šä¼ æ–‡ä»¶ã€‚æœªçŸ¥é”™è¯¯" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "没有任何错误,æ–‡ä»¶ä¸Šä¼ æˆåŠŸäº†" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ä¸Šä¼ çš„æ–‡ä»¶è¶…è¿‡äº†HTML表å•æŒ‡å®šçš„MAX_FILE_SIZE" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "文件åªæœ‰éƒ¨åˆ†è¢«ä¸Šä¼ " -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "æ²¡æœ‰ä¸Šä¼ å®Œæˆçš„文件" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "丢失了一个临时文件夹" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "写ç£ç›˜å¤±è´¥" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +84,15 @@ msgstr "文件" msgid "Unshare" msgstr "å–消共享" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "åˆ é™¤" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "é‡å‘½å" @@ -179,31 +197,31 @@ msgstr "网å€ä¸èƒ½ä¸ºç©ºã€‚" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "åå—" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "大å°" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "修改日期" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 个文件" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 722b4a5f8cb7f876cdc8a4cc1852c4574f7eaa03..cc9c96f2f0632a0be2217d6971eda043911a422f 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "å称" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 个文件夹" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 个文件" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index 7676ba278c2ef19f0de020e9e88ba807a7eb31a0..97402cab1a7c72c90860af6659342785430b3b40 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +18,45 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "历å²" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "文件版本" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 6aa5df48618bec75121ffef8e2d54fa3934cce69..3335b000123b4bbbafc2caabeaab1221ee2af0c6 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "ä¸èƒ½ä»ŽApp Store ä¸åŠ 载列表" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "认è¯é”™è¯¯" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "群组已å˜åœ¨" @@ -47,10 +56,6 @@ msgstr "éžæ³•Email" msgid "Unable to delete group" msgstr "æœªèƒ½åˆ é™¤ç¾¤ç»„" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "认è¯é”™è¯¯" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "æœªèƒ½åˆ é™¤ç”¨æˆ·" @@ -113,7 +118,7 @@ msgstr "出错" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "ä¿å˜ä¸..." @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "密ç " -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "您的密ç 以å˜æ›´" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "ä¸èƒ½æ”¹å˜ä½ 的密ç " -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "现在的密ç " -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "新密ç " -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "展示" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "改å˜å¯†ç " -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ä½ çš„email地å€" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "输入一个邮箱地å€ä»¥æ¿€æ´»å¯†ç æ¢å¤åŠŸèƒ½" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "è¯è¨€" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -284,10 +305,6 @@ msgstr "" msgid "Other" msgstr "其他的" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "群组管ç†å‘˜" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index bc915483e990bee2ab65745e9b9d0cdd97ccdade..f85d4abe78fab413ce39fd0d949f0f8cd1909931 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "使用 TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "ä¸è¦ä½¿ç”¨å®ƒè¿›è¡Œ SSL 连接,会失败的。" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index c216b30e765a39d8399f91965de361749bdd9d2e..be5884a27777e80c7c43a8c14ac4d96c56c8d31f 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -56,8 +56,9 @@ msgid "No category to add?" msgstr "没有å¯æ·»åŠ 分类?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "æ¤åˆ†ç±»å·²å˜åœ¨: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -161,59 +162,59 @@ msgstr "å一月" msgid "December" msgstr "å二月" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "设置" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "秒å‰" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "一分钟å‰" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟å‰" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1å°æ—¶å‰" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} å°æ—¶å‰" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "今天" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "昨天" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} 天å‰" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "上月" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} 月å‰" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "月å‰" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "去年" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "å¹´å‰" @@ -472,7 +473,7 @@ msgstr "编辑分类" msgid "Add" msgstr "æ·»åŠ " -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "安全è¦å‘Š" @@ -482,71 +483,75 @@ msgid "" "OpenSSL extension." msgstr "éšæœºæ•°ç”Ÿæˆå™¨æ— 效,请å¯ç”¨PHPçš„OpenSSL扩展" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "没有安全éšæœºç 生æˆå™¨ï¼Œæ”»å‡»è€…å¯èƒ½ä¼šçŒœæµ‹å¯†ç é‡ç½®ä¿¡æ¯ä»Žè€Œçªƒå–您的账户" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "您的数æ®æ–‡ä»¶å¤¹å’Œæ–‡ä»¶å¯ç”±äº’è”网访问。OwnCloudæ供的.htaccess文件未生效。我们强烈建议您é…ç½®æœåŠ¡å™¨ï¼Œä»¥ä½¿æ•°æ®æ–‡ä»¶å¤¹ä¸å¯è¢«è®¿é—®ï¼Œæˆ–者将数æ®æ–‡ä»¶å¤¹ç§»åˆ°webæœåŠ¡å™¨æ ¹ç›®å½•ä»¥å¤–。" +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "创建<strong>管ç†å‘˜è´¦å·</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "高级" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "æ•°æ®ç›®å½•" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "é…置数æ®åº“" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "将被使用" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "æ•°æ®åº“用户" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "æ•°æ®åº“密ç " -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "æ•°æ®åº“å" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "æ•°æ®åº“表空间" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "æ•°æ®åº“主机" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "安装完æˆ" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "由您掌控的网络æœåŠ¡" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "注销" @@ -568,14 +573,18 @@ msgstr "请修改您的密ç ,以ä¿æŠ¤æ‚¨çš„账户安全。" msgid "Lost your password?" msgstr "忘记密ç ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "è®°ä½" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "登录" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "上一页" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index b52527396dac562381bad099b64b350b256fa4b4..8fe77aaf1159eff114030099c59548563bd6842d 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -24,46 +24,60 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "æ²¡æœ‰æ–‡ä»¶è¢«ä¸Šä¼ ã€‚æœªçŸ¥é”™è¯¯" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "没有å‘ç”Ÿé”™è¯¯ï¼Œæ–‡ä»¶ä¸Šä¼ æˆåŠŸã€‚" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ä¸Šä¼ æ–‡ä»¶å¤§å°å·²è¶…过php.iniä¸upload_max_filesize所规定的值" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ä¸Šä¼ çš„æ–‡ä»¶è¶…è¿‡äº†åœ¨HTML 表å•ä¸æŒ‡å®šçš„MAX_FILE_SIZE" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "åªä¸Šä¼ 了文件的一部分" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "æ–‡ä»¶æ²¡æœ‰ä¸Šä¼ " -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "写入ç£ç›˜å¤±è´¥" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "没有足够å¯ç”¨ç©ºé—´" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "æ— æ•ˆæ–‡ä»¶å¤¹ã€‚" @@ -75,11 +89,15 @@ msgstr "文件" msgid "Unshare" msgstr "å–消分享" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "åˆ é™¤" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "é‡å‘½å" @@ -184,31 +202,31 @@ msgstr "URLä¸èƒ½ä¸ºç©º" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "æ— æ•ˆæ–‡ä»¶å¤¹å。'共享' 是 Owncloud 预留的文件夹å。" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "å称" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "大å°" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "修改日期" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 个文件" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 71b559d7bac884f261dcc21a1fa74ffe1f72aa70..2d95abe67ee0cd430da550467ff7f68375184b32 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "å称" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1个文件夹" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 个文件" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index 8427a53caaf2a79ad03f6e2a25059abb631e6daf..fef8172901c2a45ed9cc949355c9df8c1e78dc90 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -18,10 +18,45 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "历å²" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "文件版本" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 123e52ea0abcb1fa5a866d494c064f25b3459a86..51c13db8795c6a14d8bb3083526d8bfb55ec621b 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "æ— æ³•ä»Žåº”ç”¨å•†åº—è½½å…¥åˆ—è¡¨" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "认è¯é”™è¯¯" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "å·²å˜åœ¨è¯¥ç»„" @@ -51,10 +60,6 @@ msgstr "æ— æ•ˆçš„ç”µå邮件" msgid "Unable to delete group" msgstr "æ— æ³•åˆ é™¤ç»„" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "认è¯é”™è¯¯" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "æ— æ³•åˆ é™¤ç”¨æˆ·" @@ -117,7 +122,7 @@ msgstr "错误" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "æ£åœ¨ä¿å˜" @@ -194,67 +199,83 @@ msgstr "下载 Android 客户端" msgid "Download iOS Client" msgstr "下载 iOS 客户端" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "密ç " -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "密ç 已修改" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "æ— æ³•ä¿®æ”¹å¯†ç " -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "当å‰å¯†ç " -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "新密ç " -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "显示" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "修改密ç " -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "电å邮件" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "您的电å邮件" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "填写电å邮件地å€ä»¥å¯ç”¨å¯†ç æ¢å¤åŠŸèƒ½" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "è¯è¨€" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "用该地å€æ¥è¿žæŽ¥æ–‡ä»¶ç®¡ç†å™¨ä¸çš„ ownCloud" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "版本" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -288,10 +309,6 @@ msgstr "æ— é™" msgid "Other" msgstr "其它" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "组管ç†å‘˜" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 18eef3d02f9abc93d339b9d8f5adf104da1f15d1..1f5920201f9cabb6e8b68f22d7fcf84fda84bff8 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "使用TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "ä¸è¦åœ¨SSL链接ä¸ä½¿ç”¨æ¤é€‰é¡¹ï¼Œä¼šå¯¼è‡´å¤±è´¥ã€‚" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index d6ed742922515489d75fc2c057a1e11ab458871f..65b41b0aeeef3a171bc59af21a6a0e367d49a90d 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-30 00:23+0100\n" -"PO-Revision-Date: 2013-01-29 23:23+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -51,7 +51,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -156,59 +157,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:284 msgid "Settings" msgstr "" -#: js/js.js:762 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -467,7 +468,7 @@ msgstr "" msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -477,71 +478,75 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:32 +#: templates/layout.user.php:48 msgid "Log out" msgstr "" @@ -563,14 +568,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 3a61b47c5add57b11ab0d60846cf42bc9779e1ee..172bdcbcee43edbfc7069e61a2f1362761500a2d 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 16:02+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,60 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 -msgid "Not enough space available" +#: ajax/upload.php:52 +msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +82,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +195,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 694862fdd6b2c923bd5a0ebdae5025e0be4bc441..4d462824758817b07b1384e816ad218432c45042 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,31 +17,45 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/zh_HK/files_versions.po b/l10n/zh_HK/files_versions.po index 4859a33c5a06418c44120019c078d02abbf0196b..0b4229496a94aebf0dbe5ccd3f06cbca937aa2b6 100644 --- a/l10n/zh_HK/files_versions.po +++ b/l10n/zh_HK/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +17,45 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 58568a1c6e0aaf6e7647e0280192828151c17b29..e9501109c5af6fd6e266389f9e746b8ab071ea32 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -282,10 +303,6 @@ msgstr "" msgid "Other" msgstr "" -#: templates/users.php:80 -msgid "Display Name" -msgstr "" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index cda8b305dea8b4b1b56582e11c868298317c5204..3d9f862dc9ba7963f0388cb41ac15eeb58b2fb63 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index b7347e7ad741c54f201bc1e73fbfb7a1931ebe15..e060611cd6ad30b778120f607f06aa1400e1aa43 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 13:30+0000\n" -"Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -55,8 +55,9 @@ msgid "No category to add?" msgstr "沒有å¯å¢žåŠ 的分類?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "æ¤åˆ†é¡žå·²ç¶“å˜åœ¨ï¼š" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +161,59 @@ msgstr "å一月" msgid "December" msgstr "å二月" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "è¨å®š" -#: js/js.js:759 +#: js/js.js:764 msgid "seconds ago" msgstr "幾秒å‰" -#: js/js.js:760 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 分é˜å‰" -#: js/js.js:761 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} 分é˜å‰" -#: js/js.js:762 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 個å°æ™‚å‰" -#: js/js.js:763 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} å°æ™‚å‰" -#: js/js.js:764 +#: js/js.js:769 msgid "today" msgstr "今天" -#: js/js.js:765 +#: js/js.js:770 msgid "yesterday" msgstr "昨天" -#: js/js.js:766 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} 天å‰" -#: js/js.js:767 +#: js/js.js:772 msgid "last month" msgstr "上個月" -#: js/js.js:768 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} 個月å‰" -#: js/js.js:769 +#: js/js.js:774 msgid "months ago" msgstr "幾個月å‰" -#: js/js.js:770 +#: js/js.js:775 msgid "last year" msgstr "去年" -#: js/js.js:771 +#: js/js.js:776 msgid "years ago" msgstr "幾年å‰" @@ -471,7 +472,7 @@ msgstr "編輯分類" msgid "Add" msgstr "å¢žåŠ " -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "安全性è¦å‘Š" @@ -481,71 +482,75 @@ msgid "" "OpenSSL extension." msgstr "沒有å¯ç”¨çš„亂數產生器,請啟用 PHP ä¸çš„ OpenSSL 擴充功能。" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "若沒有安全的亂數產生器,攻擊者å¯èƒ½å¯ä»¥é 測密碼é‡è¨ä¿¡ç‰©ï¼Œç„¶å¾ŒæŽ§åˆ¶æ‚¨çš„帳戶。" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "您的資料目錄 (Data Directory) 和檔案å¯èƒ½å¯ä»¥ç”±ç¶²éš›ç¶²è·¯ä¸Šé¢å…¬é–‹å˜å–。Owncloud 所æ供的 .htaccess è¨å®šæª”並未生效,我們強烈建è°æ‚¨è¨å®šæ‚¨çš„網é 伺æœå™¨ä»¥é˜²æ¢è³‡æ–™ç›®éŒ„被公開å˜å–,或將您的資料目錄移出網é 伺æœå™¨çš„ document root 。" +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "建立一個<strong>管ç†è€…帳號</strong>" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "進階" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "資料夾" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "è¨å®šè³‡æ–™åº«" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "將會使用" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "資料庫å稱" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "資料庫主機" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "完æˆè¨å®š" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "網路æœå‹™åœ¨æ‚¨æŽ§åˆ¶ä¹‹ä¸‹" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "登出" @@ -567,14 +572,18 @@ msgstr "請更改您的密碼以å†æ¬¡å–得您的帳戶的控制權。" msgid "Lost your password?" msgstr "忘記密碼?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "記ä½" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "登入" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "上一é " diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 5775c873fa02e280b1c233d1d1920fa2cc793e27..6f12f19b478eba9ac0c3fed8963ca3d0c0218763 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 13:40+0000\n" -"Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+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" @@ -23,46 +23,60 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳。未知的錯誤。" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "無錯誤,檔案上傳æˆåŠŸ" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上傳的檔案大å°è¶…éŽ php.ini ç•¶ä¸ upload_max_filesize åƒæ•¸çš„è¨å®šï¼š" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上傳的檔案大å°è¶…éŽ HTML è¡¨å–®ä¸ MAX_FILE_SIZE çš„é™åˆ¶" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "åªæœ‰æª”案的一部分被上傳" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "無已上傳檔案" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "éºå¤±æš«å˜è³‡æ–™å¤¾" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" -#: ajax/upload.php:51 -msgid "Not enough space available" -msgstr "æ²’æœ‰è¶³å¤ çš„å¯ç”¨ç©ºé–“" +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "無效的資料夾。" @@ -74,11 +88,15 @@ msgstr "檔案" msgid "Unshare" msgstr "å–消共享" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "刪除" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "é‡æ–°å‘½å" @@ -183,31 +201,31 @@ msgstr "URL ä¸èƒ½ç‚ºç©ºç™½." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無效的資料夾å稱,'Shared' 的使用被 Owncloud ä¿ç•™" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "å稱" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "大å°" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "修改" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} 個檔案" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 212c2b01ff0aa5a538d7913dda5d6024bdca0886..ffbd5fd24eaa9c4d9dbe9353e75617989dafa416 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -17,31 +17,45 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "å稱" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 個資料夾" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 個檔案" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} 個檔案" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index 1d41bf764bcdb2f6afb555cefee1a9829c44f11b..2855967dae236ee5790bbc46f7ce54424ac544d3 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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,10 +18,45 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "æ·å²" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "檔案版本化ä¸..." diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 96601994d53f48f3a0cd16917308cda1d7a5f7b4..b1edf5e53938f333ecc32278693ccfd1657e6cdf 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 06:00+0000\n" -"Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -29,6 +29,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "無法從 App Store 讀å–清單" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "èªè‰éŒ¯èª¤" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "群組已å˜åœ¨" @@ -53,10 +62,6 @@ msgstr "無效的email" msgid "Unable to delete group" msgstr "群組刪除錯誤" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "èªè‰éŒ¯èª¤" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "使用者刪除錯誤" @@ -119,7 +124,7 @@ msgstr "錯誤" msgid "Updated" msgstr "已更新" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "儲å˜ä¸..." @@ -196,67 +201,83 @@ msgstr "下載 Android 客戶端" msgid "Download iOS Client" msgstr "下載 iOS 客戶端" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "密碼" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "ä½ çš„å¯†ç¢¼å·²æ›´æ”¹" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "ç„¡æ³•è®Šæ›´ä½ çš„å¯†ç¢¼" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ç›®å‰å¯†ç¢¼" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "新密碼" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "顯示" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "變更密碼" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "顯示å稱" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "é›»å郵件" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ä½ çš„é›»å郵件信箱" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "請填入電å郵件信箱以便回復密碼" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "語言" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "幫助翻è¯" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "在您的檔案管ç†å“¡ä¸ä½¿ç”¨é€™å€‹åœ°å€ä¾†é€£ç·šåˆ° ownCloud" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "版本" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -290,10 +311,6 @@ msgstr "ç„¡é™åˆ¶" msgid "Other" msgstr "其他" -#: templates/users.php:80 -msgid "Display Name" -msgstr "顯示å稱" - #: templates/users.php:84 templates/users.php:121 msgid "Group Admin" msgstr "群組 管ç†å“¡" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index f6b4543db19818a8961cc4e82a33c6a503662de3..89db84884a7113c6eb03f16fb0a0c6bc307ccb30 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+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" @@ -214,7 +214,7 @@ msgid "Use TLS" msgstr "使用TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/lib/app.php b/lib/app.php index 3a4e21e8cd1e9f49730f79ef549be77d05ddbded..ca256ed1aaaf36748b3f4fedaef99fdd2cddb74a 100644 --- a/lib/app.php +++ b/lib/app.php @@ -38,6 +38,15 @@ class OC_App{ static private $checkedApps = array(); static private $altLogin = array(); + /** + * @brief clean the appid + * @param $app Appid that needs to be cleaned + * @return string + */ + public static function cleanAppId($app) { + return str_replace(array('\0', '/', '\\', '..'), '', $app); + } + /** * @brief loads all apps * @param array $types @@ -285,6 +294,23 @@ class OC_App{ return true; } + /** + * @brief Get the navigation entries for the $app + * @param string $app app + * @return array of the $data added with addNavigationEntry + */ + public static function getAppNavigationEntries($app) { + if(is_file(self::getAppPath($app).'/appinfo/app.php')) { + $save = self::$navigation; + self::$navigation = array(); + require $app.'/appinfo/app.php'; + $app_entries = self::$navigation; + self::$navigation = $save; + return $app_entries; + } + return array(); + } + /** * @brief gets the active Menu entry * @return string id or empty string diff --git a/lib/archive/tar.php b/lib/archive/tar.php index 117d88e5f42f0a6e550e05e00979bff9609a299a..e7c81389619a8f2d00cb94aea7cb3b275895cb46 100644 --- a/lib/archive/tar.php +++ b/lib/archive/tar.php @@ -6,7 +6,7 @@ * See the COPYING-README file. */ -require_once 'Archive/Tar.php'; +require_once OC::$THIRDPARTYROOT . '/3rdparty/Archive/Tar.php'; class OC_Archive_TAR extends OC_Archive{ const PLAIN=0; diff --git a/lib/base.php b/lib/base.php index b432f282aafd0ae819dde64782965c81209433b8..c60a97100f42859fa5d4a466f078c33d533f74e1 100644 --- a/lib/base.php +++ b/lib/base.php @@ -346,7 +346,7 @@ class OC { public static function init() { // register autoloader spl_autoload_register(array('OC', 'autoload')); - setlocale(LC_ALL, 'en_US.UTF-8'); + OC_Util::issetlocaleworking(); // set some stuff //ob_start(); @@ -468,7 +468,7 @@ class OC { 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')); + self::$REQUESTEDAPP = (isset($_GET['app']) && trim($_GET['app']) != '' && !is_null($_GET['app']) ? OC_App::cleanAppId(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); @@ -498,7 +498,7 @@ class OC { // write error into log if locale can't be set if (OC_Util::issetlocaleworking() == false) { - OC_Log::write('core', 'setting locale to en_US.UTF-8 failed. Support is probably not installed on your system', OC_Log::ERROR); + OC_Log::write('core', 'setting locale to en_US.UTF-8/en_US.UTF8 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') { @@ -548,20 +548,24 @@ class OC { require_once 'core/setup.php'; exit(); } + $request = OC_Request::getPathInfo(); if(substr($request, -3) !== '.js'){// we need these files during the upgrade self::checkMaintenanceMode(); self::checkUpgrade(); } - 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; + if (!self::$CLI) { + try { + OC_App::loadApps(); + 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; diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index 8d504af6163caf4d30642efce8f0ca531cbd60b4..9a5546dce3f59db5221755ac06eba3219352da67 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -138,7 +138,7 @@ class Scanner { * walk over any folders that are not fully scanned yet and scan them */ public function backgroundScan() { - while ($path = $this->cache->getIncomplete()) { + while (($path = $this->cache->getIncomplete()) !== false) { $this->scan($path); $this->cache->correctFolderSize($path); } diff --git a/lib/files/mapper.php b/lib/files/mapper.php new file mode 100644 index 0000000000000000000000000000000000000000..90e4e1ca669a9f44d6f2ffc850924001fc2ee9a1 --- /dev/null +++ b/lib/files/mapper.php @@ -0,0 +1,216 @@ +<?php + +namespace OC\Files; + +/** + * class Mapper is responsible to translate logical paths to physical paths and reverse + */ +class Mapper +{ + /** + * @param string $logicPath + * @param bool $create indicates if the generated physical name shall be stored in the database or not + * @return string the physical path + */ + public function logicToPhysical($logicPath, $create) { + $physicalPath = $this->resolveLogicPath($logicPath); + if ($physicalPath !== null) { + return $physicalPath; + } + + return $this->create($logicPath, $create); + } + + /** + * @param string $physicalPath + * @return string|null + */ + public function physicalToLogic($physicalPath) { + $logicPath = $this->resolvePhysicalPath($physicalPath); + if ($logicPath !== null) { + return $logicPath; + } + + $this->insert($physicalPath, $physicalPath); + return $physicalPath; + } + + /** + * @param string $path + * @param bool $isLogicPath indicates if $path is logical or physical + * @param $recursive + */ + public function removePath($path, $isLogicPath, $recursive) { + if ($recursive) { + $path=$path.'%'; + } + + if ($isLogicPath) { + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*file_map` WHERE `logic_path` LIKE ?'); + $query->execute(array($path)); + } else { + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*file_map` WHERE `physic_path` LIKE ?'); + $query->execute(array($path)); + } + } + + /** + * @param $path1 + * @param $path2 + * @throws \Exception + */ + public function copy($path1, $path2) + { + $path1 = $this->stripLast($path1); + $path2 = $this->stripLast($path2); + $physicPath1 = $this->logicToPhysical($path1, true); + $physicPath2 = $this->logicToPhysical($path2, true); + + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*file_map` WHERE `logic_path` LIKE ?'); + $result = $query->execute(array($path1.'%')); + $updateQuery = \OC_DB::prepare('UPDATE `*PREFIX*file_map`' + .' SET `logic_path` = ?' + .' AND `physic_path` = ?' + .' WHERE `logic_path` = ?'); + while( $row = $result->fetchRow()) { + $currentLogic = $row['logic_path']; + $currentPhysic = $row['physic_path']; + $newLogic = $path2.$this->stripRootFolder($currentLogic, $path1); + $newPhysic = $physicPath2.$this->stripRootFolder($currentPhysic, $physicPath1); + if ($path1 !== $currentLogic) { + try { + $updateQuery->execute(array($newLogic, $newPhysic, $currentLogic)); + } catch (\Exception $e) { + error_log('Mapper::Copy failed '.$currentLogic.' -> '.$newLogic.'\n'.$e); + throw $e; + } + } + } + } + + /** + * @param $path + * @param $root + * @return bool|string + */ + public function stripRootFolder($path, $root) { + if (strpos($path, $root) !== 0) { + // throw exception ??? + return false; + } + if (strlen($path) > strlen($root)) { + return substr($path, strlen($root)); + } + + return ''; + } + + private function stripLast($path) { + if (substr($path, -1) == '/') { + $path = substr_replace($path ,'',-1); + } + return $path; + } + + private function resolveLogicPath($logicPath) { + $logicPath = $this->stripLast($logicPath); + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*file_map` WHERE `logic_path` = ?'); + $result = $query->execute(array($logicPath)); + $result = $result->fetchRow(); + + return $result['physic_path']; + } + + private function resolvePhysicalPath($physicalPath) { + $physicalPath = $this->stripLast($physicalPath); + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*file_map` WHERE `physic_path` = ?'); + $result = $query->execute(array($physicalPath)); + $result = $result->fetchRow(); + + return $result['logic_path']; + } + + private function create($logicPath, $store) { + $logicPath = $this->stripLast($logicPath); + $index = 0; + + // create the slugified path + $physicalPath = $this->slugifyPath($logicPath); + + // detect duplicates + while ($this->resolvePhysicalPath($physicalPath) !== null) { + $physicalPath = $this->slugifyPath($physicalPath, $index++); + } + + // insert the new path mapping if requested + if ($store) { + $this->insert($logicPath, $physicalPath); + } + + return $physicalPath; + } + + private function insert($logicPath, $physicalPath) { + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*file_map`(`logic_path`,`physic_path`) VALUES(?,?)'); + $query->execute(array($logicPath, $physicalPath)); + } + + private function slugifyPath($path, $index=null) { + $pathElements = explode('/', $path); + $sluggedElements = array(); + + // skip slugging the drive letter on windows - TODO: test if local path + if (strpos(strtolower(php_uname('s')), 'win') !== false) { + $sluggedElements[]= $pathElements[0]; + array_shift($pathElements); + } + foreach ($pathElements as $pathElement) { + // TODO: remove file ext before slugify on last element + $sluggedElements[] = self::slugify($pathElement); + } + + // + // TODO: add the index before the file extension + // + if ($index !== null) { + $last= end($sluggedElements); + array_pop($sluggedElements); + array_push($sluggedElements, $last.'-'.$index); + } + return implode(DIRECTORY_SEPARATOR, $sluggedElements); + } + + /** + * Modifies a string to remove all non ASCII characters and spaces. + * + * @param string $text + * @return string + */ + private function slugify($text) + { + // replace non letter or digits by - + $text = preg_replace('~[^\\pL\d]+~u', '-', $text); + + // trim + $text = trim($text, '-'); + + // transliterate + if (function_exists('iconv')) { + $text = iconv('utf-8', 'us-ascii//TRANSLIT', $text); + } + + // lowercase + $text = strtolower($text); + + // remove unwanted characters + $text = preg_replace('~[^-\w]+~', '', $text); + + if (empty($text)) + { + // TODO: we better generate a guid in this case + return 'n-a'; + } + + return $text; + } +} diff --git a/lib/files/storage/local.php b/lib/files/storage/local.php index a5db4ba91947bb2961f491f1ed47c1164911873f..d387a89832015be212061ab06ce6b116c506a94a 100644 --- a/lib/files/storage/local.php +++ b/lib/files/storage/local.php @@ -8,6 +8,10 @@ namespace OC\Files\Storage; +if (\OC_Util::runningOnWindows()) { + require_once 'mappedlocal.php'; +} else { + /** * for local filestore, we only have to map the paths */ @@ -245,3 +249,4 @@ class Local extends \OC\Files\Storage\Common{ return $this->filemtime($path)>$time; } } +} diff --git a/lib/files/storage/mappedlocal.php b/lib/files/storage/mappedlocal.php new file mode 100644 index 0000000000000000000000000000000000000000..80dd79bc41fb4d7228b5d59c544cdd93a48201f1 --- /dev/null +++ b/lib/files/storage/mappedlocal.php @@ -0,0 +1,335 @@ +<?php +/** + * Copyright (c) 2012 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ +namespace OC\Files\Storage; + +/** + * for local filestore, we only have to map the paths + */ +class Local extends \OC\Files\Storage\Common{ + protected $datadir; + private $mapper; + + public function __construct($arguments) { + $this->datadir=$arguments['datadir']; + if(substr($this->datadir, -1)!=='/') { + $this->datadir.='/'; + } + + $this->mapper= new \OC\Files\Mapper(); + } + public function __destruct() { + if (defined('PHPUNIT_RUN')) { + $this->mapper->removePath($this->datadir, true, true); + } + } + public function getId(){ + return 'local::'.$this->datadir; + } + public function mkdir($path) { + return @mkdir($this->buildPath($path)); + } + public function rmdir($path) { + if ($result = @rmdir($this->buildPath($path))) { + $this->cleanMapper($path); + } + return $result; + } + public function opendir($path) { + $files = array('.', '..'); + $physicalPath= $this->buildPath($path); + + $logicalPath = $this->mapper->physicalToLogic($physicalPath); + $dh = opendir($physicalPath); + while ($file = readdir($dh)) { + if ($file === '.' or $file === '..') { + continue; + } + + $logicalFilePath = $this->mapper->physicalToLogic($physicalPath.DIRECTORY_SEPARATOR.$file); + + $file= $this->mapper->stripRootFolder($logicalFilePath, $logicalPath); + $file = $this->stripLeading($file); + $files[]= $file; + } + + \OC\Files\Stream\Dir::register('local-win32'.$path, $files); + return opendir('fakedir://local-win32'.$path); + } + public function is_dir($path) { + if(substr($path,-1)=='/') { + $path=substr($path, 0, -1); + } + return is_dir($this->buildPath($path)); + } + public function is_file($path) { + return is_file($this->buildPath($path)); + } + public function stat($path) { + $fullPath = $this->buildPath($path); + $statResult = stat($fullPath); + + if ($statResult['size'] < 0) { + $size = self::getFileSizeFromOS($fullPath); + $statResult['size'] = $size; + $statResult[7] = $size; + } + return $statResult; + } + public function filetype($path) { + $filetype=filetype($this->buildPath($path)); + if($filetype=='link') { + $filetype=filetype(realpath($this->buildPath($path))); + } + return $filetype; + } + public function filesize($path) { + if($this->is_dir($path)) { + return 0; + }else{ + $fullPath = $this->buildPath($path); + $fileSize = filesize($fullPath); + if ($fileSize < 0) { + return self::getFileSizeFromOS($fullPath); + } + + return $fileSize; + } + } + public function isReadable($path) { + return is_readable($this->buildPath($path)); + } + public function isUpdatable($path) { + return is_writable($this->buildPath($path)); + } + public function file_exists($path) { + return file_exists($this->buildPath($path)); + } + public function filemtime($path) { + return filemtime($this->buildPath($path)); + } + public function touch($path, $mtime=null) { + // sets the modification time of the file to the given value. + // If mtime is nil the current time is set. + // note that the access time of the file always changes to the current time. + if(!is_null($mtime)) { + $result=touch( $this->buildPath($path), $mtime ); + }else{ + $result=touch( $this->buildPath($path)); + } + if( $result ) { + clearstatcache( true, $this->buildPath($path) ); + } + + return $result; + } + public function file_get_contents($path) { + return file_get_contents($this->buildPath($path)); + } + public function file_put_contents($path, $data) {//trigger_error("$path = ".var_export($path, 1)); + return file_put_contents($this->buildPath($path), $data); + } + public function unlink($path) { + return $this->delTree($path); + } + public function rename($path1, $path2) { + if (!$this->isUpdatable($path1)) { + \OC_Log::write('core','unable to rename, file is not writable : '.$path1,\OC_Log::ERROR); + return false; + } + if(! $this->file_exists($path1)) { + \OC_Log::write('core','unable to rename, file does not exists : '.$path1,\OC_Log::ERROR); + return false; + } + + $physicPath1 = $this->buildPath($path1); + $physicPath2 = $this->buildPath($path2); + if($return=rename($physicPath1, $physicPath2)) { + // mapper needs to create copies or all children + $this->copyMapping($path1, $path2); + $this->cleanMapper($physicPath1, false, true); + } + return $return; + } + public function copy($path1, $path2) { + if($this->is_dir($path2)) { + if(!$this->file_exists($path2)) { + $this->mkdir($path2); + } + $source=substr($path1, strrpos($path1, '/')+1); + $path2.=$source; + } + if($return=copy($this->buildPath($path1), $this->buildPath($path2))) { + // mapper needs to create copies or all children + $this->copyMapping($path1, $path2); + } + return $return; + } + public function fopen($path, $mode) { + if($return=fopen($this->buildPath($path), $mode)) { + switch($mode) { + case 'r': + break; + case 'r+': + case 'w+': + case 'x+': + case 'a+': + break; + case 'w': + case 'x': + case 'a': + break; + } + } + return $return; + } + + public function getMimeType($path) { + if($this->isReadable($path)) { + return \OC_Helper::getMimeType($this->buildPath($path)); + }else{ + return false; + } + } + + private function delTree($dir, $isLogicPath=true) { + $dirRelative=$dir; + if ($isLogicPath) { + $dir=$this->buildPath($dir); + } + if (!file_exists($dir)) { + return true; + } + if (!is_dir($dir) || is_link($dir)) { + if($return=unlink($dir)) { + $this->cleanMapper($dir, false); + return $return; + } + } + foreach (scandir($dir) as $item) { + if ($item == '.' || $item == '..') { + continue; + } + if(is_file($dir.'/'.$item)) { + if(unlink($dir.'/'.$item)) { + $this->cleanMapper($dir.'/'.$item, false); + } + }elseif(is_dir($dir.'/'.$item)) { + if (!$this->delTree($dir. "/" . $item, false)) { + return false; + }; + } + } + if($return=rmdir($dir)) { + $this->cleanMapper($dir, false); + } + return $return; + } + + private static function getFileSizeFromOS($fullPath) { + $name = strtolower(php_uname('s')); + // Windows OS: we use COM to access the filesystem + if (strpos($name, 'win') !== false) { + if (class_exists('COM')) { + $fsobj = new \COM("Scripting.FileSystemObject"); + $f = $fsobj->GetFile($fullPath); + return $f->Size; + } + } else if (strpos($name, 'bsd') !== false) { + if (\OC_Helper::is_function_enabled('exec')) { + return (float)exec('stat -f %z ' . escapeshellarg($fullPath)); + } + } else if (strpos($name, 'linux') !== false) { + if (\OC_Helper::is_function_enabled('exec')) { + return (float)exec('stat -c %s ' . escapeshellarg($fullPath)); + } + } else { + \OC_Log::write('core', 'Unable to determine file size of "'.$fullPath.'". Unknown OS: '.$name, \OC_Log::ERROR); + } + + return 0; + } + + public function hash($path, $type, $raw=false) { + return hash_file($type, $this->buildPath($path), $raw); + } + + public function free_space($path) { + return @disk_free_space($this->buildPath($path)); + } + + public function search($query) { + return $this->searchInDir($query); + } + public function getLocalFile($path) { + return $this->buildPath($path); + } + public function getLocalFolder($path) { + return $this->buildPath($path); + } + + protected function searchInDir($query, $dir='', $isLogicPath=true) { + $files=array(); + $physicalDir = $this->buildPath($dir); + foreach (scandir($physicalDir) as $item) { + if ($item == '.' || $item == '..') + continue; + $physicalItem = $this->mapper->physicalToLogic($physicalDir.DIRECTORY_SEPARATOR.$item); + $item = substr($physicalItem, strlen($physicalDir)+1); + + if(strstr(strtolower($item), strtolower($query)) !== false) { + $files[]=$dir.'/'.$item; + } + if(is_dir($physicalItem)) { + $files=array_merge($files, $this->searchInDir($query, $physicalItem, false)); + } + } + return $files; + } + + /** + * check if a file or folder has been updated since $time + * @param string $path + * @param int $time + * @return bool + */ + public function hasUpdated($path, $time) { + return $this->filemtime($path)>$time; + } + + private function buildPath($path, $create=true) { + $path = $this->stripLeading($path); + $fullPath = $this->datadir.$path; + return $this->mapper->logicToPhysical($fullPath, $create); + } + + private function cleanMapper($path, $isLogicPath=true, $recursive=true) { + $fullPath = $path; + if ($isLogicPath) { + $fullPath = $this->datadir.$path; + } + $this->mapper->removePath($fullPath, $isLogicPath, $recursive); + } + + private function copyMapping($path1, $path2) { + $path1 = $this->stripLeading($path1); + $path2 = $this->stripLeading($path2); + + $fullPath1 = $this->datadir.$path1; + $fullPath2 = $this->datadir.$path2; + + $this->mapper->copy($fullPath1, $fullPath2); + } + + private function stripLeading($path) { + if(strpos($path, '/') === 0) { + $path = substr($path, 1); + } + + return $path; + } +} diff --git a/lib/files/view.php b/lib/files/view.php index dfcb770328bd4dd6161708ee64d47b00095bec53..1a234228eab34c4370effa6d98fe8c63baea0291 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -509,11 +509,7 @@ class View { if (Filesystem::isValidPath($path)) { $source = $this->fopen($path, 'r'); if ($source) { - $extension = ''; - $extOffset = strpos($path, '.'); - if ($extOffset !== false) { - $extension = substr($path, strrpos($path, '.')); - } + $extension = pathinfo($path, PATHINFO_EXTENSION); $tmpFile = \OC_Helper::tmpFile($extension); file_put_contents($tmpFile, $source); return $tmpFile; diff --git a/lib/helper.php b/lib/helper.php index 0e549d006a1fd7540ce0372dc5d30c86f53045a6..a0fbdd10394f3e904d71fe0d24b62d76cb22aa05 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -394,13 +394,12 @@ class OC_Helper { // it looks like we have a 'file' command, // lets see if it does have mime support $path=escapeshellarg($path); - $fp = popen("file -i -b $path 2>/dev/null", "r"); + $fp = popen("file -b --mime-type $path 2>/dev/null", "r"); $reply = fgets($fp); pclose($fp); - // we have smth like 'text/x-c++; charset=us-ascii\n' - // and need to eliminate everything starting with semicolon including trailing LF - $mimeType = preg_replace('/;.*/ms', '', trim($reply)); + //trim the newline + $mimeType = trim($reply); } return $mimeType; diff --git a/lib/hook.php b/lib/hook.php index 4da331bb5d80c9eed971b3951072eaa331004650..e30aefb5e1814efcda7f25306767edf0f55cf9fd 100644 --- a/lib/hook.php +++ b/lib/hook.php @@ -20,19 +20,22 @@ class OC_Hook{ * TODO: write example */ static public function connect( $signalclass, $signalname, $slotclass, $slotname ) { - // Create the data structure + // If we're trying to connect to an emitting class that isn't + // yet registered, register it if( !array_key_exists( $signalclass, self::$registered )) { self::$registered[$signalclass] = array(); } - if( !array_key_exists( $signalname, self::$registered[$signalclass] )) { + // If we're trying to connect to an emitting method that isn't + // yet registered, register it with the emitting class + if( !array_key_exists( $signalname, self::$registered[$signalclass] )) { self::$registered[$signalclass][$signalname] = array(); } - - // register hook + + // Connect the hook handler to the requested emitter self::$registered[$signalclass][$signalname][] = array( "class" => $slotclass, "name" => $slotname ); - + // No chance for failure ;-) return true; } @@ -49,14 +52,19 @@ class OC_Hook{ * TODO: write example */ static public function emit( $signalclass, $signalname, $params = array()) { - // Return false if there are no slots + + // Return false if no hook handlers are listening to this + // emitting class if( !array_key_exists( $signalclass, self::$registered )) { return false; } + + // Return false if no hook handlers are listening to this + // emitting method if( !array_key_exists( $signalname, self::$registered[$signalclass] )) { return false; } - + // Call all slots foreach( self::$registered[$signalclass][$signalname] as $i ) { try { diff --git a/lib/l10n.php b/lib/l10n.php index ee8790092655d40dc3b2acc3fde8172e6bd73b78..e272bcd79f3e7e1c81558fb1b4ad2d47830586fe 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -97,7 +97,7 @@ class OC_L10N{ if ($this->app === true) { return; } - $app = $this->app; + $app = OC_App::cleanAppId($this->app); $lang = $this->lang; $this->app = true; // Find the right language diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 3ed55f8e9dc5bf5690415eac2902e3b3d97977ac..5ef2cca3be3dbf7ccfda3c95ceb43c2d35ada8a5 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.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/mimetypes.list.php b/lib/mimetypes.list.php index fc87d011ecdc13f1489c0a614112dbdb352af402..86ce9c6c237533fe0884d1fd788fdba165c428e0 100644 --- a/lib/mimetypes.list.php +++ b/lib/mimetypes.list.php @@ -97,4 +97,6 @@ return array( 'ai' => 'application/illustrator', 'epub' => 'application/epub+zip', 'mobi' => 'application/x-mobipocket-ebook', + 'exe' => 'application', + 'msi' => 'application' ); diff --git a/lib/public/contacts.php b/lib/public/contacts.php index 44d82c37908260775f387de82f1f81921b4207ce..88d812e735a857b79e47cb85b712ab9801836711 100644 --- a/lib/public/contacts.php +++ b/lib/public/contacts.php @@ -149,14 +149,14 @@ namespace OCP { /** * @param \OCP\IAddressBook $address_book */ - public static function registerAddressBook($address_book) { + public static function registerAddressBook(\OCP\IAddressBook $address_book) { self::$address_books[$address_book->getKey()] = $address_book; } /** * @param \OCP\IAddressBook $address_book */ - public static function unregisterAddressBook($address_book) { + public static function unregisterAddressBook(\OCP\IAddressBook $address_book) { unset(self::$address_books[$address_book->getKey()]); } diff --git a/lib/public/share.php b/lib/public/share.php index d46bee26dd4bb5a028c46d01d796933efa19a2e8..af2a538e252d034aa837cba6b8c5ddbd09a7a58f 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -704,7 +704,7 @@ class Share { $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `uid_owner`, ' .'`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' .'`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' - .'`name` `mtime`, `mimetype`, `mimepart`, `size`, `encrypted`, `etag`'; + .'`name`, `mtime`, `mimetype`, `mimepart`, `size`, `encrypted`, `etag`'; } else { $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`'; } diff --git a/lib/public/util.php b/lib/public/util.php index a78a52f326edc256d380f414687053bdc421bb67..5f6ede4460e85eaafccb014029cfccedaa56ca22 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -59,9 +59,9 @@ class Util { * @param string $fromname * @param bool $html */ - public static function sendMail( $toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html=0, $altbody='', $ccaddress='', $ccname='', $bcc='') { + public static function sendMail( $toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html = 0, $altbody = '', $ccaddress = '', $ccname = '', $bcc = '') { // call the internal mail class - \OC_MAIL::send($toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html = 0, $altbody = '', $ccaddress = '', $ccname = '', $bcc = ''); + \OC_MAIL::send($toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html, $altbody, $ccaddress, $ccname, $bcc); } /** @@ -147,6 +147,20 @@ class Util { return \OC_Helper::linkToPublic($service); } + /** + * @brief Creates an url using a defined route + * @param $route + * @param array $parameters + * @return + * @internal param array $args with param=>value, will be appended to the returned url + * @returns the url + * + * Returns a url to the given app and file. + */ + public static function linkToRoute( $route, $parameters = array() ) { + return \OC_Helper::linkToRoute($route, $parameters); + } + /** * @brief Creates an url * @param string $app app diff --git a/lib/router.php b/lib/router.php index 746b68c2c0c4a8078f0c738d5b991d9808814f0f..dbaca9e0d5ddb1f4778b11a4e8b61434b1dfdc63 100644 --- a/lib/router.php +++ b/lib/router.php @@ -23,7 +23,11 @@ class OC_Router { public function __construct() { $baseUrl = OC_Helper::linkTo('', 'index.php'); - $method = $_SERVER['REQUEST_METHOD']; + if ( !OC::$CLI) { + $method = $_SERVER['REQUEST_METHOD']; + }else{ + $method = 'GET'; + } $host = OC_Request::serverHost(); $schema = OC_Request::serverProtocol(); $this->context = new RequestContext($baseUrl, $method, $host, $schema); diff --git a/lib/setup.php b/lib/setup.php index 4dd190b99fb159b858c28e79f1b52d6fd8ca2897..f342142c95794f6085d1929598cb288fa3fe0f9e 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -610,4 +610,24 @@ class OC_Setup { file_put_contents(OC_Config::getValue('datadirectory', OC::$SERVERROOT.'/data').'/.htaccess', $content); file_put_contents(OC_Config::getValue('datadirectory', OC::$SERVERROOT.'/data').'/index.html', ''); } + + /** + * @brief Post installation checks + */ + public static function postSetupCheck($params) { + // setup was successful -> webdav testing now + if (OC_Util::isWebDAVWorking()) { + header("Location: ".OC::$WEBROOT.'/'); + } else { + $l=OC_L10N::get('lib'); + + $error = $l->t('Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.'); + $hint = $l->t('Please double check the <a href=\'%s\'>installation guides</a>.', 'http://doc.owncloud.org/server/5.0/admin_manual/installation.html'); + + $tmpl = new OC_Template('', 'error', 'guest'); + $tmpl->assign('errors', array(1 => array('error' => $error, 'hint' => $hint)), false); + $tmpl->printPage(); + exit(); + } + } } diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 37ece91047f4b4c012a2116b1eb724307fe90ff3..345f540af042a057787be9125c1b998deb05f2e7 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -19,6 +19,7 @@ class OC_TemplateLayout extends OC_Template { } // Add navigation entry + $this->assign( 'application', '', false ); $navigation = OC_App::getNavigation(); $this->assign( 'navigation', $navigation, false); $this->assign( 'settingsnavigation', OC_App::getSettingsNavigation(), false); @@ -28,6 +29,8 @@ class OC_TemplateLayout extends OC_Template { break; } } + $user_displayname = OC_User::getDisplayName(); + $this->assign( 'user_displayname', $user_displayname ); } else if ($renderas == 'guest') { parent::__construct('core', 'layout.guest'); } else { @@ -36,6 +39,9 @@ class OC_TemplateLayout extends OC_Template { // Add the js files $jsfiles = self::findJavascriptFiles(OC_Util::$scripts); $this->assign('jsfiles', array(), false); + if (OC_Config::getValue('installed', false)) { + $this->append( 'jsfiles', OC_Helper::linkToRoute('js_config')); + } if (!empty(OC_Util::$core_scripts)) { $this->append( 'jsfiles', OC_Helper::linkToRemoteBase('core.js', false)); } diff --git a/lib/util.php b/lib/util.php index 5983c34e761bea38182b378824c42de03882e4ad..a5fe4cb175a3ac95c74ad997126687f3d8c52a89 100755 --- a/lib/util.php +++ b/lib/util.php @@ -516,6 +516,40 @@ class OC_Util { } } + /** + * we test if webDAV is working properly + * + * The basic assumption is that if the server returns 401/Not Authenticated for an unauthenticated PROPFIND + * the web server it self is setup properly. + * + * Why not an authenticated PROFIND and other verbs? + * - We don't have the password available + * - We have no idea about other auth methods implemented (e.g. OAuth with Bearer header) + * + */ + public static function isWebDAVWorking() { + if (!function_exists('curl_init')) { + return; + } + + $settings = array( + 'baseUri' => OC_Helper::linkToRemote('webdav'), + ); + + $client = new \Sabre_DAV_Client($settings); + + $return = true; + try { + // test PROPFIND + $client->propfind('', array('{DAV:}resourcetype')); + } catch(\Sabre_DAV_Exception_NotAuthenticated $e) { + $return = true; + } catch(\Exception $e) { + $return = false; + } + + return $return; + } /** * Check if the setlocal call doesn't work. This can happen if the right local packages are not available on the server. @@ -526,12 +560,19 @@ class OC_Util { return true; } - $result=setlocale(LC_ALL, 'en_US.UTF-8'); - if($result==false) { - return(false); - }else{ - return(true); - } + $result = setlocale(LC_ALL, 'en_US.UTF-8', 'en_US.UTF8'); + if($result == false) { + return false; + } + return true; + } + + /** + * Check if the PHP module fileinfo is loaded. + * @return bool + */ + public static function fileInfoLoaded() { + return function_exists('finfo_open'); } /** @@ -646,6 +687,9 @@ class OC_Util { curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($curl, CURLOPT_URL, $url); + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); + curl_setopt($curl, CURLOPT_MAXREDIRS, 10); + curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); if(OC_Config::getValue('proxy','')<>'') { curl_setopt($curl, CURLOPT_PROXY, OC_Config::getValue('proxy')); diff --git a/settings/admin.php b/settings/admin.php index 4d9685ab9208cff5bbde353d98016cc8a143f4fb..c7848803095e2e794a90a9e9c5822e9859996677 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -31,6 +31,8 @@ $tmpl->assign('entriesremain', $entriesremain); $tmpl->assign('htaccessworking', $htaccessworking); $tmpl->assign('internetconnectionworking', OC_Util::isinternetconnectionworking()); $tmpl->assign('islocaleworking', OC_Util::issetlocaleworking()); +$tmpl->assign('isWebDavWorking', OC_Util::isWebDAVWorking()); +$tmpl->assign('has_fileinfo', OC_Util::fileInfoLoaded()); $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax')); $tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes')); diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index 8d45e62e4d8e6dcfafe5db3ba1392dc42bbef62d..ceb4bbeecb0b96ba660f44fe3b5f22bac8f7ea87 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -4,6 +4,9 @@ OCP\JSON::callCheck(); OC_JSON::checkLoggedIn(); +// Manually load apps to ensure hooks work correctly (workaround for issue 1503) +OC_APP::loadApps(); + $username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser(); $password = $_POST["password"]; $oldPassword=isset($_POST["oldpassword"])?$_POST["oldpassword"]:''; @@ -15,14 +18,8 @@ if(OC_User::isAdminUser(OC_User::getUser())) { if(OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { $userstatus = 'subadmin'; } -if(OC_User::getUser() === $username) { - if (OC_User::checkPassword($username, $oldPassword)) { - $userstatus = 'user'; - } else { - if (!OC_Util::isUserVerified()) { - $userstatus = null; - } - } +if(OC_User::getUser() === $username && OC_User::checkPassword($username, $oldPassword)) { + $userstatus = 'user'; } if(is_null($userstatus)) { diff --git a/settings/ajax/disableapp.php b/settings/ajax/disableapp.php index e89de928eac13c3e9278279daf402fe1f470d9b6..466a719157d6fd726d185df6d69d57c975f6c6e9 100644 --- a/settings/ajax/disableapp.php +++ b/settings/ajax/disableapp.php @@ -2,6 +2,6 @@ OC_JSON::checkAdminUser(); OCP\JSON::callCheck(); -OC_App::disable($_POST['appid']); +OC_App::disable(OC_App::cleanAppId($_POST['appid'])); OC_JSON::success(); diff --git a/settings/ajax/enableapp.php b/settings/ajax/enableapp.php index 18202dc39e9ceca8ae200cb78e7538c3ce4490ca..ab84aee516653c0fc14cf1e7ce538caae9b2723c 100644 --- a/settings/ajax/enableapp.php +++ b/settings/ajax/enableapp.php @@ -3,7 +3,7 @@ OC_JSON::checkAdminUser(); OCP\JSON::callCheck(); -$appid = OC_App::enable($_POST['appid']); +$appid = OC_App::enable(OC_App::cleanAppId($_POST['appid'])); if($appid !== false) { OC_JSON::success(array('data' => array('appid' => $appid))); } else { diff --git a/settings/ajax/navigationdetect.php b/settings/ajax/navigationdetect.php index 93acb50dc200adffd78285b94fc46c4d084839be..7f961eb9bc52d73ca8631b48aa6b597d6945be0b 100644 --- a/settings/ajax/navigationdetect.php +++ b/settings/ajax/navigationdetect.php @@ -4,11 +4,9 @@ OC_Util::checkAdminUser(); OCP\JSON::callCheck(); $app = $_GET['app']; +$app = OC_App::cleanAppId($app); -//load the one app and see what it adds to the navigation -OC_App::loadApp($app); - -$navigation = OC_App::getNavigation(); +$navigation = OC_App::getAppNavigationEntries($app); $navIds = array(); foreach ($navigation as $nav) { diff --git a/settings/ajax/updateapp.php b/settings/ajax/updateapp.php index 77c0bbc3e36cc3af4f266068c8ee405e87af004c..9367a3b5a3bf9e76645583fc53b7b9967e470233 100644 --- a/settings/ajax/updateapp.php +++ b/settings/ajax/updateapp.php @@ -4,6 +4,7 @@ OC_JSON::checkAdminUser(); OCP\JSON::callCheck(); $appid = $_POST['appid']; +$appid = OC_App::cleanAppId($appid); $result = OC_Installer::updateApp($appid); if($result !== false) { diff --git a/settings/js/apps-custom.php b/settings/js/apps-custom.php index 9ec2a758ee3b5806bf28a016861507cabef9ca36..d827dfc7058e74cfade6286b7a67c7cbbfd6f725 100644 --- a/settings/js/apps-custom.php +++ b/settings/js/apps-custom.php @@ -23,4 +23,4 @@ foreach($combinedApps as $app) { echo("\n"); } -echo ("var appid =\"".$_GET['appid']."\";"); \ No newline at end of file +echo ("var appid =".json_encode($_GET['appid']).";"); \ No newline at end of file diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 402d91c48fed066038c622d8deda487dfd50562d..499c237eb7b9b3c4c3617fd0383f510dfafe0e7e 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ùشل تØميل القائمة من الآب ستور", +"Authentication error" => "لم يتم التأكد من الشخصية بنجاØ", "Group already exists" => "المجموعة موجودة مسبقاً", "Unable to add group" => "Ùشل إضاÙØ© المجموعة", "Could not enable app. " => "Ùشل عملية تÙعيل التطبيق", "Email saved" => "تم ØÙظ البريد الإلكتروني", "Invalid email" => "البريد الإلكتروني غير صالØ", "Unable to delete group" => "Ùشل إزالة المجموعة", -"Authentication error" => "لم يتم التأكد من الشخصية بنجاØ", "Unable to delete user" => "Ùشل إزالة المستخدم", "Language changed" => "تم تغيير اللغة", "Invalid request" => "طلبك غير Ù…Ùهوم", diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index 60ddcfdde6d65ccb782fd517cb7bc748ba656d9a..fc90036536a60c8ff525b07911fc8728647a1aab 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "অà§à¦¯à¦¾à¦ªà¦¸à§à¦Ÿà§‹à¦° থেকে তালিকা লোড করতে সকà§à¦·à¦® নয়", +"Authentication error" => "অনà§à¦®à§‹à¦¦à¦¨ ঘটিত সমসà§à¦¯à¦¾", "Group already exists" => "গোষà§à¦ ীটি পূরà§à¦¬ থেকেই বিদà§à¦¯à¦®à¦¾à¦¨", "Unable to add group" => "গোষà§à¦ ী যোগ করা সমà§à¦à¦¬ হলো না", "Could not enable app. " => "অà§à¦¯à¦ªà¦Ÿà¦¿ সকà§à¦°à¦¿à§Ÿ করতে সকà§à¦·à¦® নয়।", "Email saved" => "ই-মেইল সংরকà§à¦·à¦¨ করা হয়েছে", "Invalid email" => "ই-মেইলটি সঠিক নয়", "Unable to delete group" => "গোষà§à¦ ী মà§à¦›à§‡ ফেলা সমà§à¦à¦¬ হলো না ", -"Authentication error" => "অনà§à¦®à§‹à¦¦à¦¨ ঘটিত সমসà§à¦¯à¦¾", "Unable to delete user" => "বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦•à¦¾à¦°à§€ মà§à¦›à§‡ ফেলা সমà§à¦à¦¬ হলো না ", "Language changed" => "à¦à¦¾à¦·à¦¾ পরিবরà§à¦¤à¦¨ করা হয়েছে", "Invalid request" => "অনà§à¦°à§‹à¦§à¦Ÿà¦¿ যথাযথ নয়", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 40b19c3b1c32b5cd122054a89f91047995e4bb6b..301ead2802d240e1f51dc101a36b0c47d5b52150 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -1,12 +1,13 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "No s'ha pogut carregar la llista des de l'App Store", +"Authentication error" => "Error d'autenticació", +"Unable to change display name" => "No s'ha pogut canviar el nom a mostrar", "Group already exists" => "El grup ja existeix", "Unable to add group" => "No es pot afegir el grup", "Could not enable app. " => "No s'ha pogut activar l'apliació", "Email saved" => "S'ha desat el correu electrònic", "Invalid email" => "El correu electrònic no és và lid", "Unable to delete group" => "No es pot eliminar el grup", -"Authentication error" => "Error d'autenticació", "Unable to delete user" => "No es pot eliminar l'usuari", "Language changed" => "S'ha canviat l'idioma", "Invalid request" => "Sol.licitud no và lida", @@ -48,6 +49,10 @@ "New password" => "Contrasenya nova", "show" => "mostra", "Change password" => "Canvia la contrasenya", +"Display Name" => "Nom a mostrar", +"Your display name was changed" => "El vostre nom a mostrar ha canviat", +"Unable to change your display name" => "No s'ha pogut canviar el vostre nom a mostrar", +"Change display name" => "Canvia el nom a mostrar", "Email" => "Correu electrònic", "Your email address" => "Correu electrònic", "Fill in an email address to enable password recovery" => "Ompliu el correu electrònic per activar la recuperació de contrasenya", @@ -63,7 +68,6 @@ "Default Storage" => "Emmagatzemament per defecte", "Unlimited" => "Il·limitat", "Other" => "Un altre", -"Display Name" => "Nom a mostrar", "Group Admin" => "Grup Admin", "Storage" => "Emmagatzemament", "change display name" => "canvia el nom a mostrar", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index f1fd0b0b139917569eb8acd10ca9f7190e3e903b..30f44dfefc6b3c4519018cb149abfa5a3e6c41c8 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,12 +1,13 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Nelze naÄÃst seznam z App Store", +"Authentication error" => "Chyba ověřenÃ", +"Unable to change display name" => "Nelze zmÄ›nit zobrazované jméno", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze pÅ™idat skupinu", "Could not enable app. " => "Nelze povolit aplikaci.", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", "Unable to delete group" => "Nelze smazat skupinu", -"Authentication error" => "Chyba ověřenÃ", "Unable to delete user" => "Nelze smazat uživatele", "Language changed" => "Jazyk byl zmÄ›nÄ›n", "Invalid request" => "Neplatný požadavek", @@ -48,6 +49,10 @@ "New password" => "Nové heslo", "show" => "zobrazit", "Change password" => "ZmÄ›nit heslo", +"Display Name" => "Zobrazované jméno", +"Your display name was changed" => "VaÅ¡e zobrazované jméno bylo zmÄ›nÄ›no", +"Unable to change your display name" => "Nelze zmÄ›nit vaÅ¡e zobrazované jméno", +"Change display name" => "ZmÄ›nit zobrazované jméno", "Email" => "E-mail", "Your email address" => "VaÅ¡e e-mailová adresa", "Fill in an email address to enable password recovery" => "Pro povolenà zmÄ›ny hesla vyplňte adresu e-mailu", @@ -63,7 +68,6 @@ "Default Storage" => "Výchozà úložiÅ¡tÄ›", "Unlimited" => "NeomezenÄ›", "Other" => "Jiná", -"Display Name" => "Zobrazované jméno", "Group Admin" => "Správa skupiny", "Storage" => "ÚložiÅ¡tÄ›", "change display name" => "zmÄ›nit zobrazované jméno", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 01c59d242c73e778489e3941d13ddabb62c0c73c..294bd918213d020833257119a07cfb3285bdfca0 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Kunne ikke indlæse listen fra App Store", +"Authentication error" => "Adgangsfejl", "Group already exists" => "Gruppen findes allerede", "Unable to add group" => "Gruppen kan ikke oprettes", "Could not enable app. " => "Applikationen kunne ikke aktiveres.", "Email saved" => "Email adresse gemt", "Invalid email" => "Ugyldig email adresse", "Unable to delete group" => "Gruppen kan ikke slettes", -"Authentication error" => "Adgangsfejl", "Unable to delete user" => "Bruger kan ikke slettes", "Language changed" => "Sprog ændret", "Invalid request" => "Ugyldig forespørgsel", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 04f65222b0196ccea69a781612b1cd279d838da9..b7ace81cf5968ff83c14f1c10e6730d0987ce204 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", +"Authentication error" => "Fehler bei der Anmeldung", "Group already exists" => "Gruppe existiert bereits", "Unable to add group" => "Gruppe konnte nicht angelegt werden", "Could not enable app. " => "App konnte nicht aktiviert werden.", "Email saved" => "E-Mail Adresse gespeichert", "Invalid email" => "Ungültige E-Mail Adresse", "Unable to delete group" => "Gruppe konnte nicht gelöscht werden", -"Authentication error" => "Fehler bei der Anmeldung", "Unable to delete user" => "Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", "Invalid request" => "Ungültige Anfrage", @@ -43,6 +43,7 @@ "New password" => "Neues Passwort", "show" => "zeigen", "Change password" => "Passwort ändern", +"Display Name" => "Anzeigename", "Email" => "E-Mail", "Your email address" => "Deine E-Mail-Adresse", "Fill in an email address to enable password recovery" => "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", @@ -58,7 +59,6 @@ "Default Storage" => "Standard-Speicher", "Unlimited" => "Unbegrenzt", "Other" => "Andere", -"Display Name" => "Anzeigename", "Group Admin" => "Gruppenadministrator", "Storage" => "Speicher", "change display name" => "Anzeigenamen ändern", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 5358212dbcdca6562306e5dc597865e5aac99eef..ab8c791bbe0e208132941f5221dc273c7e00e7a8 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -1,12 +1,13 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", +"Authentication error" => "Fehler bei der Anmeldung", +"Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich", "Group already exists" => "Die Gruppe existiert bereits", "Unable to add group" => "Die Gruppe konnte nicht angelegt werden", "Could not enable app. " => "Die Anwendung konnte nicht aktiviert werden.", "Email saved" => "E-Mail-Adresse gespeichert", "Invalid email" => "Ungültige E-Mail-Adresse", "Unable to delete group" => "Die Gruppe konnte nicht gelöscht werden", -"Authentication error" => "Fehler bei der Anmeldung", "Unable to delete user" => "Der Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", "Invalid request" => "Ungültige Anfrage", @@ -48,6 +49,10 @@ "New password" => "Neues Passwort", "show" => "zeigen", "Change password" => "Passwort ändern", +"Display Name" => "Anzeigename", +"Your display name was changed" => "Dein Anzeigename wurde geändert", +"Unable to change your display name" => "Das Ändern deines Anzeigenamens ist nicht möglich", +"Change display name" => "Anzeigenamen ändern", "Email" => "E-Mail", "Your email address" => "Ihre E-Mail-Adresse", "Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", @@ -63,7 +68,6 @@ "Default Storage" => "Standard-Speicher", "Unlimited" => "Unbegrenzt", "Other" => "Andere", -"Display Name" => "Anzeigename", "Group Admin" => "Gruppenadministrator", "Storage" => "Speicher", "change display name" => "Anzeigenamen ändern", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 90335ceaf02c3e685fdaf92dd04ed56b4eb594f0..925ecf695aaa54b93d7a163ed13ebcbc66a95043 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Σφάλμα στην φόÏτωση της λίστας από το App Store", +"Authentication error" => "Σφάλμα πιστοποίησης", "Group already exists" => "Η ομάδα υπάÏχει ήδη", "Unable to add group" => "Αδυναμία Ï€Ïοσθήκης ομάδας", "Could not enable app. " => "Αδυναμία ενεÏγοποίησης εφαÏμογής ", "Email saved" => "Το email αποθηκεÏτηκε ", "Invalid email" => "Μη ÎγκυÏο email", "Unable to delete group" => "Αδυναμία διαγÏαφής ομάδας", -"Authentication error" => "Σφάλμα πιστοποίησης", "Unable to delete user" => "Αδυναμία διαγÏαφής χÏήστη", "Language changed" => "Η γλώσσα άλλαξε", "Invalid request" => "Μη ÎγκυÏο αίτημα", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index d9a7595255c260f89312a6f706ec971b9de81a26..f84526c3c916771f801d4e56e177797972fbc6b8 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ne eblis Åargi liston el aplikaĵovendejo", +"Authentication error" => "AÅtentiga eraro", "Group already exists" => "La grupo jam ekzistas", "Unable to add group" => "Ne eblis aldoni la grupon", "Could not enable app. " => "Ne eblis kapabligi la aplikaĵon.", "Email saved" => "La retpoÅtadreso konserviÄis", "Invalid email" => "Nevalida retpoÅtadreso", "Unable to delete group" => "Ne eblis forigi la grupon", -"Authentication error" => "AÅtentiga eraro", "Unable to delete user" => "Ne eblis forigi la uzanton", "Language changed" => "La lingvo estas ÅanÄita", "Invalid request" => "Nevalida peto", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index e0649587a448382c9cf06fd62be3ee920f4413ad..1b4fd6ac7a69a69464b1ede7e939e7ccba5a7480 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -1,12 +1,13 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Imposible cargar la lista desde el App Store", +"Authentication error" => "Error de autenticación", +"Unable to change display name" => "Incapaz de cambiar el nombre", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No se pudo añadir el grupo", "Could not enable app. " => "No puedo habilitar la app.", "Email saved" => "Correo guardado", "Invalid email" => "Correo no válido", "Unable to delete group" => "No se pudo eliminar el grupo", -"Authentication error" => "Error de autenticación", "Unable to delete user" => "No se pudo eliminar el usuario", "Language changed" => "Idioma cambiado", "Invalid request" => "Solicitud no válida", @@ -48,6 +49,10 @@ "New password" => "Nueva contraseña:", "show" => "mostrar", "Change password" => "Cambiar contraseña", +"Display Name" => "Nombre a mostrar", +"Your display name was changed" => "Su nombre fue cambiado", +"Unable to change your display name" => "Incapaz de cambiar su nombre", +"Change display name" => "Cambiar nombre", "Email" => "Correo electrónico", "Your email address" => "Tu dirección de correo", "Fill in an email address to enable password recovery" => "Escribe una dirección de correo electrónico para restablecer la contraseña", @@ -63,7 +68,6 @@ "Default Storage" => "Almacenamiento Predeterminado", "Unlimited" => "Ilimitado", "Other" => "Otro", -"Display Name" => "Nombre a mostrar", "Group Admin" => "Grupo admin", "Storage" => "Alamacenamiento", "change display name" => "Cambiar nombre a mostrar", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 3ef0756ede7bdaf46645cacb44aaed6d0a732335..a33d9e8063d47543a4fef58f0f2a4e29b5599fab 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Imposible cargar la lista desde el App Store", +"Authentication error" => "Error al autenticar", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No fue posible añadir el grupo", "Could not enable app. " => "No se puede habilitar la aplicación.", "Email saved" => "e-mail guardado", "Invalid email" => "el e-mail no es válido ", "Unable to delete group" => "No fue posible eliminar el grupo", -"Authentication error" => "Error al autenticar", "Unable to delete user" => "No fue posible eliminar el usuario", "Language changed" => "Idioma cambiado", "Invalid request" => "Solicitud no válida", @@ -42,6 +42,7 @@ "New password" => "Nueva contraseña:", "show" => "mostrar", "Change password" => "Cambiar contraseña", +"Display Name" => "Nombre a mostrar", "Email" => "Correo electrónico", "Your email address" => "Tu dirección de e-mail", "Fill in an email address to enable password recovery" => "Escribà una dirección de correo electrónico para restablecer la contraseña", @@ -57,7 +58,6 @@ "Default Storage" => "Almacenamiento Predeterminado", "Unlimited" => "Ilimitado", "Other" => "Otro", -"Display Name" => "Nombre a mostrar", "Group Admin" => "Grupo Administrador", "Storage" => "Almacenamiento", "Default" => "Predeterminado", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 3f99aed1b8832d5aebf212ba7354f8f12ca6b719..df5b707fcd5ae85324b6dda6a2554baf52a4e57b 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "App Sotre'i nimekirja laadimine ebaõnnestus", +"Authentication error" => "Autentimise viga", "Group already exists" => "Grupp on juba olemas", "Unable to add group" => "Keela grupi lisamine", "Could not enable app. " => "Rakenduse sisselülitamine ebaõnnestus.", "Email saved" => "Kiri on salvestatud", "Invalid email" => "Vigane e-post", "Unable to delete group" => "Keela grupi kustutamine", -"Authentication error" => "Autentimise viga", "Unable to delete user" => "Keela kasutaja kustutamine", "Language changed" => "Keel on muudetud", "Invalid request" => "Vigane päring", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 4a6cdc365ec65ac2d8109350e07ab0c3d1e8b462..1be2c7940bce405d65b524fa531591305f7bd7fa 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ezin izan da App Dendatik zerrenda kargatu", +"Authentication error" => "Autentifikazio errorea", "Group already exists" => "Taldea dagoeneko existitzenda", "Unable to add group" => "Ezin izan da taldea gehitu", "Could not enable app. " => "Ezin izan da aplikazioa gaitu.", "Email saved" => "Eposta gorde da", "Invalid email" => "Baliogabeko eposta", "Unable to delete group" => "Ezin izan da taldea ezabatu", -"Authentication error" => "Autentifikazio errorea", "Unable to delete user" => "Ezin izan da erabiltzailea ezabatu", "Language changed" => "Hizkuntza aldatuta", "Invalid request" => "Baliogabeko eskaria", @@ -42,6 +42,7 @@ "New password" => "Pasahitz berria", "show" => "erakutsi", "Change password" => "Aldatu pasahitza", +"Display Name" => "Bistaratze Izena", "Email" => "E-Posta", "Your email address" => "Zure e-posta", "Fill in an email address to enable password recovery" => "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko", @@ -57,7 +58,6 @@ "Default Storage" => "Lehenetsitako Biltegiratzea", "Unlimited" => "Mugarik gabe", "Other" => "Besteak", -"Display Name" => "Bistaratze Izena", "Group Admin" => "Talde administradorea", "Storage" => "Biltegiratzea", "Default" => "Lehenetsia", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 0d35ddc226b1e7035e01a46681a2ba88d224da2f..d4290f6dee712105d33510c2bfc081a7af50ba6d 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -1,11 +1,11 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "قادر به بارگذاری لیست از Ùروشگاه اپ نیستم", +"Authentication error" => "خطا در اعتبار سنجی", "Group already exists" => "این گروه در Øال Øاضر موجود است", "Unable to add group" => "اÙزودن گروه امکان پذیر نیست", "Email saved" => "ایمیل ذخیره شد", "Invalid email" => "ایمیل غیر قابل قبول", "Unable to delete group" => "Øذ٠گروه امکان پذیر نیست", -"Authentication error" => "خطا در اعتبار سنجی", "Unable to delete user" => "Øذ٠کاربر امکان پذیر نیست", "Language changed" => "زبان تغییر کرد", "Invalid request" => "درخواست غیر قابل قبول", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index c1763dca15eeb85f77cd4ce4b63269c057bb4b39..9f1feb74a11584ae9c3e461d2704fd944bc41ecc 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)", +"Authentication error" => "Todennusvirhe", "Group already exists" => "Ryhmä on jo olemassa", "Unable to add group" => "Ryhmän lisäys epäonnistui", "Could not enable app. " => "Sovelluksen käyttöönotto epäonnistui.", "Email saved" => "Sähköposti tallennettu", "Invalid email" => "Virheellinen sähköposti", "Unable to delete group" => "Ryhmän poisto epäonnistui", -"Authentication error" => "Todennusvirhe", "Unable to delete user" => "Käyttäjän poisto epäonnistui", "Language changed" => "Kieli on vaihdettu", "Invalid request" => "Virheellinen pyyntö", @@ -48,6 +48,7 @@ "New password" => "Uusi salasana", "show" => "näytä", "Change password" => "Vaihda salasana", +"Display Name" => "Näyttönimi", "Email" => "Sähköposti", "Your email address" => "Sähköpostiosoitteesi", "Fill in an email address to enable password recovery" => "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa", @@ -62,7 +63,6 @@ "Create" => "Luo", "Unlimited" => "Rajoittamaton", "Other" => "Muu", -"Display Name" => "Näyttönimi", "Group Admin" => "Ryhmän ylläpitäjä", "change display name" => "vaihda näyttönimi", "set new password" => "aseta uusi salasana", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index b870b56607c420d332faaf3f6c708c7081341a56..a47acb6435f0c525e242c420c1416f4e6d64cc5c 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,12 +1,13 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Impossible de charger la liste depuis l'App Store", +"Authentication error" => "Erreur d'authentification", +"Unable to change display name" => "Impossible de modifier le nom d'affichage", "Group already exists" => "Ce groupe existe déjà ", "Unable to add group" => "Impossible d'ajouter le groupe", "Could not enable app. " => "Impossible d'activer l'Application", "Email saved" => "E-mail sauvegardé", "Invalid email" => "E-mail invalide", "Unable to delete group" => "Impossible de supprimer le groupe", -"Authentication error" => "Erreur d'authentification", "Unable to delete user" => "Impossible de supprimer l'utilisateur", "Language changed" => "Langue changée", "Invalid request" => "Requête invalide", @@ -48,6 +49,10 @@ "New password" => "Nouveau mot de passe", "show" => "Afficher", "Change password" => "Changer de mot de passe", +"Display Name" => "Nom affiché", +"Your display name was changed" => "Votre nom d'affichage a bien été modifié", +"Unable to change your display name" => "Impossible de modifier votre nom d'affichage", +"Change display name" => "Changer le nom affiché", "Email" => "E-mail", "Your email address" => "Votre adresse e-mail", "Fill in an email address to enable password recovery" => "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe", @@ -63,7 +68,6 @@ "Default Storage" => "Support de stockage par défaut", "Unlimited" => "Illimité", "Other" => "Autre", -"Display Name" => "Nom affiché", "Group Admin" => "Groupe Admin", "Storage" => "Support de stockage", "change display name" => "Changer le nom affiché", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 595248f7c5514d5c28ad6ff4d4ad60bb2df8f8b3..997ac53de7ee59209944cc4a900a1c167e219a24 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Non foi posÃbel cargar a lista desde a App Store", +"Authentication error" => "Produciuse un erro de autenticación", "Group already exists" => "O grupo xa existe", "Unable to add group" => "Non é posÃbel engadir o grupo", "Could not enable app. " => "Non é posÃbel activar o aplicativo.", "Email saved" => "Correo gardado", "Invalid email" => "correo incorrecto", "Unable to delete group" => "Non é posÃbel eliminar o grupo.", -"Authentication error" => "Produciuse un erro de autenticación", "Unable to delete user" => "Non é posÃbel eliminar o usuario", "Language changed" => "O idioma cambiou", "Invalid request" => "Petición incorrecta", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index a3db2b9a36c34a99a97d6fa8fed2ff908b93e349..be776d4fa2eaea5bbbfd32d4166f1bfc0fc875e6 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "×œ× × ×™×ª×Ÿ לטעון רשימה מה־App Store", +"Authentication error" => "שגי×ת הזדהות", "Group already exists" => "הקבוצה כבר קיימת", "Unable to add group" => "×œ× × ×™×ª×Ÿ להוסיף קבוצה", "Could not enable app. " => "×œ× × ×™×ª×Ÿ להפעיל ×ת היישו×", "Email saved" => "הדו×״ל × ×©×ž×¨", "Invalid email" => "דו×״ל ×œ× ×—×•×§×™", "Unable to delete group" => "×œ× × ×™×ª×Ÿ למחוק ×ת הקבוצה", -"Authentication error" => "שגי×ת הזדהות", "Unable to delete user" => "×œ× × ×™×ª×Ÿ למחוק ×ת המשתמש", "Language changed" => "שפה ×”×©×ª× ×ª×”", "Invalid request" => "בקשה ×œ× ×—×•×§×™×ª", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 0548b0f84c72f7cb28f781f5b539d4e052c62a23..f55cdcc687a08ad201baa39db2041f185695890b 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -1,8 +1,8 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Nemogićnost uÄitavanja liste sa Apps Stora", +"Authentication error" => "GreÅ¡ka kod autorizacije", "Email saved" => "Email spremljen", "Invalid email" => "Neispravan email", -"Authentication error" => "GreÅ¡ka kod autorizacije", "Language changed" => "Jezik promijenjen", "Invalid request" => "Neispravan zahtjev", "Disable" => "IskljuÄi", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index d56ff7aa58a04589ba63ed35e5de0206d13fbdc4..23d6c3f5f7873dc7c4bee8e9c55fdb452c0eba7a 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Nem tölthetÅ‘ le a lista az App Store-ból", +"Authentication error" => "AzonosÃtási hiba", "Group already exists" => "A csoport már létezik", "Unable to add group" => "A csoport nem hozható létre", "Could not enable app. " => "A program nem aktiválható.", "Email saved" => "Email mentve", "Invalid email" => "Hibás email", "Unable to delete group" => "A csoport nem törölhetÅ‘", -"Authentication error" => "AzonosÃtási hiba", "Unable to delete user" => "A felhasználó nem törölhetÅ‘", "Language changed" => "A nyelv megváltozott", "Invalid request" => "Érvénytelen kérés", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 6a4d7a292b51a6b776b5c3cb33bb21446e77947d..181450e58bad6ab7bff998765ac7c73e879356dc 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -1,7 +1,7 @@ <?php $TRANSLATIONS = array( +"Authentication error" => "autentikasi bermasalah", "Email saved" => "Email tersimpan", "Invalid email" => "Email tidak sah", -"Authentication error" => "autentikasi bermasalah", "Language changed" => "Bahasa telah diganti", "Invalid request" => "Permintaan tidak valid", "Disable" => "NonAktifkan", diff --git a/settings/l10n/is.php b/settings/l10n/is.php index 2421916a5c338fb852297344d22d276b88a8b1a6..75f46a01925049e987a811a36887700fbcc04a15 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ekki tókst að hlaða lista frá forrita sÃðu", +"Authentication error" => "Villa við auðkenningu", "Group already exists" => "Hópur er þegar til", "Unable to add group" => "Ekki tókst að bæta við hóp", "Could not enable app. " => "Gat ekki virkjað forrit", "Email saved" => "Netfang vistað", "Invalid email" => "Ógilt netfang", "Unable to delete group" => "Ekki tókst að eyða hóp", -"Authentication error" => "Villa við auðkenningu", "Unable to delete user" => "Ekki tókst að eyða notenda", "Language changed" => "Tungumáli breytt", "Invalid request" => "Ógild fyrirspurn", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 714c5c29c4c4b142255b8bc61867e89b2950010b..7f860f69edcb010a73e2f4861f44cc8f2b2abc70 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -1,12 +1,13 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Impossibile caricare l'elenco dall'App Store", +"Authentication error" => "Errore di autenticazione", +"Unable to change display name" => "Impossibile cambiare il nome visualizzato", "Group already exists" => "Il gruppo esiste già ", "Unable to add group" => "Impossibile aggiungere il gruppo", "Could not enable app. " => "Impossibile abilitare l'applicazione.", "Email saved" => "Email salvata", "Invalid email" => "Email non valida", "Unable to delete group" => "Impossibile eliminare il gruppo", -"Authentication error" => "Errore di autenticazione", "Unable to delete user" => "Impossibile eliminare l'utente", "Language changed" => "Lingua modificata", "Invalid request" => "Richiesta non valida", @@ -48,6 +49,10 @@ "New password" => "Nuova password", "show" => "mostra", "Change password" => "Modifica password", +"Display Name" => "Nome visualizzato", +"Your display name was changed" => "Il tuo nome visualizzato è stato cambiato", +"Unable to change your display name" => "Impossibile cambiare il tuo nome visualizzato", +"Change display name" => "Cambia il nome visualizzato", "Email" => "Email", "Your email address" => "Il tuo indirizzo email", "Fill in an email address to enable password recovery" => "Inserisci il tuo indirizzo email per abilitare il recupero della password", @@ -63,7 +68,6 @@ "Default Storage" => "Archiviazione predefinita", "Unlimited" => "Illimitata", "Other" => "Altro", -"Display Name" => "Nome visualizzato", "Group Admin" => "Gruppi amministrati", "Storage" => "Archiviazione", "change display name" => "cambia il nome visualizzato", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 41f16051fe885730748c7f12302f5a713888d125..d255b6703378bbd3f6ba77576637f64dd3aa1f12 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,12 +1,13 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "アプリストアã‹ã‚‰ãƒªã‚¹ãƒˆã‚’ãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“", +"Authentication error" => "èªè¨¼ã‚¨ãƒ©ãƒ¼", +"Unable to change display name" => "表示åを変更ã§ãã¾ã›ã‚“", "Group already exists" => "グループã¯æ—¢ã«å˜åœ¨ã—ã¦ã„ã¾ã™", "Unable to add group" => "ã‚°ãƒ«ãƒ¼ãƒ—ã‚’è¿½åŠ ã§ãã¾ã›ã‚“", "Could not enable app. " => "アプリを有効ã«ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚", "Email saved" => "メールアドレスをä¿å˜ã—ã¾ã—ãŸ", "Invalid email" => "無効ãªãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹", "Unable to delete group" => "グループを削除ã§ãã¾ã›ã‚“", -"Authentication error" => "èªè¨¼ã‚¨ãƒ©ãƒ¼", "Unable to delete user" => "ユーザを削除ã§ãã¾ã›ã‚“", "Language changed" => "言語ãŒå¤‰æ›´ã•ã‚Œã¾ã—ãŸ", "Invalid request" => "無効ãªãƒªã‚¯ã‚¨ã‚¹ãƒˆã§ã™", @@ -48,6 +49,10 @@ "New password" => "æ–°ã—ã„パスワード", "show" => "表示", "Change password" => "パスワードを変更", +"Display Name" => "表示å", +"Your display name was changed" => "ã‚ãªãŸã®è¡¨ç¤ºåを変更ã—ã¾ã—ãŸ", +"Unable to change your display name" => "ã‚ãªãŸã®è¡¨ç¤ºåを変更ã§ãã¾ã›ã‚“", +"Change display name" => "表示åを変更", "Email" => "Email", "Your email address" => "ã‚ãªãŸã®ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹", "Fill in an email address to enable password recovery" => "※パスワード回復を有効ã«ã™ã‚‹ã«ã¯ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã®å…¥åŠ›ãŒå¿…è¦ã§ã™", @@ -63,7 +68,6 @@ "Default Storage" => "デフォルトストレージ", "Unlimited" => "無制é™", "Other" => "ãã®ä»–", -"Display Name" => "表示å", "Group Admin" => "グループ管ç†è€…", "Storage" => "ストレージ", "change display name" => "表示åを変更", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 346c89dbc7dcff2ebdf65e5c894e13b90bbedaf1..0fc42d427284711dac136c2c31803d2b27184f1f 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ”ბის სირვერჩáƒáƒ›áƒáƒ˜áƒ¢áƒ•áƒ˜áƒ თრApp Store", +"Authentication error" => "áƒáƒ•áƒ—ენტიფიკáƒáƒªáƒ˜áƒ˜áƒ¡ შეცდáƒáƒ›áƒ", "Group already exists" => "ჯგუფი უკვე áƒáƒ სებáƒáƒ‘ს", "Unable to add group" => "ჯგუფის დáƒáƒ›áƒáƒ¢áƒ”ბრვერმáƒáƒ®áƒ”რხდáƒ", "Could not enable app. " => "ვერმáƒáƒ®áƒ”რხდრáƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ˜áƒ¡ ჩáƒáƒ თვáƒ.", "Email saved" => "იმეილი შენáƒáƒ®áƒ£áƒšáƒ˜áƒ", "Invalid email" => "áƒáƒ áƒáƒ¡áƒ¬áƒáƒ ი იმეილი", "Unable to delete group" => "ჯგუფის წáƒáƒ¨áƒšáƒ ვერმáƒáƒ®áƒ”რხდáƒ", -"Authentication error" => "áƒáƒ•áƒ—ენტიფიკáƒáƒªáƒ˜áƒ˜áƒ¡ შეცდáƒáƒ›áƒ", "Unable to delete user" => "მáƒáƒ›áƒ®áƒ›áƒáƒ ებლის წáƒáƒ¨áƒšáƒ ვერმáƒáƒ®áƒ”რხდáƒ", "Language changed" => "ენრშეცვლილიáƒ", "Invalid request" => "áƒáƒ áƒáƒ¡áƒ¬áƒáƒ ი მáƒáƒ—ხáƒáƒ•áƒœáƒ", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index e82ecaeba6bb79906d84fdb2e7a691d0c1275b6f..a542b35feec05667595ffb80bbd11385a6601195 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "앱 ìŠ¤í† ì–´ì—ì„œ 목ë¡ì„ ê°€ì ¸ì˜¬ 수 없습니다", +"Authentication error" => "ì¸ì¦ 오류", "Group already exists" => "ê·¸ë£¹ì´ ì´ë¯¸ 존재합니다.", "Unable to add group" => "ê·¸ë£¹ì„ ì¶”ê°€í• ìˆ˜ 없습니다.", "Could not enable app. " => "ì•±ì„ í™œì„±í™”í• ìˆ˜ 없습니다.", "Email saved" => "ì´ë©”ì¼ ì €ìž¥ë¨", "Invalid email" => "ìž˜ëª»ëœ ì´ë©”ì¼ ì£¼ì†Œ", "Unable to delete group" => "ê·¸ë£¹ì„ ì‚ì œí• ìˆ˜ 없습니다.", -"Authentication error" => "ì¸ì¦ 오류", "Unable to delete user" => "사용ìžë¥¼ ì‚ì œí• ìˆ˜ 없습니다.", "Language changed" => "언어가 변경ë˜ì—ˆìŠµë‹ˆë‹¤", "Invalid request" => "ìž˜ëª»ëœ ìš”ì²", @@ -42,6 +42,7 @@ "New password" => "새 암호", "show" => "ë³´ì´ê¸°", "Change password" => "암호 변경", +"Display Name" => "표시 ì´ë¦„", "Email" => "ì´ë©”ì¼", "Your email address" => "ì´ë©”ì¼ ì£¼ì†Œ", "Fill in an email address to enable password recovery" => "암호 찾기 ê¸°ëŠ¥ì„ ì‚¬ìš©í•˜ë ¤ë©´ ì´ë©”ì¼ ì£¼ì†Œë¥¼ ìž…ë ¥í•˜ì‹ì‹œì˜¤.", @@ -57,7 +58,6 @@ "Default Storage" => "기본 ì €ìž¥ì†Œ", "Unlimited" => "ë¬´ì œí•œ", "Other" => "기타", -"Display Name" => "표시 ì´ë¦„", "Group Admin" => "그룹 관리ìž", "Storage" => "ì €ìž¥ì†Œ", "change display name" => "표시 ì´ë¦„ 변경", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 1c8cff81b0f997a05f137f8a6485f3191a7b0a01..5ef88f27891e36c7099b080cbdea9e2089fa6057 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -1,8 +1,8 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Konnt Lescht net vum App Store lueden", +"Authentication error" => "Authentifikatioun's Fehler", "Email saved" => "E-mail gespäichert", "Invalid email" => "Ongülteg e-mail", -"Authentication error" => "Authentifikatioun's Fehler", "Language changed" => "Sprooch huet geännert", "Invalid request" => "Ongülteg Requête", "Disable" => "Ofschalten", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 335505b4539efa1f80ffe80c8538b98896531d15..e514e7f775896a922e7e5f7baa1a76fdb83eef7b 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -1,9 +1,9 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Neįmanoma įkelti sÄ…raÅ¡o iÅ¡ Programų Katalogo", +"Authentication error" => "Autentikacijos klaida", "Could not enable app. " => "Nepavyksta įjungti aplikacijos.", "Email saved" => "El. paÅ¡tas iÅ¡saugotas", "Invalid email" => "Netinkamas el. paÅ¡tas", -"Authentication error" => "Autentikacijos klaida", "Language changed" => "Kalba pakeista", "Invalid request" => "Klaidinga užklausa", "Disable" => "IÅ¡jungti", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index efbbc8f1abda88ea7ea562bfb8c2614a053bbc50..03977206f77bfbd4865c5e9c3a6ed77cbd0cb6c2 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -1,12 +1,13 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Nevar lejupielÄdÄ“t sarakstu no lietotņu veikala", +"Authentication error" => "AutentifikÄcijas kļūda", +"Unable to change display name" => "NevarÄ“ja mainÄ«t redzamo vÄrdu", "Group already exists" => "Grupa jau eksistÄ“", "Unable to add group" => "Nevar pievienot grupu", "Could not enable app. " => "NevarÄ“ja aktivÄ“t lietotni.", "Email saved" => "E-pasts tika saglabÄts", "Invalid email" => "NederÄ«gs epasts", "Unable to delete group" => "Nevar izdzÄ“st grupu", -"Authentication error" => "AutentifikÄcijas kļūda", "Unable to delete user" => "Nevar izdzÄ“st lietotÄju", "Language changed" => "Valoda tika nomainÄ«ta", "Invalid request" => "NederÄ«gs pieprasÄ«jums", @@ -48,6 +49,10 @@ "New password" => "Jauna parole", "show" => "parÄdÄ«t", "Change password" => "MainÄ«t paroli", +"Display Name" => "Redzamais vÄrds", +"Your display name was changed" => "JÅ«su redzamais vÄrds tika mainÄ«ts", +"Unable to change your display name" => "NevarÄ“ja mainÄ«t jÅ«su redzamo vÄrdu", +"Change display name" => "MainÄ«t redzamo vÄrdu", "Email" => "E-pasts", "Your email address" => "JÅ«su e-pasta adrese", "Fill in an email address to enable password recovery" => "Ievadiet epasta adresi, lai vÄ“lÄk varÄ“tu atgÅ«t paroli, ja bÅ«s nepiecieÅ¡amÄ«ba", @@ -63,7 +68,6 @@ "Default Storage" => "NoklusÄ“juma krÄtuve", "Unlimited" => "Neierobežota", "Other" => "Cits", -"Display Name" => "Redzamais vÄrds", "Group Admin" => "Grupas administrators", "Storage" => "KrÄtuve", "change display name" => "mainÄ«t redzamo vÄrdu", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 7705b870b3711bf9cb498455d6d0ec6343637a29..aba63bc0575739f07ed516af73f569729c82e321 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ðеможам да вчитам лиÑта од App Store", +"Authentication error" => "Грешка во автентикација", "Group already exists" => "Групата веќе поÑтои", "Unable to add group" => "Ðеможе да додадам група", "Could not enable app. " => "Ðеможе да овозможам апликација.", "Email saved" => "ЕлектронÑката пошта е Ñнимена", "Invalid email" => "ÐеиÑправна електронÑка пошта", "Unable to delete group" => "Ðеможе да избришам група", -"Authentication error" => "Грешка во автентикација", "Unable to delete user" => "Ðеможам да избришам кориÑник", "Language changed" => "Јазикот е Ñменет", "Invalid request" => "неправилно барање", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index 22114cfc2dda2faa6630221712bd8cc0a1c70f21..95c1d01e3b51f01f7c7fe1b0257212dc9624e619 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -1,7 +1,7 @@ <?php $TRANSLATIONS = array( +"Authentication error" => "Ralat pengesahan", "Email saved" => "Emel disimpan", "Invalid email" => "Emel tidak sah", -"Authentication error" => "Ralat pengesahan", "Language changed" => "Bahasa diubah", "Invalid request" => "Permintaan tidak sah", "Disable" => "Nyahaktif", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 0e627120bd6f3f277ea11f9890da7bc6fb404466..caf0a5518632155c001eb91d827957df8c691e59 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Lasting av liste fra App Store feilet.", +"Authentication error" => "Autentikasjonsfeil", "Group already exists" => "Gruppen finnes allerede", "Unable to add group" => "Kan ikke legge til gruppe", "Could not enable app. " => "Kan ikke aktivere app.", "Email saved" => "Epost lagret", "Invalid email" => "Ugyldig epost", "Unable to delete group" => "Kan ikke slette gruppe", -"Authentication error" => "Autentikasjonsfeil", "Unable to delete user" => "Kan ikke slette bruker", "Language changed" => "SprÃ¥k endret", "Invalid request" => "Ugyldig forespørsel", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 72c9108ef9c99df02e02cdaff49d3d64c121ffb2..6c256b9388db5f0878469a2d20c17ec7b45621f5 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -1,12 +1,13 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Kan de lijst niet van de App store laden", +"Authentication error" => "Authenticatie fout", +"Unable to change display name" => "Kon de weergavenaam niet wijzigen", "Group already exists" => "Groep bestaat al", "Unable to add group" => "Niet in staat om groep toe te voegen", "Could not enable app. " => "Kan de app. niet activeren", "Email saved" => "E-mail bewaard", "Invalid email" => "Ongeldige e-mail", "Unable to delete group" => "Niet in staat om groep te verwijderen", -"Authentication error" => "Authenticatie fout", "Unable to delete user" => "Niet in staat om gebruiker te verwijderen", "Language changed" => "Taal aangepast", "Invalid request" => "Ongeldig verzoek", @@ -18,6 +19,7 @@ "Disable" => "Uitschakelen", "Enable" => "Inschakelen", "Please wait...." => "Even geduld aub....", +"Updating...." => "Bijwerken....", "Error while updating app" => "Fout bij bijwerken app", "Error" => "Fout", "Updated" => "Bijgewerkt", @@ -47,6 +49,10 @@ "New password" => "Nieuw wachtwoord", "show" => "weergeven", "Change password" => "Wijzig wachtwoord", +"Display Name" => "Weergavenaam", +"Your display name was changed" => "Uw weergavenaam is gewijzigd", +"Unable to change your display name" => "Kon de weergavenaam niet wijzigen", +"Change display name" => "Wijzig weergavenaam", "Email" => "E-mailadres", "Your email address" => "Uw e-mailadres", "Fill in an email address to enable password recovery" => "Vul een e-mailadres in om wachtwoord reset uit te kunnen voeren", @@ -62,7 +68,6 @@ "Default Storage" => "Default opslag", "Unlimited" => "Ongelimiteerd", "Other" => "Andere", -"Display Name" => "Weergavenaam", "Group Admin" => "Groep beheerder", "Storage" => "Opslag", "change display name" => "wijzig weergavenaam", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 279939b3d3405faff9e3e70711387b587d4ad8b6..8faa2d02caaf5d3d76c10cde40d8405d255cb0b7 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -1,8 +1,8 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Klarer ikkje Ã¥ laste inn liste fra App Store", +"Authentication error" => "Feil i autentisering", "Email saved" => "E-postadresse lagra", "Invalid email" => "Ugyldig e-postadresse", -"Authentication error" => "Feil i autentisering", "Language changed" => "SprÃ¥k endra", "Invalid request" => "Ugyldig førespurnad", "Disable" => "SlÃ¥ av", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index c89fa2ae505e5e4e777087657c0708ad4f01554e..9accb3acbabdd83fb1d2bde1c4792c8b82f8ba54 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Pas possible de cargar la tièra dempuèi App Store", +"Authentication error" => "Error d'autentificacion", "Group already exists" => "Lo grop existÃs ja", "Unable to add group" => "Pas capable d'apondre un grop", "Could not enable app. " => "Pòt pas activar app. ", "Email saved" => "Corrièl enregistrat", "Invalid email" => "Corrièl incorrècte", "Unable to delete group" => "Pas capable d'escafar un grop", -"Authentication error" => "Error d'autentificacion", "Unable to delete user" => "Pas capable d'escafar un usancièr", "Language changed" => "Lengas cambiadas", "Invalid request" => "Demanda invalida", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 9c05904f259747a0beed43ce5dfa88bec24e9e39..a06b39e7bd2ba687463fd87f5aad84eabc9413ca 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Nie mogÄ™ zaÅ‚adować listy aplikacji", +"Authentication error" => "BÅ‚Ä…d uwierzytelniania", "Group already exists" => "Grupa już istnieje", "Unable to add group" => "Nie można dodać grupy", "Could not enable app. " => "Nie można wÅ‚Ä…czyć aplikacji.", "Email saved" => "Email zapisany", "Invalid email" => "Niepoprawny email", "Unable to delete group" => "Nie można usunąć grupy", -"Authentication error" => "BÅ‚Ä…d uwierzytelniania", "Unable to delete user" => "Nie można usunąć użytkownika", "Language changed" => "JÄ™zyk zmieniony", "Invalid request" => "NieprawidÅ‚owe żądanie", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index a9285d8c407a011ad6f104d6b77487f541b7d8dd..5a8281446db402115b330e082318c9ae177e2361 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Não foi possÃvel carregar lista da App Store", +"Authentication error" => "Erro de autenticação", "Group already exists" => "Grupo já existe", "Unable to add group" => "Não foi possÃvel adicionar grupo", "Could not enable app. " => "Não foi possÃvel habilitar aplicativo.", "Email saved" => "E-mail guardado", "Invalid email" => "E-mail inválido", "Unable to delete group" => "Não foi possÃvel remover grupo", -"Authentication error" => "Erro de autenticação", "Unable to delete user" => "Não foi possÃvel remover usuário", "Language changed" => "Idioma alterado", "Invalid request" => "Pedido inválido", @@ -41,6 +41,7 @@ "New password" => "Nova senha", "show" => "mostrar", "Change password" => "Alterar senha", +"Display Name" => "Nome de Exibição", "Email" => "E-mail", "Your email address" => "Seu endereço de e-mail", "Fill in an email address to enable password recovery" => "Preencha um endereço de e-mail para habilitar a recuperação de senha", @@ -56,7 +57,6 @@ "Default Storage" => "Armazenamento Padrão", "Unlimited" => "Ilimitado", "Other" => "Outro", -"Display Name" => "Nome de Exibição", "Group Admin" => "Grupo Administrativo", "Storage" => "Armazenamento", "Default" => "Padrão", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 243dbeb856207e8016d9ce5915f27433e7e033c7..03982fd5e8eec005bbc796370d0c426deffba228 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Incapaz de carregar a lista da App Store", +"Authentication error" => "Erro de autenticação", "Group already exists" => "O grupo já existe", "Unable to add group" => "ImpossÃvel acrescentar o grupo", "Could not enable app. " => "Não foi possÃvel activar a app.", "Email saved" => "Email guardado", "Invalid email" => "Email inválido", "Unable to delete group" => "ImpossÃvel apagar grupo", -"Authentication error" => "Erro de autenticação", "Unable to delete user" => "ImpossÃvel apagar utilizador", "Language changed" => "Idioma alterado", "Invalid request" => "Pedido inválido", @@ -48,6 +48,7 @@ "New password" => "Nova palavra-chave", "show" => "mostrar", "Change password" => "Alterar palavra-chave", +"Display Name" => "Nome público", "Email" => "endereço de email", "Your email address" => "O seu endereço de email", "Fill in an email address to enable password recovery" => "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave", @@ -63,7 +64,6 @@ "Default Storage" => "Armazenamento Padrão", "Unlimited" => "Ilimitado", "Other" => "Outro", -"Display Name" => "Nome público", "Group Admin" => "Grupo Administrador", "Storage" => "Armazenamento", "change display name" => "modificar nome exibido", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index d244bad31ba99344f985d1b706d588c429dc30a7..dcc55a843dc93673e9d030996726c10e0e6d2d45 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Imposibil de încărcat lista din App Store", +"Authentication error" => "Eroare de autentificare", "Group already exists" => "Grupul există deja", "Unable to add group" => "Nu s-a putut adăuga grupul", "Could not enable app. " => "Nu s-a putut activa aplicaÈ›ia.", "Email saved" => "E-mail salvat", "Invalid email" => "E-mail nevalid", "Unable to delete group" => "Nu s-a putut È™terge grupul", -"Authentication error" => "Eroare de autentificare", "Unable to delete user" => "Nu s-a putut È™terge utilizatorul", "Language changed" => "Limba a fost schimbată", "Invalid request" => "Cerere eronată", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index c364be95e51c3fc87d21a10d696f1bd2204e16a0..4c01951c5080e0c6b7bf84bc3b329fb218b9e337 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -1,21 +1,28 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Загрузка из App Store запрещена", +"Authentication error" => "Ошибка авторизации", +"Unable to change display name" => "Ðевозможно изменить отображаемое имÑ", "Group already exists" => "Группа уже ÑущеÑтвует", "Unable to add group" => "Ðевозможно добавить группу", "Could not enable app. " => "Ðе удалоÑÑŒ включить приложение.", "Email saved" => "Email Ñохранен", "Invalid email" => "Ðеправильный Email", "Unable to delete group" => "Ðевозможно удалить группу", -"Authentication error" => "Ошибка авторизации", "Unable to delete user" => "Ðевозможно удалить пользователÑ", "Language changed" => "Язык изменён", "Invalid request" => "Ðеверный запроÑ", "Admins can't remove themself from the admin group" => "ÐдминиÑтратор не может удалить Ñам ÑÐµÐ±Ñ Ð¸Ð· группы admin", "Unable to add user to group %s" => "Ðевозможно добавить Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð² группу %s", "Unable to remove user from group %s" => "Ðевозможно удалить Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸Ð· группы %s", +"Couldn't update app." => "Ðевозможно обновить приложение", +"Update to {appversion}" => "Обновить до {верÑÐ¸Ñ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ}", "Disable" => "Выключить", "Enable" => "Включить", +"Please wait...." => "Повремени...", +"Updating...." => "Обновление...", +"Error while updating app" => "Ошибка в процеÑÑе Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ", "Error" => "Ошибка", +"Updated" => "Обновлено", "Saving..." => "Сохранение...", "__language_name__" => "РуÑÑкий ", "Add your App" => "Добавить приложение", @@ -42,6 +49,10 @@ "New password" => "Ðовый пароль", "show" => "показать", "Change password" => "Сменить пароль", +"Display Name" => "Отображаемое имÑ", +"Your display name was changed" => "Ваше отображаемое Ð¸Ð¼Ñ Ð±Ñ‹Ð»Ð¾ изменено", +"Unable to change your display name" => "Ðевозможно изменить Ваше отображаемое имÑ", +"Change display name" => "Изменить отображаемое имÑ", "Email" => "e-mail", "Your email address" => "Ваш Ð°Ð´Ñ€ÐµÑ Ñлектронной почты", "Fill in an email address to enable password recovery" => "Введите Ð°Ð´Ñ€ÐµÑ Ñлектронной почты, чтобы поÑвилаÑÑŒ возможноÑÑ‚ÑŒ воÑÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ", @@ -51,6 +62,7 @@ "Use this address to connect to your ownCloud in your file manager" => "ИÑпользуйте Ñтот URL Ð´Ð»Ñ Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¾Ð³Ð¾ менеджера к Вашему хранилищу", "Version" => "ВерÑиÑ", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "РазрабатываетÑÑ <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ÑообщеÑтвом ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">иÑходный код</a> доÑтупен под лицензией <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", +"Login Name" => "Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ", "Groups" => "Группы", "Create" => "Создать", "Default Storage" => "Хранилище по-умолчанию", @@ -58,6 +70,8 @@ "Other" => "Другое", "Group Admin" => "Группа ÐдминиÑтраторы", "Storage" => "Хранилище", +"change display name" => "изменить отображаемое имÑ", +"set new password" => "уÑтановить новый пароль", "Default" => "По-умолчанию", "Delete" => "Удалить" ); diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 8d9ecf7e55ed5fd1682fb4e0e4c242fe3ed58c01..7dde545e2ed63c555dcc94818cd0bf5eafed036b 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ðевозможно загрузить ÑпиÑок из App Store", +"Authentication error" => "Ошибка авторизации", "Group already exists" => "Группа уже ÑущеÑтвует", "Unable to add group" => "Ðевозможно добавить группу", "Could not enable app. " => "Ðе удалоÑÑŒ запуÑтить приложение", "Email saved" => "Email Ñохранен", "Invalid email" => "Ðеверный email", "Unable to delete group" => "Ðевозможно удалить группу", -"Authentication error" => "Ошибка авторизации", "Unable to delete user" => "Ðевозможно удалить пользователÑ", "Language changed" => "Язык изменен", "Invalid request" => "Ðеверный запроÑ", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 4dbe31b991097daa5b89ce8a3b14580cf521bedb..b2613290f91e922cc1c4f772320d984b28ffd62d 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -1,11 +1,11 @@ <?php $TRANSLATIONS = array( +"Authentication error" => "à·ƒà¶à·Šâ€à¶ºà·à¶´à¶± දà·à·‚යක්", "Group already exists" => "කණ්ඩà·à¶ºà¶¸ දà·à¶±à¶§à¶¸à¶à·Š à¶à·’බේ", "Unable to add group" => "කà·à¶«à¶©à¶ºà¶šà·Š එක් කළ නොහà·à¶šà·’ විය", "Could not enable app. " => "යෙදුම සක්â€à¶»à·“ය කළ නොහà·à¶šà·’ විය.", "Email saved" => "වි-à¶à·à¶´à·‘ල සුරකින ලදී", "Invalid email" => "අවලංගු වි-à¶à·à¶´à·‘ල", "Unable to delete group" => "කණ්ඩà·à¶ºà¶¸ මà·à¶šà·“මට නොහà·à¶š", -"Authentication error" => "à·ƒà¶à·Šâ€à¶ºà·à¶´à¶± දà·à·‚යක්", "Unable to delete user" => "පරිà·à·“ලකය෠මà·à¶šà·“මට නොහà·à¶š", "Language changed" => "භà·à·‚à·à·€ à·à·€à¶±à·ƒà·Š කිරීම", "Invalid request" => "අවලංගු අයදුම", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 6148f1476a2609f7a122ab3ff461c5f8aa68e730..162e4d3d01416422d0034adb975515196d08c5cd 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Nie je možné nahraÅ¥ zoznam z App Store", +"Authentication error" => "Chyba pri autentifikácii", "Group already exists" => "Skupina už existuje", "Unable to add group" => "Nie je možné pridaÅ¥ skupinu", "Could not enable app. " => "Nie je možné zapnúť aplikáciu.", "Email saved" => "Email uložený", "Invalid email" => "Neplatný email", "Unable to delete group" => "Nie je možné odstrániÅ¥ skupinu", -"Authentication error" => "Chyba pri autentifikácii", "Unable to delete user" => "Nie je možné odstrániÅ¥ použÃvateľa", "Language changed" => "Jazyk zmenený", "Invalid request" => "Neplatná požiadavka", @@ -48,6 +48,7 @@ "New password" => "Nové heslo", "show" => "zobraziÅ¥", "Change password" => "ZmeniÅ¥ heslo", +"Display Name" => "Zobrazované meno", "Email" => "Email", "Your email address" => "VaÅ¡a emailová adresa", "Fill in an email address to enable password recovery" => "Vyplňte emailovú adresu pre aktivovanie obnovy hesla", @@ -63,7 +64,6 @@ "Default Storage" => "Predvolené úložisko", "Unlimited" => "Nelimitované", "Other" => "Iné", -"Display Name" => "Zobrazované meno", "Group Admin" => "Správca skupiny", "Storage" => "Úložisko", "change display name" => "zmeniÅ¥ zobrazované meno", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 1524f3c33daf89eec9e1ad171075f140e8740abd..8f4fb9435e813f1e3db099b70c6c2473e965129e 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ni mogoÄe naložiti seznama iz App Store", +"Authentication error" => "Napaka overitve", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Ni mogoÄe dodati skupine", "Could not enable app. " => "Programa ni mogoÄe omogoÄiti.", "Email saved" => "Elektronski naslov je shranjen", "Invalid email" => "Neveljaven elektronski naslov", "Unable to delete group" => "Ni mogoÄe izbrisati skupine", -"Authentication error" => "Napaka overitve", "Unable to delete user" => "Ni mogoÄe izbrisati uporabnika", "Language changed" => "Jezik je bil spremenjen", "Invalid request" => "Neveljavna zahteva", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index e9c12e2ea0acadfc635dd0219b29c258b4ac38c1..1b12a0178ddd4755da8a4061116af58e20b1dddd 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Грешка приликом учитавања ÑпиÑка из Складишта Програма", +"Authentication error" => "Грешка при аутентификацији", "Group already exists" => "Група већ поÑтоји", "Unable to add group" => "Ðе могу да додам групу", "Could not enable app. " => "Ðе могу да укључим програм", "Email saved" => "Е-порука Ñачувана", "Invalid email" => "ÐеиÑправна е-адреÑа", "Unable to delete group" => "Ðе могу да уклоним групу", -"Authentication error" => "Грешка при аутентификацији", "Unable to delete user" => "Ðе могу да уклоним кориÑника", "Language changed" => "Језик је промењен", "Invalid request" => "ÐеиÑправан захтев", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 239948a0f409966ed3433875f99ce3f2ad174cbe..fb8c7854e9ba4cf1c852e3f480c5c61069891c2c 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Kan inte ladda listan frÃ¥n App Store", +"Authentication error" => "Autentiseringsfel", "Group already exists" => "Gruppen finns redan", "Unable to add group" => "Kan inte lägga till grupp", "Could not enable app. " => "Kunde inte aktivera appen.", "Email saved" => "E-post sparad", "Invalid email" => "Ogiltig e-post", "Unable to delete group" => "Kan inte radera grupp", -"Authentication error" => "Autentiseringsfel", "Unable to delete user" => "Kan inte radera användare", "Language changed" => "SprÃ¥k ändrades", "Invalid request" => "Ogiltig begäran", @@ -48,6 +48,7 @@ "New password" => "Nytt lösenord", "show" => "visa", "Change password" => "Ändra lösenord", +"Display Name" => "Visat namn", "Email" => "E-post", "Your email address" => "Din e-postadress", "Fill in an email address to enable password recovery" => "Fyll i en e-postadress för att aktivera Ã¥terställning av lösenord", @@ -63,7 +64,6 @@ "Default Storage" => "Förvald lagring", "Unlimited" => "Obegränsad", "Other" => "Annat", -"Display Name" => "Visat namn", "Group Admin" => "Gruppadministratör", "Storage" => "Lagring", "change display name" => "ändra visat namn", diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index e383a297c4f62de04b35bfea47529a01f7774f1b..5e94df0dfb270a59fc721da1c9e2728599244192 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "செயலி சேமிபà¯à®ªà®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯ படà¯à®Ÿà®¿à®¯à®²à¯ˆ à®à®±à¯à®±à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯à®³à¯à®³à®¤à¯", +"Authentication error" => "அதà¯à®¤à®¾à®Ÿà¯à®šà®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à®¿à®²à¯ வழà¯", "Group already exists" => "கà¯à®´à¯ à®à®±à¯à®•à®©à®µà¯‡ உளà¯à®³à®¤à¯", "Unable to add group" => "கà¯à®´à¯à®µà¯ˆ சேரà¯à®•à¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯", "Could not enable app. " => "செயலியை இயலà¯à®®à¯ˆà®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤ à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯", "Email saved" => "மினà¯à®©à®žà¯à®šà®²à¯ சேமிகà¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯", "Invalid email" => "செலà¯à®²à¯à®ªà®Ÿà®¿à®¯à®±à¯à®± மினà¯à®©à®žà¯à®šà®²à¯", "Unable to delete group" => "கà¯à®´à¯à®µà¯ˆ நீகà¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯", -"Authentication error" => "அதà¯à®¤à®¾à®Ÿà¯à®šà®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à®¿à®²à¯ வழà¯", "Unable to delete user" => "பயனாளரை நீகà¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯", "Language changed" => "மொழி மாறà¯à®±à®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯", "Invalid request" => "செலà¯à®²à¯à®ªà®Ÿà®¿à®¯à®±à¯à®± வேணà¯à®Ÿà¯à®•à¯‹à®³à¯", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 9350b78297b8638d9e2a0d95e41c5d17ce950175..309dbc2657cbbfd7d54925826402240c089ebdeb 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "ไม่สามารถโหลดรายà¸à¸²à¸£à¸ˆà¸²à¸ App Store ได้", +"Authentication error" => "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดเà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸ªà¸´à¸—ธิ์à¸à¸²à¸£à¹€à¸‚้าใช้งาน", "Group already exists" => "มีà¸à¸¥à¸¸à¹ˆà¸¡à¸”ังà¸à¸¥à¹ˆà¸²à¸§à¸à¸¢à¸¹à¹ˆà¹ƒà¸™à¸£à¸°à¸šà¸šà¸à¸¢à¸¹à¹ˆà¹à¸¥à¹‰à¸§", "Unable to add group" => "ไม่สามารถเพิ่มà¸à¸¥à¸¸à¹ˆà¸¡à¹„ด้", "Could not enable app. " => "ไม่สามารถเปิดใช้งานà¹à¸à¸›à¹„ด้", "Email saved" => "à¸à¸µà¹€à¸¡à¸¥à¸–ูà¸à¸šà¸±à¸™à¸—ึà¸à¹à¸¥à¹‰à¸§", "Invalid email" => "à¸à¸µà¹€à¸¡à¸¥à¹„ม่ถูà¸à¸•à¹‰à¸à¸‡", "Unable to delete group" => "ไม่สามารถลบà¸à¸¥à¸¸à¹ˆà¸¡à¹„ด้", -"Authentication error" => "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดเà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸ªà¸´à¸—ธิ์à¸à¸²à¸£à¹€à¸‚้าใช้งาน", "Unable to delete user" => "ไม่สามารถลบผู้ใช้งานได้", "Language changed" => "เปลี่ยนภาษาเรียบร้à¸à¸¢à¹à¸¥à¹‰à¸§", "Invalid request" => "คำร้à¸à¸‡à¸‚à¸à¹„ม่ถูà¸à¸•à¹‰à¸à¸‡", @@ -48,6 +48,7 @@ "New password" => "รหัสผ่านใหม่", "show" => "à¹à¸ªà¸”ง", "Change password" => "เปลี่ยนรหัสผ่าน", +"Display Name" => "ชื่à¸à¸—ี่ต้à¸à¸‡à¸à¸²à¸£à¹à¸ªà¸”ง", "Email" => "à¸à¸µà¹€à¸¡à¸¥à¹Œ", "Your email address" => "ที่à¸à¸¢à¸¹à¹ˆà¸à¸µà¹€à¸¡à¸¥à¹Œà¸‚à¸à¸‡à¸„ุณ", "Fill in an email address to enable password recovery" => "à¸à¸£à¸à¸à¸—ี่à¸à¸¢à¸¹à¹ˆà¸à¸µà¹€à¸¡à¸¥à¹Œà¸‚à¸à¸‡à¸„ุณเพื่à¸à¹€à¸›à¸´à¸”ให้มีà¸à¸²à¸£à¸à¸¹à¹‰à¸„ืนรหัสผ่านได้", @@ -63,7 +64,6 @@ "Default Storage" => "พื้นที่จำà¸à¸±à¸”ข้à¸à¸¡à¸¹à¸¥à¹€à¸£à¸´à¹ˆà¸¡à¸•à¹‰à¸™", "Unlimited" => "ไม่จำà¸à¸±à¸”จำนวน", "Other" => "à¸à¸·à¹ˆà¸™à¹†", -"Display Name" => "ชื่à¸à¸—ี่ต้à¸à¸‡à¸à¸²à¸£à¹à¸ªà¸”ง", "Group Admin" => "ผู้ดูà¹à¸¥à¸à¸¥à¸¸à¹ˆà¸¡", "Storage" => "พื้นที่จัดเà¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥", "change display name" => "เปลี่ยนชื่à¸à¸—ี่ต้à¸à¸‡à¸à¸²à¸£à¹ƒà¸«à¹‰à¹à¸ªà¸”ง", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 89c8cf2829ecb4f09655ab1f07f10a0f4b0b86c6..db55491612e2dacaeccda51f7cd2704d127419b5 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "App Store'dan liste yüklenemiyor", +"Authentication error" => "EÅŸleÅŸme hata", "Group already exists" => "Grup zaten mevcut", "Unable to add group" => "Gruba eklenemiyor", "Could not enable app. " => "Uygulama devreye alınamadı", "Email saved" => "Eposta kaydedildi", "Invalid email" => "Geçersiz eposta", "Unable to delete group" => "Grup silinemiyor", -"Authentication error" => "EÅŸleÅŸme hata", "Unable to delete user" => "Kullanıcı silinemiyor", "Language changed" => "Dil deÄŸiÅŸtirildi", "Invalid request" => "Geçersiz istek", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 035dbec3910fdf5b76a41b02c27c8d89dc80eaef..7186b2684eb59e0598acf5aa634274e760cb1f39 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -1,21 +1,28 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ðе вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸ ÑпиÑок з App Store", +"Authentication error" => "Помилка автентифікації", +"Unable to change display name" => "Ðе вдалоÑÑ Ð·Ð¼Ñ–Ð½Ð¸Ñ‚Ð¸ зображене ім'Ñ", "Group already exists" => "Група вже Ñ–Ñнує", "Unable to add group" => "Ðе вдалоÑÑ Ð´Ð¾Ð´Ð°Ñ‚Ð¸ групу", "Could not enable app. " => "Ðе вдалоÑÑ Ð°ÐºÑ‚Ð¸Ð²ÑƒÐ²Ð°Ñ‚Ð¸ програму. ", "Email saved" => "ÐдреÑу збережено", "Invalid email" => "Ðевірна адреÑа", "Unable to delete group" => "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ групу", -"Authentication error" => "Помилка автентифікації", "Unable to delete user" => "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ кориÑтувача", "Language changed" => "Мова змінена", "Invalid request" => "Помилковий запит", "Admins can't remove themself from the admin group" => "ÐдмініÑтратор не може видалити Ñебе з групи адмінів", "Unable to add user to group %s" => "Ðе вдалоÑÑ Ð´Ð¾Ð´Ð°Ñ‚Ð¸ кориÑтувача у групу %s", "Unable to remove user from group %s" => "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ кориÑтувача із групи %s", +"Couldn't update app." => "Ðе вдалоÑÑ Ð¾Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ програму. ", +"Update to {appversion}" => "Оновити до {appversion}", "Disable" => "Вимкнути", "Enable" => "Включити", +"Please wait...." => "Зачекайте, будь лаÑка...", +"Updating...." => "ОновлюєтьÑÑ...", +"Error while updating app" => "Помилка при оновленні програми", "Error" => "Помилка", +"Updated" => "Оновлено", "Saving..." => "Зберігаю...", "__language_name__" => "__language_name__", "Add your App" => "Додати Ñвою програму", @@ -42,6 +49,10 @@ "New password" => "Ðовий пароль", "show" => "показати", "Change password" => "Змінити пароль", +"Display Name" => "Показати Ім'Ñ", +"Your display name was changed" => "Ваше ім'Ñ Ð±ÑƒÐ»Ð¾ змінене", +"Unable to change your display name" => "Ðеможливо змінити ваше зображене ім'Ñ", +"Change display name" => "Змінити зображене ім'Ñ", "Email" => "Ел.пошта", "Your email address" => "Ваша адреÑа електронної пошти", "Fill in an email address to enable password recovery" => "Введіть адреÑу електронної пошти Ð´Ð»Ñ Ð²Ñ–Ð´Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»ÑŽ", @@ -51,6 +62,7 @@ "Use this address to connect to your ownCloud in your file manager" => "ВикориÑтовуйте цю адреÑу Ð´Ð»Ñ Ð¿Ñ–Ð´'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð´Ð¾ вашого ownCloud у вашому файловому менеджері", "Version" => "ВерÑÑ–Ñ", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Розроблено <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud громадою</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">вихідний код</a> має ліцензію <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", +"Login Name" => "Ім'Ñ Ð›Ð¾Ð³Ñ–Ð½Ñƒ", "Groups" => "Групи", "Create" => "Створити", "Default Storage" => "Ñховище за замовчуваннÑм", @@ -58,6 +70,8 @@ "Other" => "Інше", "Group Admin" => "ÐдмініÑтратор групи", "Storage" => "Сховище", +"change display name" => "змінити зображене ім'Ñ", +"set new password" => "вÑтановити новий пароль", "Default" => "За замовчуваннÑм", "Delete" => "Видалити" ); diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 3a133460a38524da2224a114e2539a450d31bfe3..a7682e7ed0eb44d4a8455be734e4721fea4342d0 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Không thể tải danh sách ứng dụng từ App Store", +"Authentication error" => "Lá»—i xác thá»±c", "Group already exists" => "Nhóm đã tồn tại", "Unable to add group" => "Không thể thêm nhóm", "Could not enable app. " => "không thể kÃch hoạt ứng dụng.", "Email saved" => "LÆ°u email", "Invalid email" => "Email không hợp lệ", "Unable to delete group" => "Không thể xóa nhóm", -"Authentication error" => "Lá»—i xác thá»±c", "Unable to delete user" => "Không thể xóa ngÆ°á»i dùng", "Language changed" => "Ngôn ngữ đã được thay đổi", "Invalid request" => "Yêu cầu không hợp lệ", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 6a9575185645d6155255eb126de35cd5aec6f743..c7d73ae2ded89b5a4036c92bd829669c9e40b606 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "ä¸èƒ½ä»ŽApp Store ä¸åŠ 载列表", +"Authentication error" => "认è¯é”™è¯¯", "Group already exists" => "群组已å˜åœ¨", "Unable to add group" => "æœªèƒ½æ·»åŠ ç¾¤ç»„", "Could not enable app. " => "未能å¯ç”¨åº”用", "Email saved" => "Email ä¿å˜äº†", "Invalid email" => "éžæ³•Email", "Unable to delete group" => "æœªèƒ½åˆ é™¤ç¾¤ç»„", -"Authentication error" => "认è¯é”™è¯¯", "Unable to delete user" => "æœªèƒ½åˆ é™¤ç”¨æˆ·", "Language changed" => "è¯è¨€æ”¹å˜äº†", "Invalid request" => "éžæ³•è¯·æ±‚", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 48f890fb0c9710c039bdd6824d271a8ff911ee29..40c571a876319fca345a411f901340cd228cd0e4 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "æ— æ³•ä»Žåº”ç”¨å•†åº—è½½å…¥åˆ—è¡¨", +"Authentication error" => "认è¯é”™è¯¯", "Group already exists" => "å·²å˜åœ¨è¯¥ç»„", "Unable to add group" => "æ— æ³•æ·»åŠ ç»„", "Could not enable app. " => "æ— æ³•å¼€å¯App", "Email saved" => "电å邮件已ä¿å˜", "Invalid email" => "æ— æ•ˆçš„ç”µå邮件", "Unable to delete group" => "æ— æ³•åˆ é™¤ç»„", -"Authentication error" => "认è¯é”™è¯¯", "Unable to delete user" => "æ— æ³•åˆ é™¤ç”¨æˆ·", "Language changed" => "è¯è¨€å·²ä¿®æ”¹", "Invalid request" => "éžæ³•è¯·æ±‚", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index b540549524da89791e9c4e1d3e7f09b8fe2db167..ecff21604f3591fa9ae6681f1a90ea730d66f6de 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "無法從 App Store 讀å–清單", +"Authentication error" => "èªè‰éŒ¯èª¤", "Group already exists" => "群組已å˜åœ¨", "Unable to add group" => "ç¾¤çµ„å¢žåŠ å¤±æ•—", "Could not enable app. " => "未能啟動æ¤app", "Email saved" => "Email已儲å˜", "Invalid email" => "無效的email", "Unable to delete group" => "群組刪除錯誤", -"Authentication error" => "èªè‰éŒ¯èª¤", "Unable to delete user" => "使用者刪除錯誤", "Language changed" => "語言已變更", "Invalid request" => "無效請求", @@ -48,6 +48,7 @@ "New password" => "新密碼", "show" => "顯示", "Change password" => "變更密碼", +"Display Name" => "顯示å稱", "Email" => "é›»å郵件", "Your email address" => "ä½ çš„é›»å郵件信箱", "Fill in an email address to enable password recovery" => "請填入電å郵件信箱以便回復密碼", @@ -63,7 +64,6 @@ "Default Storage" => "é è¨å„²å˜å€", "Unlimited" => "ç„¡é™åˆ¶", "Other" => "其他", -"Display Name" => "顯示å稱", "Group Admin" => "群組 管ç†å“¡", "Storage" => "儲å˜å€", "change display name" => "修改顯示å稱", diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 0097489743f6230bb1abea6d54c8490f4e933ea9..17be3396930bd0e0051fd66d7c22ff5d07d934c5 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -22,6 +22,35 @@ if (!$_['htaccessworking']) { <?php } +// is WebDAV working ? +if (!$_['isWebDavWorking']) { + ?> +<fieldset class="personalblock"> + <legend><strong><?php echo $l->t('Setup Warning');?></strong></legend> + + <span class="securitywarning"> + <?php echo $l->t('Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.'); ?> + <?php echo $l->t('Please double check the <a href=\'%s\'>installation guides</a>.', 'http://doc.owncloud.org/server/5.0/admin_manual/installation.html'); ?> + </span> + +</fieldset> +<?php +} + +// if module fileinfo available? +if (!$_['has_fileinfo']) { + ?> +<fieldset class="personalblock"> + <legend><strong><?php echo $l->t('Module \'fileinfo\' missing');?></strong></legend> + + <span class="connectionwarning"> + <?php echo $l->t('The PHP module \'fileinfo\' is missing. We strongly recommend to enable this module to get best results with mime-type detection.'); ?> + </span> + +</fieldset> +<?php +} + // is locale working ? if (!$_['islocaleworking']) { ?> @@ -29,7 +58,7 @@ if (!$_['islocaleworking']) { <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.'); ?> + <?php echo $l->t('This ownCloud server can\'t set system locale to "en_US.UTF-8"/"en_US.UTF8". 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/en_US.UTF8.'); ?> </span> </fieldset> diff --git a/settings/templates/help.php b/settings/templates/help.php index 7383fdcf56a069d95a208a7e3de6f934da97937b..315cbfdb9a2940f83fd3167a388b3a09cf9cf5f9 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -10,5 +10,6 @@ <?php } ?> <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> \ No newline at end of file +<div class="help-includes"> + <iframe src="<?php echo($_['url']); ?>" class="help-iframe">abc</iframe> +</div> diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php index 781c0f92c9262111c7db57ddf310b42e23f0051f..c74a16f509f5ae73fe85a7a77aa41b299c8ec47e 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -146,10 +146,19 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $localFolder = $this->instance->getLocalFolder('/folder'); $this->assertTrue(is_dir($localFolder)); - $this->assertTrue(file_exists($localFolder . '/lorem.txt')); - $this->assertEquals(file_get_contents($localFolder . '/lorem.txt'), file_get_contents($textFile)); - $this->assertEquals(file_get_contents($localFolder . '/bar.txt'), 'asd'); - $this->assertEquals(file_get_contents($localFolder . '/recursive/file.txt'), 'foo'); + + // test below require to use instance->getLocalFile because the physical storage might be different + $localFile = $this->instance->getLocalFile('/folder/lorem.txt'); + $this->assertTrue(file_exists($localFile)); + $this->assertEquals(file_get_contents($localFile), file_get_contents($textFile)); + + $localFile = $this->instance->getLocalFile('/folder/bar.txt'); + $this->assertTrue(file_exists($localFile)); + $this->assertEquals(file_get_contents($localFile), 'asd'); + + $localFile = $this->instance->getLocalFile('/folder/recursive/file.txt'); + $this->assertTrue(file_exists($localFile)); + $this->assertEquals(file_get_contents($localFile), 'foo'); } public function testStat() { diff --git a/tests/lib/public/contacts.php b/tests/lib/public/contacts.php index 23994667a26a50622345a76747ae246acd626b1b..ce5d762226b540c0a7ba06d4536886dea40f3a68 100644 --- a/tests/lib/public/contacts.php +++ b/tests/lib/public/contacts.php @@ -39,7 +39,7 @@ class Test_Contacts extends PHPUnit_Framework_TestCase public function testEnabledAfterRegister() { // create mock for the addressbook - $stub = $this->getMock("SimpleAddressBook", array('getKey')); + $stub = $this->getMockForAbstractClass("OCP\IAddressBook", array('getKey')); // we expect getKey to be called twice: // first time on register @@ -65,7 +65,7 @@ class Test_Contacts extends PHPUnit_Framework_TestCase public function testAddressBookEnumeration() { // create mock for the addressbook - $stub = $this->getMock("SimpleAddressBook", array('getKey', 'getDisplayName')); + $stub = $this->getMockForAbstractClass("OCP\IAddressBook", array('getKey', 'getDisplayName')); // setup return for method calls $stub->expects($this->any()) @@ -85,8 +85,8 @@ class Test_Contacts extends PHPUnit_Framework_TestCase public function testSearchInAddressBook() { // create mock for the addressbook - $stub1 = $this->getMock("SimpleAddressBook1", array('getKey', 'getDisplayName', 'search')); - $stub2 = $this->getMock("SimpleAddressBook2", array('getKey', 'getDisplayName', 'search')); + $stub1 = $this->getMockForAbstractClass("OCP\IAddressBook", array('getKey', 'getDisplayName', 'search')); + $stub2 = $this->getMockForAbstractClass("OCP\IAddressBook", array('getKey', 'getDisplayName', 'search')); $searchResult1 = array( array('id' => 0, 'FN' => 'Frank Karlitschek', 'EMAIL' => 'a@b.c', 'GEO' => '37.386013;-122.082932'),