diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 0920bf6210..2c1be428e8 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -110,30 +110,35 @@ if (strpos($dir, '..') === false) { || (isset($_POST['resolution']) && $_POST['resolution']==='replace') ) { // upload and overwrite file - if (is_uploaded_file($files['tmp_name'][$i]) and \OC\Files\Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { - - // updated max file size after upload - $storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir); - - $meta = \OC\Files\Filesystem::getFileInfo($target); - if ($meta === false) { - $error = $l->t('Upload failed. Could not get file info.'); + try + { + if (is_uploaded_file($files['tmp_name'][$i]) and \OC\Files\Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { + + // updated max file size after upload + $storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir); + + $meta = \OC\Files\Filesystem::getFileInfo($target); + if ($meta === false) { + $error = $l->t('Upload failed. Could not get file info.'); + } else { + $result[] = array('status' => 'success', + 'mime' => $meta['mimetype'], + 'mtime' => $meta['mtime'], + 'size' => $meta['size'], + 'id' => $meta['fileid'], + 'name' => basename($target), + 'originalname' => $files['tmp_name'][$i], + 'uploadMaxFilesize' => $maxUploadFileSize, + 'maxHumanFilesize' => $maxHumanFileSize, + 'permissions' => $meta['permissions'] & OCP\PERMISSION_READ + ); + } + } else { - $result[] = array('status' => 'success', - 'mime' => $meta['mimetype'], - 'mtime' => $meta['mtime'], - 'size' => $meta['size'], - 'id' => $meta['fileid'], - 'name' => basename($target), - 'originalname' => $files['tmp_name'][$i], - 'uploadMaxFilesize' => $maxUploadFileSize, - 'maxHumanFilesize' => $maxHumanFileSize, - 'permissions' => $meta['permissions'], - ); + $error = $l->t('Upload failed. Could not find uploaded file'); } - - } else { - $error = $l->t('Upload failed. Could not find uploaded file'); + } catch(Exception $ex) { + $error = $ex->getMessage(); } } else { @@ -151,7 +156,7 @@ if (strpos($dir, '..') === false) { 'originalname' => $files['tmp_name'][$i], 'uploadMaxFilesize' => $maxUploadFileSize, 'maxHumanFilesize' => $maxHumanFileSize, - 'permissions' => $meta['permissions'], + 'permissions' => $meta['permissions'] & OCP\PERMISSION_READ ); } } @@ -164,5 +169,5 @@ if ($error === false) { OCP\JSON::encodedPrint($result); exit(); } else { - OCP\JSON::error(array('data' => array_merge(array('message' => $error), $storageStats))); + OCP\JSON::error(array(array('data' => array_merge(array('message' => $error), $storageStats)))); } diff --git a/apps/files/css/files.css b/apps/files/css/files.css index cbf34279f5..ac2a243f2b 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -105,8 +105,6 @@ table th#headerDate, table td.date { box-sizing: border-box; position: relative; min-width: 11em; - display: block; - height: 51px; } /* Multiselect bar */ @@ -161,8 +159,6 @@ table td.filename .nametext, .uploadtext, .modified { float:left; padding:.3em 0 } .modified { position: relative; - top: 11px; - left: 5px; } /* TODO fix usability bug (accidental file/folder selection) */ @@ -178,6 +174,9 @@ table td.filename .nametext { table td.filename .uploadtext { font-weight:normal; margin-left:.5em; } table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } +.ie8 input[type="checkbox"]{ + padding: 0; +} /* File checkboxes */ #fileList tr td.filename>input[type="checkbox"]:first-child { @@ -240,22 +239,12 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } top: 14px; right: 0; } -#fileList tr:hover .fileactions { /* background to distinguish when overlaying with file names */ - background-color: rgba(240,240,240,0.898); - box-shadow: -5px 0 7px rgba(240,240,240,0.898); -} -#fileList tr.selected:hover .fileactions, #fileList tr.mouseOver .fileactions { /* slightly darker color for selected rows */ - background-color: rgba(230,230,230,.9); - box-shadow: -5px 0 7px rgba(230,230,230,.9); -} #fileList img.move2trash { display:inline; margin:-.5em 0; padding:1em .5em 1em .5em !important; float:right; } #fileList a.action.delete { position: absolute; right: 0; - top: 0; - margin: 0; - padding: 15px 14px 19px !important; + padding: 9px 14px 19px !important; } a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index f1ef485fc3..c03e9037ce 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -345,7 +345,7 @@ $(document).ready(function() { } else if (result[0].status !== 'success') { //delete data.jqXHR; data.textStatus = 'servererror'; - data.errorThrown = result.data.message; // error message has been translated on server + data.errorThrown = result[0].data.message; // error message has been translated on server var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); fu._trigger('fail', e, data); } @@ -523,8 +523,10 @@ $(document).ready(function() { function(result){ if (result.status == 'success') { var date=new Date(); - FileList.addFile(name,0,date,false,hidden); - var tr=$('tr').filterAttr('data-file',name); + // TODO: ideally addFile should be able to receive + // all attributes and set them automatically, + // and also auto-load the preview + var tr = FileList.addFile(name,0,date,false,hidden); tr.attr('data-size',result.data.size); tr.attr('data-mime',result.data.mime); tr.attr('data-id', result.data.id); @@ -533,6 +535,7 @@ $(document).ready(function() { lazyLoadPreview(path, result.data.mime, function(previewpath){ tr.find('td.filename').attr('style','background-image:url('+previewpath+')'); }); + FileActions.display(tr.find('td.filename')); } else { OC.dialogs.alert(result.data.message, t('core', 'Error')); } diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index a929799677..e7edd2cf38 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -677,6 +677,7 @@ var FileList={ }; $(document).ready(function(){ + var isPublic = !!$('#isPublic').val(); // handle upload events var file_upload_start = $('#file_upload_start'); @@ -684,28 +685,32 @@ $(document).ready(function(){ file_upload_start.on('fileuploaddrop', function(e, data) { OC.Upload.log('filelist handle fileuploaddrop', e, data); - var dropTarget = $(e.originalEvent.target).closest('tr'); - if(dropTarget && dropTarget.data('type') === 'dir') { // drag&drop upload to folder + var dropTarget = $(e.originalEvent.target).closest('tr, .crumb'); + if(dropTarget && (dropTarget.data('type') === 'dir' || dropTarget.hasClass('crumb'))) { // drag&drop upload to folder // remember as context data.context = dropTarget; var dir = dropTarget.data('file'); + // if from file list, need to prepend parent dir + if (dir){ + var parentDir = $('#dir').val() || '/'; + if (parentDir[parentDir.length - 1] != '/'){ + parentDir += '/'; + } + dir = parentDir + dir; + } + else{ + // read full path from crumb + dir = dropTarget.data('dir') || '/'; + } // update folder in form data.formData = function(form) { - var formArray = form.serializeArray(); - // array index 0 contains the max files size - // array index 1 contains the request token - // array index 2 contains the directory - var parentDir = formArray[2]['value']; - if (parentDir === '/') { - formArray[2]['value'] += dir; - } else { - formArray[2]['value'] += '/' + dir; - } - - return formArray; + return [ + {name: 'dir', value: dir}, + {name: 'requesttoken', value: oc_requesttoken} + ]; }; } @@ -783,6 +788,10 @@ $(document).ready(function(){ data.context.find('td.filesize').text(humanFileSize(size)); } else { + // only append new file if dragged onto current dir's crumb (last) + if (data.context && data.context.hasClass('crumb') && !data.context.hasClass('last')){ + return; + } // add as stand-alone row to filelist var size=t('files', 'Pending'); @@ -924,29 +933,32 @@ $(document).ready(function(){ return (params && params.dir) || '/'; } - // fallback to hashchange when no history support - if (!window.history.pushState){ - $(window).on('hashchange', function(){ - FileList.changeDirectory(parseCurrentDirFromUrl(), false); - }); - } - window.onpopstate = function(e){ - var targetDir; - if (e.state && e.state.dir){ - targetDir = e.state.dir; + // disable ajax/history API for public app (TODO: until it gets ported) + if (!isPublic){ + // fallback to hashchange when no history support + if (!window.history.pushState){ + $(window).on('hashchange', function(){ + FileList.changeDirectory(parseCurrentDirFromUrl(), false); + }); } - else{ - // read from URL - targetDir = parseCurrentDirFromUrl(); + window.onpopstate = function(e){ + var targetDir; + if (e.state && e.state.dir){ + targetDir = e.state.dir; + } + else{ + // read from URL + targetDir = parseCurrentDirFromUrl(); + } + if (targetDir){ + FileList.changeDirectory(targetDir, false); + } } - if (targetDir){ - FileList.changeDirectory(targetDir, false); - } - } - if (parseInt($('#ajaxLoad').val(), 10) === 1){ - // need to initially switch the dir to the one from the hash (IE8) - FileList.changeDirectory(parseCurrentDirFromUrl(), false, true); + if (parseInt($('#ajaxLoad').val(), 10) === 1){ + // need to initially switch the dir to the one from the hash (IE8) + FileList.changeDirectory(parseCurrentDirFromUrl(), false, true); + } } FileList.createFileSummary(); diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 37b6685884..a35ed4add8 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -703,7 +703,12 @@ function checkTrashStatus() { } function onClickBreadcrumb(e){ - var $el = $(e.target).closest('.crumb'); - e.preventDefault(); - FileList.changeDirectory(decodeURIComponent($el.data('dir'))); + var $el = $(e.target).closest('.crumb'), + $targetDir = $el.data('dir'); + isPublic = !!$('#isPublic').val(); + + if ($targetDir !== undefined && !isPublic){ + e.preventDefault(); + FileList.changeDirectory(decodeURIComponent($targetDir)); + } } diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index f1e54ee5fc..6750afddde 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -13,10 +13,14 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Chybí adresář pro dočasné soubory", "Failed to write to disk" => "Zápis na disk selhal", "Not enough storage available" => "Nedostatek dostupného úložného prostoru", +"Upload failed. Could not get file info." => "Nahrávání selhalo. Nepodařilo se získat informace o souboru.", +"Upload failed. Could not find uploaded file" => "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor.", "Invalid directory." => "Neplatný adresář", "Files" => "Soubory", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Nelze nahrát soubor {filename}, protože je to buď adresář nebo má velikost 0 bytů", "Not enough space available" => "Nedostatek volného místa", "Upload cancelled." => "Odesílání zrušeno.", +"Could not get result from server." => "Nepodařilo se získat výsledek ze serveru.", "File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání.", "URL cannot be empty." => "URL nemůže být prázdná.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Název složky nelze použít. Použití názvu 'Shared' je ownCloudem rezervováno", @@ -40,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", "Your storage is full, files can not be updated or synced anymore!" => "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory.", "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložiště je téměř plné ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chybný soukromý klíč pro šifrovací aplikaci. Aktualizujte prosím heslo svého soukromého klíče ve vašem osobním nastavení, abyste znovu získali přístup k vašim zašifrovaným souborům.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifrování bylo vypnuto, vaše soubory jsou však stále zašifrované. Běžte prosím do osobního nastavení, kde soubory odšifrujete.", "Your download is being prepared. This might take some time if the files are big." => "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat.", "Error moving file" => "Chyba při přesunu souboru", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index c747555e40..96a4be20b5 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed.", "Your storage is full, files can not be updated or synced anymore!" => "Your storage is full, files can not be updated or synced anymore!", "Your storage is almost full ({usedSpacePercent}%)" => "Your storage is almost full ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Encryption App is enabled but your keys are not initialised, please log-out and log-in again", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files.", "Your download is being prepared. This might take some time if the files are big." => "Your download is being prepared. This might take some time if the files are big.", "Error moving file" => "Error moving file", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index bfed4b2227..b7091fe544 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", "Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento está lleno, ¡no se pueden actualizar o sincronizar más!", "Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento está casi lleno ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Encryption App está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "La clave privada no es válida para Encryption App. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos encriptados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos.", "Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son grandes.", "Error moving file" => "Error moviendo archivo", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index cb637d849b..d25b737037 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -17,6 +17,7 @@ $TRANSLATIONS = array( "Upload failed. Could not find uploaded file" => "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud", "Invalid directory." => "Vigane kaust.", "Files" => "Failid", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Ei saa üles laadida {filename}, kuna see on kataloog või selle suurus on 0 baiti", "Not enough space available" => "Pole piisavalt ruumi", "Upload cancelled." => "Üleslaadimine tühistati.", "Could not get result from server." => "Serverist ei saadud tulemusi", @@ -43,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud.", "Your storage is full, files can not be updated or synced anymore!" => "Sinu andmemaht on täis! Faile ei uuendata ega sünkroniseerita!", "Your storage is almost full ({usedSpacePercent}%)" => "Su andmemaht on peaaegu täis ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks.", "Your download is being prepared. This might take some time if the files are big." => "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. ", "Error moving file" => "Viga faili eemaldamisel", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 03505a2a26..ca1ed09ef3 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", "Your storage is full, files can not be updated or synced anymore!" => "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !", "Your storage is almost full ({usedSpacePercent}%)" => "Votre espace de stockage est presque plein ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'application de chiffrement est activée mais vos clés ne sont pas initialisées, veuillez vous déconnecter et ensuite vous reconnecter.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Votre clef privée pour l'application de chiffrement est invalide ! Veuillez mettre à jour le mot de passe de votre clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers chiffrés.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Le chiffrement était désactivé mais vos fichiers sont toujours chiffrés. Veuillez vous rendre sur vos Paramètres personnels pour déchiffrer vos fichiers.", "Your download is being prepared. This might take some time if the files are big." => "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux.", "Error moving file" => "Erreur lors du déplacement du fichier", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 07ee96f1eb..180f026047 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "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}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。", "Your download is being prepared. This might take some time if the files are big." => "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。", "Error moving file" => "ファイルの移動エラー", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 65ad526523..5e2a752b97 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -13,10 +13,14 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Er ontbreekt een tijdelijke map", "Failed to write to disk" => "Schrijven naar schijf mislukt", "Not enough storage available" => "Niet genoeg opslagruimte beschikbaar", +"Upload failed. Could not get file info." => "Upload mislukt, Kon geen bestandsinfo krijgen.", +"Upload failed. Could not find uploaded file" => "Upload mislukt. Kon ge-uploade bestand niet vinden", "Invalid directory." => "Ongeldige directory.", "Files" => "Bestanden", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan {filename} niet uploaden omdat het een map is of 0 bytes groot is", "Not enough space available" => "Niet genoeg ruimte beschikbaar", "Upload cancelled." => "Uploaden geannuleerd.", +"Could not get result from server." => "Kon het resultaat van de server niet terugkrijgen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", "URL cannot be empty." => "URL kan niet leeg zijn.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ongeldige mapnaam. Gebruik van 'Gedeeld' is voorbehouden aan Owncloud zelf", @@ -40,8 +44,11 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan.", "Your storage is full, files can not be updated or synced anymore!" => "Uw opslagruimte zit vol, Bestanden kunnen niet meer worden ge-upload of gesynchroniseerd!", "Your storage is almost full ({usedSpacePercent}%)" => "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Crypto app is geactiveerd, maar uw sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ongeldige privésleutel voor crypto app. Werk het privésleutel wachtwoord bij in uw persoonlijke instellingen om opnieuw toegang te krijgen tot uw versleutelde bestanden.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encryptie is uitgeschakeld maar uw bestanden zijn nog steeds versleuteld. Ga naar uw persoonlijke instellingen om uw bestanden te decoderen.", "Your download is being prepared. This might take some time if the files are big." => "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden.", +"Error moving file" => "Fout bij verplaatsen bestand", "Name" => "Naam", "Size" => "Grootte", "Modified" => "Aangepast", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index f6d61fc987..342cab2bf4 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -13,10 +13,12 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Está a faltar a pasta temporária", "Failed to write to disk" => "Falhou a escrita no disco", "Not enough storage available" => "Não há espaço suficiente em disco", +"Upload failed. Could not get file info." => "O carregamento falhou. Não foi possível obter a informação do ficheiro.", "Invalid directory." => "Directório Inválido", "Files" => "Ficheiros", "Not enough space available" => "Espaço em disco insuficiente!", "Upload cancelled." => "Envio cancelado.", +"Could not get result from server." => "Não foi possível obter o resultado do servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", "URL cannot be empty." => "O URL não pode estar vazio.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nome da pasta inválido. Palavra 'Shared' é reservado pela ownCloud", @@ -42,6 +44,7 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros.", "Your download is being prepared. This might take some time if the files are big." => "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes.", +"Error moving file" => "Erro ao mover o ficheiro", "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 208dcd4ea1..32267ea2e7 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -13,10 +13,14 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "En temporär mapp saknas", "Failed to write to disk" => "Misslyckades spara till disk", "Not enough storage available" => "Inte tillräckligt med lagringsutrymme tillgängligt", +"Upload failed. Could not get file info." => "Uppladdning misslyckades. Gick inte att hämta filinformation.", +"Upload failed. Could not find uploaded file" => "Uppladdning misslyckades. Kunde inte hitta den uppladdade filen", "Invalid directory." => "Felaktig mapp.", "Files" => "Filer", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan inte ladda upp {filename} eftersom den antingen är en mapp eller har 0 bytes.", "Not enough space available" => "Inte tillräckligt med utrymme tillgängligt", "Upload cancelled." => "Uppladdning avbruten.", +"Could not get result from server." => "Gick inte att hämta resultat från server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", "URL cannot be empty." => "URL kan inte vara tom.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ogiltigt mappnamn. Användning av 'Shared' är reserverad av ownCloud", @@ -40,8 +44,11 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.", "Your storage is full, files can not be updated or synced anymore!" => "Ditt lagringsutrymme är fullt, filer kan inte längre uppdateras eller synkroniseras!", "Your storage is almost full ({usedSpacePercent}%)" => "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krypteringsprogrammet är aktiverat men dina nycklar är inte initierade. Vänligen logga ut och in igen", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ogiltig privat nyckel i krypteringsprogrammet. Vänligen uppdatera lösenordet till din privata nyckel under dina personliga inställningar för att återfå tillgång till dina krypterade filer.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kryptering inaktiverades men dina filer är fortfarande krypterade. Vänligen gå till sidan för dina personliga inställningar för att dekryptera dina filer.", "Your download is being prepared. This might take some time if the files are big." => "Din nedladdning förbereds. Det kan ta tid om det är stora filer.", +"Error moving file" => "Fel uppstod vid flyttning av fil", "Name" => "Namn", "Size" => "Storlek", "Modified" => "Ändrad", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 8cb05e16ac..09c38abfcf 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -13,10 +13,14 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Geçici dizin eksik", "Failed to write to disk" => "Diske yazılamadı", "Not enough storage available" => "Yeterli disk alanı yok", +"Upload failed. Could not get file info." => "Yükleme başarısız. Dosya bilgisi alınamadı.", +"Upload failed. Could not find uploaded file" => "Yükleme başarısız. Yüklenen dosya bulunamadı", "Invalid directory." => "Geçersiz dizin.", "Files" => "Dosyalar", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Bir dizin veya 0 bayt olduğundan {filename} yüklenemedi", "Not enough space available" => "Yeterli disk alanı yok", "Upload cancelled." => "Yükleme iptal edildi.", +"Could not get result from server." => "Sunucudan sonuç alınamadı.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", "URL cannot be empty." => "URL boş olamaz.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Geçersiz dizin adı. 'Shared' dizin ismi kullanımı ownCloud tarafından rezerve edilmiştir.", @@ -33,14 +37,18 @@ $TRANSLATIONS = array( "undo" => "geri al", "_%n folder_::_%n folders_" => array("%n dizin","%n dizin"), "_%n file_::_%n files_" => array("%n dosya","%n dosya"), +"{dirs} and {files}" => "{dirs} ve {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n dosya yükleniyor","%n dosya yükleniyor"), "'.' is an invalid file name." => "'.' geçersiz dosya adı.", "File name cannot be empty." => "Dosya adı boş olamaz.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir.", "Your storage is full, files can not be updated or synced anymore!" => "Depolama alanınız dolu, artık dosyalar güncellenmeyecek yada senkronizasyon edilmeyecek.", "Your storage is almost full ({usedSpacePercent}%)" => "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Şifreleme Uygulaması etkin ancak anahtarlarınız başlatılmamış. Lütfen oturumu kapatıp yeniden açın", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Şifreleme Uygulaması için geçersiz özel anahtar. Lütfen şifreli dosyalarınıza erişimi tekrar kazanabilmek için kişisel ayarlarınızdan özel anahtar parolanızı güncelleyin.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçiniz.", "Your download is being prepared. This might take some time if the files are big." => "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir.", +"Error moving file" => "Dosya taşıma hatası", "Name" => "İsim", "Size" => "Boyut", "Modified" => "Değiştirilme", diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 5e7ad41b0f..32a59f1e1a 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -1,4 +1,3 @@ -
@@ -108,6 +107,7 @@
+ diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 0679da334d..a6d2e44f34 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -36,7 +36,7 @@ $totalsize = 0; ?> - + diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php index ac0c026916..61574edf50 100644 --- a/apps/files_encryption/files/error.php +++ b/apps/files_encryption/files/error.php @@ -5,26 +5,39 @@ if (!isset($_)) { //also provide standalone error page $l = OC_L10N::get('files_encryption'); - if (isset($_GET['i']) && $_GET['i'] === '0') { - $errorMsg = $l->t('Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.'); - $init = '0'; + if (isset($_GET['errorCode'])) { + $errorCode = $_GET['errorCode']; + switch ($errorCode) { + case \OCA\Encryption\Crypt::ENCRYPTION_NOT_INITIALIZED_ERROR: + $errorMsg = $l->t('Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.'); + break; + case \OCA\Encryption\Crypt::ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR: + $errorMsg = $l->t('Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.'); + break; + case \OCA\Encryption\Crypt::ENCRYPTION_NO_SHARE_KEY_FOUND: + $errorMsg = $l->t('Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.'); + break; + default: + $errorMsg = $l->t("Unknown error please check your system settings or contact your administrator"); + break; + } } else { - $errorMsg = $l->t('Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.'); - $init = '1'; + $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_UNKNOWN_ERROR; + $errorMsg = $l->t("Unknown error please check your system settings or contact your administrator"); } if (isset($_GET['p']) && $_GET['p'] === '1') { - header('HTTP/1.0 404 ' . $errorMsg); + header('HTTP/1.0 403 ' . $errorMsg); } // check if ajax request if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') { \OCP\JSON::error(array('data' => array('message' => $errorMsg))); } else { - header('HTTP/1.0 404 ' . $errorMsg); + header('HTTP/1.0 403 ' . $errorMsg); $tmpl = new OC_Template('files_encryption', 'invalid_private_key', 'guest'); $tmpl->assign('message', $errorMsg); - $tmpl->assign('init', $init); + $tmpl->assign('errorCode', $errorCode); $tmpl->printPage(); } diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 2df860a8e5..d9a76becf2 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -92,8 +92,6 @@ class Hooks { } // Encrypt existing user files: - // This serves to upgrade old versions of the encryption - // app (see appinfo/spec.txt) if ( $util->encryptAll('/' . $params['uid'] . '/' . 'files', $session->getLegacyKey(), $params['password']) ) { diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 3264532263..9d37a8d7b0 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -8,20 +8,26 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Změna hesla se nezdařila. Pravděpodobně nebylo stávající heslo zadáno správně.", "Private key password successfully updated." => "Heslo soukromého klíče úspěšně aktualizováno.", "Could not update the private key password. Maybe the old password was not correct." => "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Aplikace pro šifrování není inicializována! Je možné, že aplikace byla znovu aktivována během vašeho přihlášení. Zkuste se prosím odhlásit a znovu přihlásit pro provedení inicializace šifrovací aplikace.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno vně systému ownCloud (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel.", +"Unknown error please check your system settings or contact your administrator" => "Neznámá chyba, zkontrolujte vaše systémová nastavení nebo kontaktujte vašeho správce", "Missing requirements." => "Nesplněné závislosti.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Ujistěte se prosím, že máte nainstalované PHP 5.3.3 nebo novější a že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Prozatím byla aplikace pro šifrování vypnuta.", "Following users are not set up for encryption:" => "Následující uživatelé nemají nastavené šifrování:", "Saving..." => "Ukládám...", +"Go directly to your " => "Běžte přímo do vašeho", "personal settings" => "osobní nastavení", "Encryption" => "Šifrování", "Enable recovery key (allow to recover users files in case of password loss):" => "Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)", "Recovery key password" => "Heslo klíče pro obnovu", +"Repeat Recovery key password" => "Zopakujte heslo klíče pro obnovu", "Enabled" => "Povoleno", "Disabled" => "Zakázáno", "Change recovery key password:" => "Změna hesla klíče pro obnovu:", "Old Recovery key password" => "Původní heslo klíče pro obnovu", "New Recovery key password" => "Nové heslo klíče pro obnovu", +"Repeat New Recovery key password" => "Zopakujte nové heslo klíče pro obnovu", "Change Password" => "Změnit heslo", "Your private key password no longer match your log-in password:" => "Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašovacím heslem:", "Set your old private key password to your current log-in password." => "Změňte heslo vaše soukromého klíče na stejné jako vaše přihlašovací heslo.", diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index 93a715d341..a7f8dd7fe6 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -8,20 +8,26 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort falsch.", "Private key password successfully updated." => "Passwort des privaten Schlüssels erfolgreich aktualisiert", "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Eventuell war das alte Passwort falsch.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuche Dich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte frage den Datei-Besitzer, dass er die Datei nochmals mit Dir teilt.", +"Unknown error please check your system settings or contact your administrator" => "Unbekannter Fehler, bitte prüfe Deine Systemeinstellungen oder kontaktiere Deinen Administrator", "Missing requirements." => "Fehlende Vorraussetzungen", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", +"Go directly to your " => "Direkt wechseln zu Deinem", "personal settings" => "Private Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):", "Recovery key password" => "Wiederherstellungsschlüssel-Passwort", +"Repeat Recovery key password" => "Schlüssel-Passwort zur Wiederherstellung wiederholen", "Enabled" => "Aktiviert", "Disabled" => "Deaktiviert", "Change recovery key password:" => "Wiederherstellungsschlüssel-Passwort ändern:", "Old Recovery key password" => "Altes Wiederherstellungsschlüssel-Passwort", "New Recovery key password" => "Neues Wiederherstellungsschlüssel-Passwort", +"Repeat New Recovery key password" => "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen", "Change Password" => "Passwort ändern", "Your private key password no longer match your log-in password:" => "Ihr Passwort für ihren privaten Schlüssel stimmt nicht mehr mit ihrem Loginpasswort überein.", "Set your old private key password to your current log-in password." => "Setzen Sie ihr altes Passwort für ihren privaten Schlüssel auf ihr aktuelles Login-Passwort", diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 79fdbe995e..c267cc751a 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -8,20 +8,26 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.", "Private key password successfully updated." => "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.", "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuchen Sie sich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte fragen Sie den Datei-Besitzer, dass er die Datei nochmals mit Ihnen teilt.", +"Unknown error please check your system settings or contact your administrator" => "Unbekannter Fehler, bitte prüfen Sie die Systemeinstellungen oder kontaktieren Sie Ihren Administrator", "Missing requirements." => "Fehlende Voraussetzungen", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", +"Go directly to your " => "Direkt wechseln zu Ihrem", "personal settings" => "Persönliche Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).", "Recovery key password" => "Wiederherstellungschlüsselpasswort", +"Repeat Recovery key password" => "Schlüssel-Passwort zur Wiederherstellung wiederholen", "Enabled" => "Aktiviert", "Disabled" => "Deaktiviert", "Change recovery key password:" => "Wiederherstellungsschlüsselpasswort ändern", "Old Recovery key password" => "Altes Wiederherstellungsschlüsselpasswort", "New Recovery key password" => "Neues Wiederherstellungsschlüsselpasswort ", +"Repeat New Recovery key password" => "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen", "Change Password" => "Passwort ändern", "Your private key password no longer match your log-in password:" => "Das Privatschlüsselpasswort darf nicht länger mit den Login-Passwort übereinstimmen.", "Set your old private key password to your current log-in password." => "Setzen Sie Ihr altes Privatschlüsselpasswort auf Ihr aktuelles LogIn-Passwort.", diff --git a/apps/files_encryption/l10n/en_GB.php b/apps/files_encryption/l10n/en_GB.php index d2bfdfa9ea..1ff3e1dad0 100644 --- a/apps/files_encryption/l10n/en_GB.php +++ b/apps/files_encryption/l10n/en_GB.php @@ -8,22 +8,28 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Could not change the password. Maybe the old password was incorrect.", "Private key password successfully updated." => "Private key password updated successfully.", "Could not update the private key password. Maybe the old password was not correct." => "Could not update the private key password. Maybe the old password was not correct.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Encryption app not initialised! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialise the encryption app.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you.", +"Unknown error please check your system settings or contact your administrator" => "Unknown error. Please check your system settings or contact your administrator", "Missing requirements." => "Missing requirements.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.", "Following users are not set up for encryption:" => "Following users are not set up for encryption:", "Saving..." => "Saving...", +"Go directly to your " => "Go directly to your ", "personal settings" => "personal settings", "Encryption" => "Encryption", "Enable recovery key (allow to recover users files in case of password loss):" => "Enable recovery key (allow to recover users files in case of password loss):", "Recovery key password" => "Recovery key password", +"Repeat Recovery key password" => "Repeat recovery key password", "Enabled" => "Enabled", "Disabled" => "Disabled", "Change recovery key password:" => "Change recovery key password:", -"Old Recovery key password" => "Old Recovery key password", -"New Recovery key password" => "New Recovery key password", +"Old Recovery key password" => "Old recovery key password", +"New Recovery key password" => "New recovery key password", +"Repeat New Recovery key password" => "Repeat new recovery key password", "Change Password" => "Change Password", -"Your private key password no longer match your log-in password:" => "Your private key password no longer match your login password:", +"Your private key password no longer match your log-in password:" => "Your private key password no longer matches your login password:", "Set your old private key password to your current log-in password." => "Set your old private key password to your current login password.", " If you don't remember your old password you can ask your administrator to recover your files." => " If you don't remember your old password you can ask your administrator to recover your files.", "Old log-in password" => "Old login password", diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 138d51b09b..2e3c7c5816 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "¡Encryption App no está inicializada!. Quizás la aplicación fue reiniciada durante tu sesión. Por favor, cierra la sesión y vuelva a iniciarla para intentar inicializar la Encryption App.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.", "Missing requirements." => "Requisitos incompletos.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index 0c9234d3a5..79349722c1 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -8,20 +8,26 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatud.", "Private key password successfully updated." => "Privaatse võtme parool edukalt uuendatud.", "Could not update the private key password. Maybe the old password was not correct." => "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Krüpteerimise rakend pole käivitatud. Võib-olla krüpteerimise rakend taaskäivitati sinu sessiooni kestel. Palun proovi logida välja ning uuesti sisse käivitamaks krüpteerimise rakendit.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Sa ei saa seda faili dekrüpteerida, see on tõenäoliselt jagatud fail. Palun lase omanikul seda faili sinuga uuesti jagada.", +"Unknown error please check your system settings or contact your administrator" => "Tundmatu tõrge. Palun kontrolli süsteemi seadeid või võta ühendust oma süsteemi administraatoriga", "Missing requirements." => "Nõutavad on puudu.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud.", "Following users are not set up for encryption:" => "Järgmised kasutajad pole seadistatud krüpteeringuks:", "Saving..." => "Salvestamine...", +"Go directly to your " => "Liigu otse oma", "personal settings" => "isiklikes seadetes", "Encryption" => "Krüpteerimine", "Enable recovery key (allow to recover users files in case of password loss):" => "Luba taastevõti (võimada kasutaja failide taastamine parooli kaotuse puhul):", "Recovery key password" => "Taastevõtme parool", +"Repeat Recovery key password" => "Korda taastevõtme parooli", "Enabled" => "Sisse lülitatud", "Disabled" => "Väljalülitatud", "Change recovery key password:" => "Muuda taastevõtme parooli:", "Old Recovery key password" => "Vana taastevõtme parool", "New Recovery key password" => "Uus taastevõtme parool", +"Repeat New Recovery key password" => "Korda uut taastevõtme parooli", "Change Password" => "Muuda parooli", "Your private key password no longer match your log-in password:" => "Sinu privaatse võtme parool ei ühti enam sinu sisselogimise parooliga:", "Set your old private key password to your current log-in password." => "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool.", diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index b222aa10e4..2988995c88 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -8,20 +8,26 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Ne peut pas changer le mot de passe. L'ancien mot de passe est peut-être incorrect.", "Private key password successfully updated." => "Mot de passe de la clé privé mis à jour avec succès.", "Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "L'application de chiffrement n'est pas initialisée ! Peut-être que cette application a été réactivée pendant votre session. Veuillez essayer de vous déconnecter et ensuite de vous reconnecter pour initialiser l'application de chiffrement.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Impossible de déchiffrer ce fichier, il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire de ce fichier de le repartager avec vous.", +"Unknown error please check your system settings or contact your administrator" => "Erreur inconnue. Veuillez vérifier vos paramètres système ou contacter votre administrateur.", "Missing requirements." => "Système minimum requis non respecté.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veuillez vous assurer qu'une version de PHP 5.3.3 ou supérieure est installée et qu'OpenSSL et son extension PHP sont activés et configurés correctement. En attendant, l'application de chiffrement été désactivée.", "Following users are not set up for encryption:" => "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :", "Saving..." => "Enregistrement...", +"Go directly to your " => "Allez directement à votre", "personal settings" => "paramètres personnel", "Encryption" => "Chiffrement", "Enable recovery key (allow to recover users files in case of password loss):" => "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe).", "Recovery key password" => "Mot de passe de la clef de récupération", +"Repeat Recovery key password" => "Répétez le mot de passe de la clé de récupération", "Enabled" => "Activer", "Disabled" => "Désactiver", "Change recovery key password:" => "Modifier le mot de passe de la clef de récupération :", "Old Recovery key password" => "Ancien mot de passe de la clef de récupération", "New Recovery key password" => "Nouveau mot de passe de la clef de récupération", +"Repeat New Recovery key password" => "Répétez le nouveau mot de passe de la clé de récupération", "Change Password" => "Changer de mot de passe", "Your private key password no longer match your log-in password:" => "Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion :", "Set your old private key password to your current log-in password." => "Configurez le mot de passe de votre ancienne clef privée avec votre mot de passe courant de connexion. ", diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index f45dbe7c73..c93afa1572 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -13,15 +13,18 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata.", "Following users are not set up for encryption:" => "I seguenti utenti non sono configurati per la cifratura:", "Saving..." => "Salvataggio in corso...", +"Go directly to your " => "Passa direttamente a", "personal settings" => "impostazioni personali", "Encryption" => "Cifratura", "Enable recovery key (allow to recover users files in case of password loss):" => "Abilita la chiave di recupero (permette di recuperare i file utenti in caso di perdita della password):", "Recovery key password" => "Password della chiave di recupero", +"Repeat Recovery key password" => "Ripeti la password della chiave di recupero", "Enabled" => "Abilitata", "Disabled" => "Disabilitata", "Change recovery key password:" => "Cambia la password della chiave di recupero:", "Old Recovery key password" => "Vecchia password della chiave di recupero", "New Recovery key password" => "Nuova password della chiave di recupero", +"Repeat New Recovery key password" => "Ripeti la nuova password della chiave di recupero", "Change Password" => "Modifica password", "Your private key password no longer match your log-in password:" => "La password della chiave privata non corrisponde più alla password di accesso:", "Set your old private key password to your current log-in password." => "Imposta la vecchia password della chiave privata sull'attuale password di accesso.", diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index 511120856a..86d56e4031 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Kon wachtwoord niet wijzigen. Wellicht oude wachtwoord niet juist ingevoerd.", "Private key password successfully updated." => "Privésleutel succesvol bijgewerkt.", "Could not update the private key password. Maybe the old password was not correct." => "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Crypto app niet geïnitialiseerd. Misschien werd de crypto app geheractiveerd tijdens de sessie. Log uit en log daarna opnieuw in om de crypto app te initialiseren.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Uw privésleutel is niet geldig! Misschien was uw wachtwoord van buitenaf gewijzigd. U kunt het wachtwoord van uw privésleutel aanpassen in uw persoonlijke instellingen om toegang tot uw versleutelde bestanden te vergaren.", "Missing requirements." => "Missende benodigdheden.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld.", "Following users are not set up for encryption:" => "De volgende gebruikers hebben geen configuratie voor encryptie:", "Saving..." => "Opslaan", +"Go directly to your " => "Ga meteen naar uw", "personal settings" => "persoonlijke instellingen", "Encryption" => "Versleuteling", "Enable recovery key (allow to recover users files in case of password loss):" => "Activeren herstelsleutel (maakt het mogelijk om gebruikersbestanden terug te halen in geval van verlies van het wachtwoord):", "Recovery key password" => "Wachtwoord herstelsleulel", +"Repeat Recovery key password" => "Herhaal het herstelsleutel wachtwoord", "Enabled" => "Geactiveerd", "Disabled" => "Gedeactiveerd", "Change recovery key password:" => "Wijzig wachtwoord herstelsleutel:", "Old Recovery key password" => "Oude wachtwoord herstelsleutel", "New Recovery key password" => "Nieuwe wachtwoord herstelsleutel", +"Repeat New Recovery key password" => "Herhaal het nieuwe herstelsleutel wachtwoord", "Change Password" => "Wijzigen wachtwoord", "Your private key password no longer match your log-in password:" => "Het wachtwoord van uw privésleutel komt niet meer overeen met uw inlogwachtwoord:", "Set your old private key password to your current log-in password." => "Stel het wachtwoord van uw oude privésleutel in op uw huidige inlogwachtwoord.", diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index 4eb1ca00dd..b448aaef14 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Nie można zmienić hasła. Może stare hasło nie było poprawne.", "Private key password successfully updated." => "Pomyślnie zaktualizowano hasło klucza prywatnego.", "Could not update the private key password. Maybe the old password was not correct." => "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Szyfrowanie aplikacja nie została zainicjowane! Może szyfrowanie aplikacji zostało ponownie włączone podczas tej sesji. Spróbuj się wylogować i zalogować ponownie aby zainicjować szyfrowanie aplikacji.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Klucz prywatny nie jest ważny! Prawdopodobnie Twoje hasło zostało zmienione poza systemem ownCloud (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych.", "Missing requirements." => "Brak wymagań.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone.", "Following users are not set up for encryption:" => "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:", "Saving..." => "Zapisywanie...", +"Go directly to your " => "Przejdź bezpośrednio do", "personal settings" => "Ustawienia osobiste", "Encryption" => "Szyfrowanie", "Enable recovery key (allow to recover users files in case of password loss):" => "Włączhasło klucza odzyskiwania (pozwala odzyskać pliki użytkowników w przypadku utraty hasła):", "Recovery key password" => "Hasło klucza odzyskiwania", +"Repeat Recovery key password" => "Powtórz hasło klucza odzyskiwania", "Enabled" => "Włączone", "Disabled" => "Wyłączone", "Change recovery key password:" => "Zmień hasło klucza odzyskiwania", "Old Recovery key password" => "Stare hasło klucza odzyskiwania", "New Recovery key password" => "Nowe hasło klucza odzyskiwania", +"Repeat New Recovery key password" => "Powtórz nowe hasło klucza odzyskiwania", "Change Password" => "Zmień hasło", "Your private key password no longer match your log-in password:" => "Hasło klucza prywatnego nie pasuje do hasła logowania:", "Set your old private key password to your current log-in password." => "Podaj swoje stare prywatne hasło aby ustawić nowe", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index c6abb1952d..4539696b46 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.", "Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Aplicativo de criptografia não foi inicializado! Talvez o aplicativo de criptografia tenha sido reativado durante essa sessão. Por favor, tente fazer logoff e login novamente para inicializar o aplicativo de criptografia.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Este arquivo não pode ser decriptado, provavelmente este é um arquivo compartilhado. Poe favoe peça ao dono do arquivo para compartilha-lo com você.", +"Unknown error please check your system settings or contact your administrator" => "Erro desconhecido, por favor verifique suas configurações ou faça contato com o administrador", "Missing requirements." => "Requisitos não encontrados.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado.", "Following users are not set up for encryption:" => "Seguintes usuários não estão configurados para criptografia:", diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php index 53335ab729..788e102dd6 100644 --- a/apps/files_encryption/l10n/pt_PT.php +++ b/apps/files_encryption/l10n/pt_PT.php @@ -9,6 +9,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível alterar a chave. Possivelmente a password antiga não está correcta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Chave privada não é válida! Provavelmente senha foi alterada fora do sistema ownCloud (exemplo, o diretório corporativo). Pode atualizar password da chave privada em configurações personalizadas para recuperar o acesso aos seus arquivos encriptados.", "Missing requirements." => "Faltam alguns requisitos.", +"Following users are not set up for encryption:" => "Os utilizadores seguintes não estão marcados para cifragem:", "Saving..." => "A guardar...", "personal settings" => "configurações personalizadas ", "Encryption" => "Encriptação", diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index d425111cf0..f806c3cc3e 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -6,29 +6,33 @@ $TRANSLATIONS = array( "Could not disable recovery key. Please check your recovery key password!" => "Kunde inte inaktivera återställningsnyckeln. Vänligen kontrollera ditt lösenord för återställningsnyckeln!", "Password successfully changed." => "Ändringen av lösenordet lyckades.", "Could not change the password. Maybe the old password was not correct." => "Kunde inte ändra lösenordet. Kanske det gamla lösenordet inte var rätt.", -"Private key password successfully updated." => "Den privata lösenordsnyckeln uppdaterades utan problem.", -"Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.", +"Private key password successfully updated." => "Den privata nyckelns lösenord uppdaterades utan problem.", +"Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera lösenordet för den privata nyckeln. Kanske var det gamla lösenordet fel.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Krypteringsprogrammet kunde inte initieras! Möjligen blev krypteringsprogrammet återaktiverad under din session. Försök med att logga ut och in igen för att initiera krypteringsprogrammet.", +"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Lösenordet för din privata nyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera lösenordet för den privata nyckeln under dina personliga inställningar för att återfå tillgång till dina filer.", "Missing requirements." => "Krav som saknas", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad.", "Following users are not set up for encryption:" => "Följande användare har inte aktiverat kryptering:", "Saving..." => "Sparar...", +"Go directly to your " => "Gå direkt till din", "personal settings" => "personliga inställningar", "Encryption" => "Kryptering", -"Enable recovery key (allow to recover users files in case of password loss):" => "Aktivera lösenordsnyckel (för att kunna återfå användarens filer vid glömt eller förlorat lösenord):", -"Recovery key password" => "Lösenordsnyckel", +"Enable recovery key (allow to recover users files in case of password loss):" => "Aktivera återställningsnyckel (för att kunna återfå användarens filer vid glömt eller förlorat lösenord):", +"Recovery key password" => "Lösenord för återställningsnyckel", +"Repeat Recovery key password" => "Upprepa återställningsnyckelns lösenord", "Enabled" => "Aktiverad", "Disabled" => "Inaktiverad", -"Change recovery key password:" => "Ändra lösenordsnyckel:", -"Old Recovery key password" => "Gammal lösenordsnyckel", -"New Recovery key password" => "Ny lösenordsnyckel", +"Change recovery key password:" => "Ändra lösenord för återställningsnyckel:", +"Old Recovery key password" => "Gammalt lösenord för återställningsnyckel", +"New Recovery key password" => "Nytt lösenord för återställningsnyckel", +"Repeat New Recovery key password" => "Upprepa lösenord för ny återställningsnyckel", "Change Password" => "Byt lösenord", -"Your private key password no longer match your log-in password:" => "Din privata lösenordsnyckel stämmer inte längre överrens med ditt inloggningslösenord:", -"Set your old private key password to your current log-in password." => "Ställ in din gamla privata lösenordsnyckel till ditt aktuella inloggningslösenord.", +"Your private key password no longer match your log-in password:" => "Lösenordet till din privata nyckel stämmer inte längre överens med ditt inloggningslösenord:", +"Set your old private key password to your current log-in password." => "Använd din gamla privata nyckels lösenord som ditt aktuella inloggningslösenord.", " If you don't remember your old password you can ask your administrator to recover your files." => "Om du inte kommer ihåg ditt gamla lösenord kan du be din administratör att återställa dina filer.", "Old log-in password" => "Gammalt inloggningslösenord", "Current log-in password" => "Nuvarande inloggningslösenord", -"Update Private Key Password" => "Uppdatera den privata lösenordsnyckeln", +"Update Private Key Password" => "Uppdatera lösenordet för din privata nyckel", "Enable password recovery:" => "Aktivera lösenordsåterställning", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Genom att aktivera detta alternativ kommer du kunna återfå tillgång till dina krypterade filer om du skulle förlora/glömma ditt lösenord", "File recovery settings updated" => "Inställningarna för filåterställning har uppdaterats", diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index c009718160..9155d238c7 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -33,6 +33,12 @@ require_once __DIR__ . '/../3rdparty/Crypt_Blowfish/Blowfish.php'; class Crypt { + const ENCRYPTION_UNKNOWN_ERROR = -1; + const ENCRYPTION_NOT_INITIALIZED_ERROR = 1; + const ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR = 2; + const ENCRYPTION_NO_SHARE_KEY_FOUND = 3; + + /** * @brief return encryption mode client or server side encryption * @param string $user name (use system wide setting if name=null) @@ -183,8 +189,8 @@ class Crypt { // 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 + // 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']) && $metadata['encrypted'] === true @@ -388,7 +394,7 @@ class Crypt { */ public static function multiKeyEncrypt($plainContent, array $publicKeys) { - // openssl_seal returns false without errors if $plainContent + // openssl_seal returns false without errors if $plainContent // is empty, so trigger our own error if (empty($plainContent)) { @@ -405,7 +411,7 @@ class Crypt { $i = 0; - // Ensure each shareKey is labelled with its + // Ensure each shareKey is labelled with its // corresponding userId foreach ($publicKeys as $userId => $publicKey) { @@ -476,7 +482,7 @@ class Crypt { } - // We encode the iv purely for string manipulation + // We encode the iv purely for string manipulation // purposes - it gets decoded before use $iv = base64_encode($random); diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index ebfc00157f..a754f9f28c 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -235,16 +235,28 @@ class Helper { /** * @brief redirect to a error page */ - public static function redirectToErrorPage($session) { + public static function redirectToErrorPage($session, $errorCode = null) { - $init = $session->getInitialized(); + if ($errorCode === null) { + $init = $session->getInitialized(); + switch ($init) { + case \OCA\Encryption\Session::INIT_EXECUTED: + $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR; + break; + case \OCA\Encryption\Session::NOT_INITIALIZED: + $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_NOT_INITIALIZED_ERROR; + break; + default: + $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_UNKNOWN_ERROR; + } + } $location = \OC_Helper::linkToAbsolute('apps/files_encryption/files', 'error.php'); $post = 0; if(count($_POST) > 0) { $post = 1; } - header('Location: ' . $location . '?p=' . $post . '&i=' . $init); + header('Location: ' . $location . '?p=' . $post . '&errorCode=' . $errorCode); exit(); } diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 6f630c83a3..6dc5c9ce1b 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -38,8 +38,6 @@ class Proxy extends \OC_FileProxy { private static $blackList = null; //mimetypes blacklisted from encryption - private static $enableEncryption = null; - /** * Check if a file requires encryption * @param string $path @@ -49,46 +47,23 @@ class Proxy extends \OC_FileProxy { */ private static function shouldEncrypt($path) { - if (is_null(self::$enableEncryption)) { - if ( - \OCP\App::isEnabled('files_encryption') === true - && Crypt::mode() === 'server' - ) { - - self::$enableEncryption = true; - - } else { - - self::$enableEncryption = false; - - } - - } - - if (!self::$enableEncryption) { - + if (\OCP\App::isEnabled('files_encryption') === false || Crypt::mode() !== 'server' || + strpos($path, '/' . \OCP\User::getUser() . '/files') !== 0) { return false; - } if (is_null(self::$blackList)) { - self::$blackList = explode(',', \OCP\Config::getAppValue('files_encryption', 'type_blacklist', '')); - } if (Crypt::isCatfileContent($path)) { - return true; - } $extension = substr($path, strrpos($path, '.') + 1); if (array_search($extension, self::$blackList) === false) { - return true; - } return false; @@ -342,6 +317,16 @@ class Proxy extends \OC_FileProxy { $view = new \OC_FilesystemView('/'); + $userId = \OCP\User::getUser(); + $util = new Util($view, $userId); + + // if encryption is no longer enabled or if the files aren't migrated yet + // we return the default file size + if(!\OCP\App::isEnabled('files_encryption') || + $util->getMigrationStatus() !== Util::MIGRATION_COMPLETED) { + return $size; + } + // if path is a folder do nothing if ($view->is_dir($path)) { return $size; @@ -363,6 +348,15 @@ class Proxy extends \OC_FileProxy { // if file is encrypted return real file size if (is_array($fileInfo) && $fileInfo['encrypted'] === true) { + // try to fix unencrypted file size if it doesn't look plausible + if ((int)$fileInfo['size'] > 0 && (int)$fileInfo['unencrypted_size'] === 0 ) { + $fixSize = $util->getFileSize($path); + $fileInfo['unencrypted_size'] = $fixSize; + // put file info if not .part file + if (!Keymanager::isPartialFilePath($relativePath)) { + $view->putFileInfo($path, $fileInfo); + } + } $size = $fileInfo['unencrypted_size']; } else { // self healing if file was removed from file cache @@ -370,8 +364,6 @@ class Proxy extends \OC_FileProxy { $fileInfo = array(); } - $userId = \OCP\User::getUser(); - $util = new Util($view, $userId); $fixSize = $util->getFileSize($path); if ($fixSize > 0) { $size = $fixSize; diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 02955bb064..5ce5caf80c 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -254,16 +254,20 @@ class Stream { // If a keyfile already exists if ($this->encKeyfile) { + $shareKey = Keymanager::getShareKey($this->rootView, $this->userId, $this->relPath); + // if there is no valid private key return false if ($this->privateKey === false) { - // if private key is not valid redirect user to a error page - \OCA\Encryption\Helper::redirectToErrorPage(); - + \OCA\Encryption\Helper::redirectToErrorPage($this->session); return false; } - $shareKey = Keymanager::getShareKey($this->rootView, $this->userId, $this->relPath); + if ($shareKey === false) { + // if no share key is available redirect user to a error page + \OCA\Encryption\Helper::redirectToErrorPage($this->session, \OCA\Encryption\Crypt::ENCRYPTION_NO_SHARE_KEY_FOUND); + return false; + } $this->plainKey = Crypt::multiKeyDecrypt($this->encKeyfile, $shareKey, $this->privateKey); @@ -506,9 +510,10 @@ class Stream { // Get all users sharing the file includes current user $uniqueUserIds = $util->getSharingUsersArray($sharingEnabled, $this->relPath, $this->userId); + $checkedUserIds = $util->filterShareReadyUsers($uniqueUserIds); // Fetch public keys for all sharing users - $publicKeys = Keymanager::getPublicKeys($this->rootView, $uniqueUserIds); + $publicKeys = Keymanager::getPublicKeys($this->rootView, $checkedUserIds['ready']); // Encrypt enc key for all sharing users $this->encKeyfiles = Crypt::multiKeyEncrypt($this->plainKey, $publicKeys); diff --git a/apps/files_encryption/templates/invalid_private_key.php b/apps/files_encryption/templates/invalid_private_key.php index 9af65f831b..a3cae60b1d 100644 --- a/apps/files_encryption/templates/invalid_private_key.php +++ b/apps/files_encryption/templates/invalid_private_key.php @@ -4,7 +4,7 @@
- + p($l->t('Go directly to your ')); ?> t('personal settings')); ?>.
diff --git a/apps/files_encryption/templates/settings-admin.php b/apps/files_encryption/templates/settings-admin.php index 3a6adc09f4..231a68b6a5 100644 --- a/apps/files_encryption/templates/settings-admin.php +++ b/apps/files_encryption/templates/settings-admin.php @@ -1,10 +1,7 @@
-

- t('Encryption')); ?> -
-

+

t('Encryption')); ?>

t("Enable recovery key (allow to recover users files in case of password loss):")); ?> diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php index ff04556dd5..a4ed89b8a4 100644 --- a/apps/files_encryption/templates/settings-personal.php +++ b/apps/files_encryption/templates/settings-personal.php @@ -1,8 +1,6 @@

- - t( 'Encryption' ) ); ?> - +

t( 'Encryption' ) ); ?>

@@ -38,9 +36,8 @@

-
- +


@@ -65,6 +62,5 @@

-
diff --git a/apps/files_encryption/tests/proxy.php b/apps/files_encryption/tests/proxy.php index 5a2d851ff7..a22f12411f 100644 --- a/apps/files_encryption/tests/proxy.php +++ b/apps/files_encryption/tests/proxy.php @@ -1,220 +1,110 @@ , - * and Robin Appelman - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * ownCloud + * + * @author Bjoern Schiessle + * @copyright 2013 Bjoern Schiessle + * + * 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 . + * */ -// require_once "PHPUnit/Framework/TestCase.php"; -// require_once realpath( dirname(__FILE__).'/../../../lib/base.php' ); -// require_once realpath( dirname(__FILE__).'/../../../3rdparty/mockery/Mockery.php' ); -// require_once realpath( dirname(__FILE__).'/../../../3rdparty/mockery/Mockery/Generator.php' ); -// require_once realpath( dirname(__FILE__).'/../../../3rdparty/mockery/Mockery/MockInterface.php' ); -// require_once realpath( dirname(__FILE__).'/../../../3rdparty/mockery/Mockery/Mock.php' ); -// require_once realpath( dirname(__FILE__).'/../../../3rdparty/mockery/Mockery/Container.php' ); -// require_once realpath( dirname(__FILE__).'/../../../3rdparty/mockery/Mockery/Configuration.php' ); -// require_once realpath( dirname(__FILE__).'/../../../3rdparty/mockery/Mockery/CompositeExpectation.php' ); -// require_once realpath( dirname(__FILE__).'/../../../3rdparty/mockery/Mockery/ExpectationDirector.php' ); -// require_once realpath( dirname(__FILE__).'/../../../3rdparty/mockery/Mockery/Expectation.php' ); -// require_once realpath( dirname(__FILE__).'/../../../3rdparty/mockery/Mockery/Exception.php' ); -// require_once realpath( dirname(__FILE__).'/../../../3rdparty/mockery/Mockery/CountValidator/CountValidatorAbstract.php' ); -// require_once realpath( dirname(__FILE__).'/../../../3rdparty/mockery/Mockery/CountValidator/Exception.php' ); -// require_once realpath( dirname(__FILE__).'/../../../3rdparty/mockery/Mockery/CountValidator/Exact.php' ); -// -// use \Mockery as m; -// use OCA\Encryption; +require_once __DIR__ . '/../../../lib/base.php'; +require_once __DIR__ . '/../lib/crypt.php'; +require_once __DIR__ . '/../lib/keymanager.php'; +require_once __DIR__ . '/../lib/proxy.php'; +require_once __DIR__ . '/../lib/stream.php'; +require_once __DIR__ . '/../lib/util.php'; +require_once __DIR__ . '/../appinfo/app.php'; +require_once __DIR__ . '/util.php'; -// class Test_Util extends \PHPUnit_Framework_TestCase { -// -// public function setUp() { -// -// $this->proxy = new Encryption\Proxy(); -// -// $this->tmpFileName = "tmpFile-".time(); -// -// $this->privateKey = file_get_contents( realpath( dirname(__FILE__).'/data/admin.public.key' ) ); -// $this->publicKey = file_get_contents( realpath( dirname(__FILE__).'/data/admin.private.key' ) ); -// $this->encDataShort = file_get_contents( realpath( dirname(__FILE__).'/data/yoga-manchester-enc' ) ); -// $this->encDataShortKey = file_get_contents( realpath( dirname(__FILE__).'/data/yoga-manchester.key' ) ); -// -// $this->dataShort = file_get_contents( realpath( dirname(__FILE__).'/data/yoga-manchester' ) ); -// $this->dataLong = file_get_contents( realpath( dirname(__FILE__).'/../lib/crypt.php' ) ); -// $this->longDataPath = realpath( dirname(__FILE__).'/../lib/crypt.php' ); -// -// $this->data1 = file_get_contents( realpath( dirname(__FILE__).'/../../../data/admin/files/enc-test.txt' ) ); -// -// \OC_FileProxy::$enabled = false; -// $this->Encdata1 = file_get_contents( realpath( dirname(__FILE__).'/../../../data/admin/files/enc-test.txt' ) ); -// \OC_FileProxy::$enabled = true; -// -// $this->userId = 'admin'; -// $this->pass = 'admin'; -// -// $this->session = new Encryption\Session( $view ); // FIXME: Provide a $view object for use here -// -// $this->session->setPrivateKey( -// '-----BEGIN PRIVATE KEY----- -// MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDiH3EA4EpFA7Fx -// s2dyyfL5jwXeYXrTqQJ6DqKgGn8VsbT3eu8R9KzM2XitVwZe8c8L52DvJ06o5vg0 -// GqPYxilFdOFJe/ggac5Tq8UmJiZS4EqYEMwxBIfIyWTxeGV06/0HOwnVAkqHMcBz -// 64qldtgi5O8kZMEM2/gKBgU0kMLJzM+8oEWhL1+gsUWQhxd8cKLXypS6iWgqFJrz -// f/X0hJsJR+gyYxNpahtnjzd/LxLAETrOMsl2tue+BAxmjbAM0aG0NEM0div+b59s -// 2uz/iWbxImp5pOdYVKcVW89D4XBMyGegR40trV2VwiuX1blKCfdjMsJhiaL9pymp -// ug1wzyQFAgMBAAECggEAK6c+PZkPPXuVCgpEcliiW6NM0r2m5K3AGKgypQ34csu3 -// z/8foCvIIFPrhCtEw5eTDQ1CHWlNOjY8vHJYJ0U6Onpx86nHIRrMBkMm8FJ1G5LJ -// U8oKYXwqaozWu/cuPwA//OFc6I5krOzh5n8WaRMkbrgbor8AtebRX74By0AXGrXe -// cswJI7zR96oFn4Dm7Pgvpg5Zhk1vFJ+w6QtH+4DDJ6PBvlZsRkGxYBLGVd/3qhAI -// sBAyjFlSzuP4eCRhHOhHC/e4gmAH9evFVXB88jFyRZm3K+jQ5W5CwrVRBCV2lph6 -// 2B6P7CBJN+IjGKMhy+75y13UvvKPv9IwH8Fzl2x1gQKBgQD8qQOr7a6KhSj16wQE -// jim2xqt9gQ2jH5No405NrKs/PFQQZnzD4YseQsiK//NUjOJiUhaT+L5jhIpzINHt -// RJpt3bGkEZmLyjdjgTpB3GwZdXa28DNK9VdXZ19qIl/ZH0qAjKmJCRahUDASMnVi -// M4Pkk9yx9ZIKkri4TcuMWqc0DQKBgQDlHKBTITZq/arYPD6Nl3NsoOdqVRqJrGay -// 0TjXAVbBXe46+z5lnMsqwXb79nx14hdmSEsZULrw/3f+MnQbdjMTYLFP24visZg9 -// MN8vAiALiiiR1a+Crz+DTA1Q8sGOMVCMqMDmD7QBys3ZuWxuapm0txAiIYUtsjJZ -// XN76T4nZ2QKBgQCHaT3igzwsWTmesxowJtEMeGWomeXpKx8h89EfqA8PkRGsyIDN -// qq+YxEoe1RZgljEuaLhZDdNcGsjo8woPk9kAUPTH7fbRCMuutK+4ZJ469s1tNkcH -// QX5SBcEJbOrZvv967ehe3VQXmJZq6kgnHVzuwKBjcC2ZJRGDFY6l5l/+cQKBgCqh -// +Adf/8NK7paMJ0urqfPFwSodKfICXZ3apswDWMRkmSbqh4La+Uc8dsqN5Dz/VEFZ -// JHhSeGbN8uMfOlG93eU2MehdPxtw1pZUWMNjjtj23XO9ooob2CKzbSrp8TBnZsi1 -// widNNr66oTFpeo7VUUK6acsgF6sYJJxSVr+XO1yJAoGAEhvitq8shNKcEY0xCipS -// k1kbgyS7KKB7opVxI5+ChEqyUDijS3Y9FZixrRIWE6i2uGu86UG+v2lbKvSbM4Qm -// xvbOcX9OVMnlRb7n8woOP10UMY+ZE2x+YEUXQTLtPYq7F66e1OfxltstMxLQA+3d -// Y1d5piFV8PXK3Fg2F+Cj5qg= -// -----END PRIVATE KEY----- -// ' -// , $this->userId -// ); -// -// \OC_User::setUserId( $this->userId ); -// -// } -// -// public function testpreFile_get_contents() { -// -// // This won't work for now because mocking of the static keymanager class isn't working :( -// -// // $mock = m::mock( 'alias:OCA\Encryption\Keymanager' ); -// // -// // $mock->shouldReceive( 'getFileKey' )->times(2)->andReturn( $this->encDataShort ); -// // -// // $encrypted = $this->proxy->postFile_get_contents( 'data/'.$this->tmpFileName, $this->encDataShortKey ); -// // -// // $this->assertNotEquals( $this->dataShort, $encrypted ); -// -// $decrypted = $this->proxy->postFile_get_contents( 'data/admin/files/enc-test.txt', $this->data1 ); -// -// } -// -// } +use OCA\Encryption; -// class Test_CryptProxy extends PHPUnit_Framework_TestCase { -// private $oldConfig; -// private $oldKey; -// -// public function setUp(){ -// $user=OC_User::getUser(); -// -// $this->oldConfig=OCP\Config::getAppValue('files_encryption','enable_encryption','true'); -// OCP\Config::setAppValue('files_encryption','enable_encryption','true'); -// $this->oldKey=isset($_SESSION['privateKey'])?$_SESSION['privateKey']:null; -// -// -// //set testing key -// $_SESSION['privateKey']=md5(time()); -// -// //clear all proxies and hooks so we can do clean testing -// OC_FileProxy::clearProxies(); -// OC_Hook::clear('OC_Filesystem'); -// -// //enable only the encryption hook -// OC_FileProxy::register(new OC_FileProxy_Encryption()); -// -// //set up temporary storage -// OC_Filesystem::clearMounts(); -// OC_Filesystem::mount('OC_Filestorage_Temporary',array(),'/'); -// -// OC_Filesystem::init('/'.$user.'/files'); -// -// //set up the users home folder in the temp storage -// $rootView=new OC_FilesystemView(''); -// $rootView->mkdir('/'.$user); -// $rootView->mkdir('/'.$user.'/files'); -// } -// -// public function tearDown(){ -// OCP\Config::setAppValue('files_encryption','enable_encryption',$this->oldConfig); -// if(!is_null($this->oldKey)){ -// $_SESSION['privateKey']=$this->oldKey; -// } -// } -// -// public function testSimple(){ -// $file=OC::$SERVERROOT.'/3rdparty/MDB2.php'; -// $original=file_get_contents($file); -// -// OC_Filesystem::file_put_contents('/file',$original); -// -// OC_FileProxy::$enabled=false; -// $stored=OC_Filesystem::file_get_contents('/file'); -// OC_FileProxy::$enabled=true; -// -// $fromFile=OC_Filesystem::file_get_contents('/file'); -// $this->assertNotEquals($original,$stored); -// $this->assertEquals(strlen($original),strlen($fromFile)); -// $this->assertEquals($original,$fromFile); -// -// } -// -// public function testView(){ -// $file=OC::$SERVERROOT.'/3rdparty/MDB2.php'; -// $original=file_get_contents($file); -// -// $rootView=new OC_FilesystemView(''); -// $view=new OC_FilesystemView('/'.OC_User::getUser()); -// $userDir='/'.OC_User::getUser().'/files'; -// -// $rootView->file_put_contents($userDir.'/file',$original); -// -// OC_FileProxy::$enabled=false; -// $stored=$rootView->file_get_contents($userDir.'/file'); -// OC_FileProxy::$enabled=true; -// -// $this->assertNotEquals($original,$stored); -// $fromFile=$rootView->file_get_contents($userDir.'/file'); -// $this->assertEquals($original,$fromFile); -// -// $fromFile=$view->file_get_contents('files/file'); -// $this->assertEquals($original,$fromFile); -// } -// -// public function testBinary(){ -// $file=__DIR__.'/binary'; -// $original=file_get_contents($file); -// -// OC_Filesystem::file_put_contents('/file',$original); -// -// OC_FileProxy::$enabled=false; -// $stored=OC_Filesystem::file_get_contents('/file'); -// OC_FileProxy::$enabled=true; -// -// $fromFile=OC_Filesystem::file_get_contents('/file'); -// $this->assertNotEquals($original,$stored); -// $this->assertEquals(strlen($original),strlen($fromFile)); -// $this->assertEquals($original,$fromFile); -// -// $file=__DIR__.'/zeros'; -// $original=file_get_contents($file); -// -// OC_Filesystem::file_put_contents('/file',$original); -// -// OC_FileProxy::$enabled=false; -// $stored=OC_Filesystem::file_get_contents('/file'); -// OC_FileProxy::$enabled=true; -// -// $fromFile=OC_Filesystem::file_get_contents('/file'); -// $this->assertNotEquals($original,$stored); -// $this->assertEquals(strlen($original),strlen($fromFile)); -// } -// } +/** + * Class Test_Encryption_Proxy + * @brief this class provide basic proxy app tests + */ +class Test_Encryption_Proxy extends \PHPUnit_Framework_TestCase { + + const TEST_ENCRYPTION_PROXY_USER1 = "test-proxy-user1"; + + public $userId; + public $pass; + /** + * @var \OC_FilesystemView + */ + public $view; + public $data; + + public static function setUpBeforeClass() { + // reset backend + \OC_User::clearBackends(); + \OC_User::useBackend('database'); + + \OC_Hook::clear('OC_Filesystem'); + \OC_Hook::clear('OC_User'); + + // Filesystem related hooks + \OCA\Encryption\Helper::registerFilesystemHooks(); + + // clear and register hooks + \OC_FileProxy::clearProxies(); + \OC_FileProxy::register(new OCA\Encryption\Proxy()); + + // create test user + \Test_Encryption_Util::loginHelper(\Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1, true); + } + + function setUp() { + // set user id + \OC_User::setUserId(\Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1); + $this->userId = \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1; + $this->pass = \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1; + + // init filesystem view + $this->view = new \OC_FilesystemView('/'. \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1 . '/files'); + + // init short data + $this->data = 'hats'; + } + + public static function tearDownAfterClass() { + // cleanup test user + \OC_User::deleteUser(\Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1); + } + + /** + * @medium + * @brief test if postFileSize returns the unencrypted file size + */ + function testPostFileSize() { + + // generate filename + $filename = 'tmp-' . time() . '.txt'; + + $this->view->file_put_contents($filename, $this->data); + + \OC_FileProxy::$enabled = false; + + $unencryptedSize = $this->view->filesize($filename); + + \OC_FileProxy::$enabled = true; + + $encryptedSize = $this->view->filesize($filename); + + $this->assertTrue($encryptedSize !== $unencryptedSize); + + } + +} diff --git a/apps/files_external/3rdparty/smb4php/smb.php b/apps/files_external/3rdparty/smb4php/smb.php index e7d1dfa09f..e91b0a5958 100644 --- a/apps/files_external/3rdparty/smb4php/smb.php +++ b/apps/files_external/3rdparty/smb4php/smb.php @@ -181,6 +181,8 @@ class smb { return false; }elseif(substr($regs[0],0,31)=='NT_STATUS_OBJECT_PATH_NOT_FOUND'){ return false; + }elseif(substr($regs[0],0,31)=='NT_STATUS_OBJECT_NAME_NOT_FOUND'){ + return false; }elseif(substr($regs[0],0,29)=='NT_STATUS_FILE_IS_A_DIRECTORY'){ return false; } @@ -305,7 +307,8 @@ class smb { trigger_error('rename(): error in URL', E_USER_ERROR); } smb::clearstatcache ($url_from); - return smb::execute ('rename "'.$from['path'].'" "'.$to['path'].'"', $to); + $result = smb::execute ('rename "'.$from['path'].'" "'.$to['path'].'"', $to); + return $result !== false; } function mkdir ($url, $mode, $options) { @@ -430,7 +433,10 @@ class smb_stream_wrapper extends smb { case 'rb': case 'a': case 'a+': $this->tmpfile = tempnam('/tmp', 'smb.down.'); - smb::execute ('get "'.$pu['path'].'" "'.$this->tmpfile.'"', $pu); + $result = smb::execute ('get "'.$pu['path'].'" "'.$this->tmpfile.'"', $pu); + if($result === false){ + return $result; + } break; case 'w': case 'w+': diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index f2f40247b2..0ebae9d82b 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -4,7 +4,6 @@ td.status > span { width: 16px; vertical-align: text-bottom; } - span.success { background: #37ce02; border-radius: 8px; @@ -12,9 +11,6 @@ span.success { span.error { background: #ce3702; } -span.waiting { - background: none; -} td.mountPoint, td.backend { width:10em; } td.remove>img { visibility:hidden; padding-top:0.8em; } diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 3e605c59a9..886c324e33 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -1,10 +1,23 @@ +(function(){ + +function updateStatus(statusEl, result){ + statusEl.removeClass('success error loading-small'); + if (result && result.status == 'success' && result.data.message) { + statusEl.addClass('success'); + return true; + } else { + statusEl.addClass('error'); + return false; + } +} + OC.MountConfig={ saveStorage:function(tr) { var mountPoint = $(tr).find('.mountPoint input').val(); if (mountPoint == '') { return false; } - var statusSpan = $(tr).find('.status span'); + var statusSpan = $(tr).closest('tr').find('.status span'); var backendClass = $(tr).find('.backend').data('class'); var configuration = $(tr).find('.configuration input'); var addMountPoint = true; @@ -58,6 +71,7 @@ OC.MountConfig={ } users.push(applicable); } + statusSpan.addClass('loading-small').removeClass('error success'); $.ajax({type: 'POST', url: OC.filePath('files_external', 'ajax', 'addMountPoint.php'), data: { @@ -68,15 +82,11 @@ OC.MountConfig={ applicable: applicable, isPersonal: isPersonal }, - async: false, success: function(result) { - statusSpan.removeClass(); - if (result && result.status == 'success' && result.data.message) { - status = true; - statusSpan.addClass('success'); - } else { - statusSpan.addClass('error'); - } + status = updateStatus(statusSpan, result); + }, + error: function(result){ + status = updateStatus(statusSpan, result); } }); }); @@ -93,8 +103,7 @@ OC.MountConfig={ mountType: mountType, applicable: applicable, isPersonal: isPersonal - }, - async: false + } }); }); var mountType = 'user'; @@ -108,14 +117,14 @@ OC.MountConfig={ mountType: mountType, applicable: applicable, isPersonal: isPersonal - }, - async: false + } }); }); } else { var isPersonal = true; var mountType = 'user'; var applicable = OC.currentUser; + statusSpan.addClass('loading-small').removeClass('error success'); $.ajax({type: 'POST', url: OC.filePath('files_external', 'ajax', 'addMountPoint.php'), data: { @@ -126,15 +135,11 @@ OC.MountConfig={ applicable: applicable, isPersonal: isPersonal }, - async: false, success: function(result) { - statusSpan.removeClass(); - if (result && result.status == 'success' && result.data.message) { - status = true; - statusSpan.addClass('success'); - } else { - statusSpan.addClass('error'); - } + status = updateStatus(statusSpan, result); + }, + error: function(result){ + status = updateStatus(statusSpan, result); } }); } @@ -157,7 +162,7 @@ $(document).ready(function() { $(tr).find('.mountPoint input').val(suggestMountPoint(selected)); } $(tr).addClass(backendClass); - $(tr).find('.status').append(''); + $(tr).find('.status').append(''); $(tr).find('.backend').data('class', backendClass); var configurations = $(this).data('configurations'); var td = $(tr).find('td.configuration'); @@ -293,3 +298,5 @@ $(document).ready(function() { }); }); + +})(); diff --git a/apps/files_external/l10n/ar.php b/apps/files_external/l10n/ar.php index 905d221e88..055c689582 100644 --- a/apps/files_external/l10n/ar.php +++ b/apps/files_external/l10n/ar.php @@ -1,5 +1,7 @@ "اسم المجلد", +"All Users" => "كل المستخدمين", "Groups" => "مجموعات", "Users" => "المستخدمين", "Delete" => "إلغاء" diff --git a/apps/files_external/lib/streamwrapper.php b/apps/files_external/lib/streamwrapper.php index beb4ec5605..4a63dfb6e0 100644 --- a/apps/files_external/lib/streamwrapper.php +++ b/apps/files_external/lib/streamwrapper.php @@ -8,7 +8,7 @@ namespace OC\Files\Storage; -abstract class StreamWrapper extends Common{ +abstract class StreamWrapper extends Common { abstract public function constructUrl($path); public function mkdir($path) { @@ -16,7 +16,15 @@ abstract class StreamWrapper extends Common{ } public function rmdir($path) { - if($this->file_exists($path)) { + if ($this->file_exists($path)) { + $dh = $this->opendir($path); + while (($file = readdir($dh)) !== false) { + if ($this->is_dir($path . '/' . $file)) { + $this->rmdir($path . '/' . $file); + } else { + $this->unlink($path . '/' . $file); + } + } $success = rmdir($this->constructUrl($path)); clearstatcache(); return $success; @@ -34,11 +42,11 @@ abstract class StreamWrapper extends Common{ } public function isReadable($path) { - return true;//not properly supported + return true; //not properly supported } public function isUpdatable($path) { - return true;//not properly supported + return true; //not properly supported } public function file_exists($path) { @@ -55,15 +63,19 @@ abstract class StreamWrapper extends Common{ return fopen($this->constructUrl($path), $mode); } - public function touch($path, $mtime=null) { - if(is_null($mtime)) { - $fh = $this->fopen($path, 'a'); - fwrite($fh, ''); - fclose($fh); + public function touch($path, $mtime = null) { + if ($this->file_exists($path)) { + if (is_null($mtime)) { + $fh = $this->fopen($path, 'a'); + fwrite($fh, ''); + fclose($fh); - return true; + return true; + } else { + return false; //not supported + } } else { - return false;//not supported + $this->file_put_contents($path, ''); } } diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 028a384cf3..0d318a183c 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -2,7 +2,7 @@

t('External Storage')); ?>

'')) print_unescaped(''.$_['dependencies'].''); ?> - '> +
'> diff --git a/apps/files_external/tests/smb.php b/apps/files_external/tests/smb.php index ca2a93c894..0291f293fa 100644 --- a/apps/files_external/tests/smb.php +++ b/apps/files_external/tests/smb.php @@ -15,7 +15,7 @@ class SMB extends Storage { public function setUp() { $id = uniqid(); $this->config = include('files_external/tests/config.php'); - if ( ! is_array($this->config) or ! isset($this->config['smb']) or ! $this->config['smb']['run']) { + if (!is_array($this->config) or !isset($this->config['smb']) or !$this->config['smb']['run']) { $this->markTestSkipped('Samba backend not configured'); } $this->config['smb']['root'] .= $id; //make sure we have an new empty folder to work in @@ -28,4 +28,11 @@ class SMB extends Storage { \OCP\Files::rmdirr($this->instance->constructUrl('')); } } + + public function testRenameWithSpaces() { + $this->instance->mkdir('with spaces'); + $result = $this->instance->rename('with spaces', 'foo bar'); + $this->assertTrue($result); + $this->assertTrue($this->instance->is_dir('foo bar')); + } } diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index bc33dd4043..0d827da28e 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -70,10 +70,10 @@ if (version_compare($installedVersion, '0.3', '<')) { } // clean up oc_share table from files which are no longer exists -if (version_compare($installedVersion, '0.3.4', '<')) { +if (version_compare($installedVersion, '0.3.5', '<')) { // get all shares where the original file no longer exists - $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL'); + $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (\'file\', \'folder\')'); $sharesFound = $findShares->execute(array())->fetchAll(); // delete those shares from the oc_share table diff --git a/apps/files_sharing/appinfo/version b/apps/files_sharing/appinfo/version index 448a0fa11c..09e9157034 100644 --- a/apps/files_sharing/appinfo/version +++ b/apps/files_sharing/appinfo/version @@ -1 +1 @@ -0.3.4 \ No newline at end of file +0.3.5 \ No newline at end of file diff --git a/apps/files_sharing/css/authenticate.css b/apps/files_sharing/css/authenticate.css new file mode 100644 index 0000000000..cebe906dd5 --- /dev/null +++ b/apps/files_sharing/css/authenticate.css @@ -0,0 +1,26 @@ +#body-login form label.infield { + width: 190px; + padding: 10px; + left: 8px; + top: 8px; +} + +#password { + width: 190px !important; + padding: 10px; + margin: 6px; +} + +input[type="submit"]{ + width: 45px; + height: 45px; + margin: 6px; + background-image: url('%webroot%/core/img/actions/confirm.svg'); + background-repeat: no-repeat; + background-position: center; +} + +#body-login input[type="submit"] { + position: absolute; + top: 0px; +} diff --git a/apps/files_sharing/l10n/ar.php b/apps/files_sharing/l10n/ar.php index ff7b40d16b..2625af1cc0 100644 --- a/apps/files_sharing/l10n/ar.php +++ b/apps/files_sharing/l10n/ar.php @@ -1,7 +1,6 @@ "كلمة المرور", -"Submit" => "تطبيق", "%s shared the folder %s with you" => "%s شارك المجلد %s معك", "%s shared the file %s with you" => "%s شارك الملف %s معك", "Download" => "تحميل", diff --git a/apps/files_sharing/l10n/bg_BG.php b/apps/files_sharing/l10n/bg_BG.php index 1094870fd0..f4b9e2dd5f 100644 --- a/apps/files_sharing/l10n/bg_BG.php +++ b/apps/files_sharing/l10n/bg_BG.php @@ -1,7 +1,6 @@ "Парола", -"Submit" => "Потвърждение", "%s shared the folder %s with you" => "%s сподели папката %s с Вас", "%s shared the file %s with you" => "%s сподели файла %s с Вас", "Download" => "Изтегляне", diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php index 71b948e347..aaed904d9d 100644 --- a/apps/files_sharing/l10n/bn_BD.php +++ b/apps/files_sharing/l10n/bn_BD.php @@ -1,7 +1,6 @@ "কূটশব্দ", -"Submit" => "জমা দিন", "%s shared the folder %s with you" => "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন", "%s shared the file %s with you" => "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন", "Download" => "ডাউনলোড", diff --git a/apps/files_sharing/l10n/ca.php b/apps/files_sharing/l10n/ca.php index cbe8f86e25..e5e5910f8c 100644 --- a/apps/files_sharing/l10n/ca.php +++ b/apps/files_sharing/l10n/ca.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "la contrasenya és incorrecta. Intenteu-ho de nou.", "Password" => "Contrasenya", -"Submit" => "Envia", "Sorry, this link doesn’t seem to work anymore." => "Aquest enllaç sembla que no funciona.", "Reasons might be:" => "Les raons podrien ser:", "the item was removed" => "l'element ha estat eliminat", diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index 7258dedcf6..192c4a7957 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -1,8 +1,8 @@ "Toto sdílení je chráněno heslem", "The password is wrong. Try again." => "Heslo není správné. Zkuste to znovu.", "Password" => "Heslo", -"Submit" => "Odeslat", "Sorry, this link doesn’t seem to work anymore." => "Je nám líto, ale tento odkaz již není funkční.", "Reasons might be:" => "Možné důvody:", "the item was removed" => "položka byla odebrána", diff --git a/apps/files_sharing/l10n/cy_GB.php b/apps/files_sharing/l10n/cy_GB.php index 66fbc4e1d1..d2ae28141d 100644 --- a/apps/files_sharing/l10n/cy_GB.php +++ b/apps/files_sharing/l10n/cy_GB.php @@ -1,7 +1,6 @@ "Cyfrinair", -"Submit" => "Cyflwyno", "%s shared the folder %s with you" => "Rhannodd %s blygell %s â chi", "%s shared the file %s with you" => "Rhannodd %s ffeil %s â chi", "Download" => "Llwytho i lawr", diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php index 0ca0f38161..aef3ad9881 100644 --- a/apps/files_sharing/l10n/da.php +++ b/apps/files_sharing/l10n/da.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Kodeordet er forkert. Prøv igen.", "Password" => "Kodeord", -"Submit" => "Send", "Sorry, this link doesn’t seem to work anymore." => "Desværre, dette link ser ikke ud til at fungerer længere.", "Reasons might be:" => "Årsagen kan være:", "the item was removed" => "Filen blev fjernet", diff --git a/apps/files_sharing/l10n/de.php b/apps/files_sharing/l10n/de.php index afed17d883..bfec2ced10 100644 --- a/apps/files_sharing/l10n/de.php +++ b/apps/files_sharing/l10n/de.php @@ -1,8 +1,8 @@ "Diese Freigabe ist durch ein Passwort geschützt", "The password is wrong. Try again." => "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut.", "Password" => "Passwort", -"Submit" => "Absenden", "Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", "Reasons might be:" => "Gründe könnten sein:", "the item was removed" => "Die Elemente wurden entfernt", diff --git a/apps/files_sharing/l10n/de_CH.php b/apps/files_sharing/l10n/de_CH.php index 1bd24f9d9c..f63714b902 100644 --- a/apps/files_sharing/l10n/de_CH.php +++ b/apps/files_sharing/l10n/de_CH.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" => "Passwort", -"Submit" => "Bestätigen", "Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", "Reasons might be:" => "Gründe könnten sein:", "the item was removed" => "Das Element wurde entfernt", diff --git a/apps/files_sharing/l10n/de_DE.php b/apps/files_sharing/l10n/de_DE.php index 1bd24f9d9c..fa0080088d 100644 --- a/apps/files_sharing/l10n/de_DE.php +++ b/apps/files_sharing/l10n/de_DE.php @@ -1,8 +1,8 @@ "Diese Freigabe ist durch ein Passwort geschützt", "The password is wrong. Try again." => "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" => "Passwort", -"Submit" => "Bestätigen", "Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", "Reasons might be:" => "Gründe könnten sein:", "the item was removed" => "Das Element wurde entfernt", diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index 93486a831b..4584e261b0 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Εσφαλμένο συνθηματικό. Προσπαθήστε ξανά.", "Password" => "Συνθηματικό", -"Submit" => "Καταχώρηση", "Sorry, this link doesn’t seem to work anymore." => "Συγγνώμη, αυτός ο σύνδεσμος μοιάζει να μην ισχύει πια.", "Reasons might be:" => "Οι λόγοι μπορεί να είναι:", "the item was removed" => "το αντικείμενο απομακρύνθηκε", diff --git a/apps/files_sharing/l10n/en@pirate.php b/apps/files_sharing/l10n/en@pirate.php index a60f1fe72f..cd3c00d29d 100644 --- a/apps/files_sharing/l10n/en@pirate.php +++ b/apps/files_sharing/l10n/en@pirate.php @@ -1,7 +1,6 @@ "Secret Code", -"Submit" => "Submit", "%s shared the folder %s with you" => "%s shared the folder %s with you", "%s shared the file %s with you" => "%s shared the file %s with you", "Download" => "Download", diff --git a/apps/files_sharing/l10n/en_GB.php b/apps/files_sharing/l10n/en_GB.php index 337c108651..b0db7ebc90 100644 --- a/apps/files_sharing/l10n/en_GB.php +++ b/apps/files_sharing/l10n/en_GB.php @@ -1,8 +1,8 @@ "This share is password-protected", "The password is wrong. Try again." => "The password is wrong. Try again.", "Password" => "Password", -"Submit" => "Submit", "Sorry, this link doesn’t seem to work anymore." => "Sorry, this link doesn’t seem to work anymore.", "Reasons might be:" => "Reasons might be:", "the item was removed" => "the item was removed", diff --git a/apps/files_sharing/l10n/eo.php b/apps/files_sharing/l10n/eo.php index 70e703bda9..294dc0314c 100644 --- a/apps/files_sharing/l10n/eo.php +++ b/apps/files_sharing/l10n/eo.php @@ -1,7 +1,6 @@ "Pasvorto", -"Submit" => "Sendi", "%s shared the folder %s with you" => "%s kunhavigis la dosierujon %s kun vi", "%s shared the file %s with you" => "%s kunhavigis la dosieron %s kun vi", "Download" => "Elŝuti", diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index e163da766f..9d214e79e2 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -1,8 +1,8 @@ "Este elemento compartido esta protegido por contraseña", "The password is wrong. Try again." => "La contraseña introducida es errónea. Inténtelo de nuevo.", "Password" => "Contraseña", -"Submit" => "Enviar", "Sorry, this link doesn’t seem to work anymore." => "Vaya, este enlace parece que no volverá a funcionar.", "Reasons might be:" => "Las causas podrían ser:", "the item was removed" => "el elemento fue eliminado", diff --git a/apps/files_sharing/l10n/es_AR.php b/apps/files_sharing/l10n/es_AR.php index 7c9dcb94ac..989a91a450 100644 --- a/apps/files_sharing/l10n/es_AR.php +++ b/apps/files_sharing/l10n/es_AR.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "La contraseña no es correcta. Probá de nuevo.", "Password" => "Contraseña", -"Submit" => "Enviar", "Sorry, this link doesn’t seem to work anymore." => "Perdón, este enlace parece no funcionar más.", "Reasons might be:" => "Las causas podrían ser:", "the item was removed" => "el elemento fue borrado", diff --git a/apps/files_sharing/l10n/et_EE.php b/apps/files_sharing/l10n/et_EE.php index fe230902ff..71218625f8 100644 --- a/apps/files_sharing/l10n/et_EE.php +++ b/apps/files_sharing/l10n/et_EE.php @@ -1,8 +1,8 @@ "See jagamine on parooliga kaitstud", "The password is wrong. Try again." => "Parool on vale. Proovi uuesti.", "Password" => "Parool", -"Submit" => "Saada", "Sorry, this link doesn’t seem to work anymore." => "Vabandust, see link ei tundu enam toimivat.", "Reasons might be:" => "Põhjused võivad olla:", "the item was removed" => "üksus on eemaldatud", diff --git a/apps/files_sharing/l10n/eu.php b/apps/files_sharing/l10n/eu.php index 7b6a4b08b3..91be195368 100644 --- a/apps/files_sharing/l10n/eu.php +++ b/apps/files_sharing/l10n/eu.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Pasahitza ez da egokia. Saiatu berriro.", "Password" => "Pasahitza", -"Submit" => "Bidali", "Sorry, this link doesn’t seem to work anymore." => "Barkatu, lotura ez dirudi eskuragarria dagoenik.", "Reasons might be:" => "Arrazoiak hurrengoak litezke:", "the item was removed" => "fitxategia ezbatua izan da", diff --git a/apps/files_sharing/l10n/fa.php b/apps/files_sharing/l10n/fa.php index 48888f798a..664338723c 100644 --- a/apps/files_sharing/l10n/fa.php +++ b/apps/files_sharing/l10n/fa.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "رمزعبور اشتباه می باشد. دوباره امتحان کنید.", "Password" => "گذرواژه", -"Submit" => "ثبت", "%s shared the folder %s with you" => "%sپوشه %s را با شما به اشتراک گذاشت", "%s shared the file %s with you" => "%sفایل %s را با شما به اشتراک گذاشت", "Download" => "دانلود", diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index 42905be57a..44942fe30a 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -1,8 +1,8 @@ "Tämä jako on suojattu salasanalla", "The password is wrong. Try again." => "Väärä salasana. Yritä uudelleen.", "Password" => "Salasana", -"Submit" => "Lähetä", "Sorry, this link doesn’t seem to work anymore." => "Valitettavasti linkki ei vaikuta enää toimivan.", "Reasons might be:" => "Mahdollisia syitä:", "the item was removed" => "kohde poistettiin", diff --git a/apps/files_sharing/l10n/fr.php b/apps/files_sharing/l10n/fr.php index c97a1db97e..11cfabc22f 100644 --- a/apps/files_sharing/l10n/fr.php +++ b/apps/files_sharing/l10n/fr.php @@ -1,8 +1,8 @@ "Ce partage est protégé par un mot de passe", "The password is wrong. Try again." => "Le mot de passe est incorrect. Veuillez réessayer.", "Password" => "Mot de passe", -"Submit" => "Envoyer", "Sorry, this link doesn’t seem to work anymore." => "Désolé, mais le lien semble ne plus fonctionner.", "Reasons might be:" => "Les raisons peuvent être :", "the item was removed" => "l'item a été supprimé", diff --git a/apps/files_sharing/l10n/gl.php b/apps/files_sharing/l10n/gl.php index 66b1f0e5ff..c58199ffdb 100644 --- a/apps/files_sharing/l10n/gl.php +++ b/apps/files_sharing/l10n/gl.php @@ -1,8 +1,8 @@ "Esta compartición está protexida con contrasinal", "The password is wrong. Try again." => "O contrasinal é incorrecto. Ténteo de novo.", "Password" => "Contrasinal", -"Submit" => "Enviar", "Sorry, this link doesn’t seem to work anymore." => "Semella que esta ligazón non funciona.", "Reasons might be:" => "As razóns poderían ser:", "the item was removed" => "o elemento foi retirado", diff --git a/apps/files_sharing/l10n/he.php b/apps/files_sharing/l10n/he.php index f8b304898c..217298fedd 100644 --- a/apps/files_sharing/l10n/he.php +++ b/apps/files_sharing/l10n/he.php @@ -1,7 +1,6 @@ "סיסמא", -"Submit" => "שליחה", "%s shared the folder %s with you" => "%s שיתף עמך את התיקייה %s", "%s shared the file %s with you" => "%s שיתף עמך את הקובץ %s", "Download" => "הורדה", diff --git a/apps/files_sharing/l10n/hr.php b/apps/files_sharing/l10n/hr.php index 87eb956706..4a82dd7f71 100644 --- a/apps/files_sharing/l10n/hr.php +++ b/apps/files_sharing/l10n/hr.php @@ -1,7 +1,6 @@ "Lozinka", -"Submit" => "Pošalji", "Download" => "Preuzimanje", "Upload" => "Učitaj", "Cancel upload" => "Prekini upload" diff --git a/apps/files_sharing/l10n/hu_HU.php b/apps/files_sharing/l10n/hu_HU.php index 7ef69b1e0b..423af30aae 100644 --- a/apps/files_sharing/l10n/hu_HU.php +++ b/apps/files_sharing/l10n/hu_HU.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "A megadott jelszó nem megfelelő. Próbálja újra!", "Password" => "Jelszó", -"Submit" => "Elküld", "Sorry, this link doesn’t seem to work anymore." => "Sajnos úgy tűnik, ez a link már nem működik.", "Reasons might be:" => "Ennek az oka a következő lehet:", "the item was removed" => "az állományt időközben eltávolították", diff --git a/apps/files_sharing/l10n/hy.php b/apps/files_sharing/l10n/hy.php index d4cb416f45..da200623e0 100644 --- a/apps/files_sharing/l10n/hy.php +++ b/apps/files_sharing/l10n/hy.php @@ -1,6 +1,5 @@ "Հաստատել", "Download" => "Բեռնել" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ia.php b/apps/files_sharing/l10n/ia.php index 5112501073..f9d6c33a0b 100644 --- a/apps/files_sharing/l10n/ia.php +++ b/apps/files_sharing/l10n/ia.php @@ -1,7 +1,6 @@ "Contrasigno", -"Submit" => "Submitter", "Download" => "Discargar", "Upload" => "Incargar" ); diff --git a/apps/files_sharing/l10n/id.php b/apps/files_sharing/l10n/id.php index a4d73bd2b7..e91ef94bf3 100644 --- a/apps/files_sharing/l10n/id.php +++ b/apps/files_sharing/l10n/id.php @@ -1,7 +1,6 @@ "Sandi", -"Submit" => "Kirim", "%s shared the folder %s with you" => "%s membagikan folder %s dengan Anda", "%s shared the file %s with you" => "%s membagikan file %s dengan Anda", "Download" => "Unduh", diff --git a/apps/files_sharing/l10n/is.php b/apps/files_sharing/l10n/is.php index 05241d3f9e..8ae8e48eff 100644 --- a/apps/files_sharing/l10n/is.php +++ b/apps/files_sharing/l10n/is.php @@ -1,7 +1,6 @@ "Lykilorð", -"Submit" => "Senda", "%s shared the folder %s with you" => "%s deildi möppunni %s með þér", "%s shared the file %s with you" => "%s deildi skránni %s með þér", "Download" => "Niðurhal", diff --git a/apps/files_sharing/l10n/it.php b/apps/files_sharing/l10n/it.php index a611e0641c..c5d4a4db3e 100644 --- a/apps/files_sharing/l10n/it.php +++ b/apps/files_sharing/l10n/it.php @@ -1,8 +1,8 @@ "Questa condivione è protetta da password", "The password is wrong. Try again." => "La password è errata. Prova ancora.", "Password" => "Password", -"Submit" => "Invia", "Sorry, this link doesn’t seem to work anymore." => "Spiacenti, questo collegamento sembra non essere più attivo.", "Reasons might be:" => "I motivi potrebbero essere:", "the item was removed" => "l'elemento è stato rimosso", diff --git a/apps/files_sharing/l10n/ja_JP.php b/apps/files_sharing/l10n/ja_JP.php index 4f7d5b31c2..0eafd9ea81 100644 --- a/apps/files_sharing/l10n/ja_JP.php +++ b/apps/files_sharing/l10n/ja_JP.php @@ -1,8 +1,8 @@ "この共有はパスワードで保護されています", "The password is wrong. Try again." => "パスワードが間違っています。再試行してください。", "Password" => "パスワード", -"Submit" => "送信", "Sorry, this link doesn’t seem to work anymore." => "申し訳ございません。このリンクはもう利用できません。", "Reasons might be:" => "理由は以下の通りと考えられます:", "the item was removed" => "アイテムが削除されました", diff --git a/apps/files_sharing/l10n/ka_GE.php b/apps/files_sharing/l10n/ka_GE.php index a5a80b3c5a..89a6800b3e 100644 --- a/apps/files_sharing/l10n/ka_GE.php +++ b/apps/files_sharing/l10n/ka_GE.php @@ -1,7 +1,6 @@ "პაროლი", -"Submit" => "გაგზავნა", "%s shared the folder %s with you" => "%s–მა გაგიზიარათ ფოლდერი %s", "%s shared the file %s with you" => "%s–მა გაგიზიარათ ფაილი %s", "Download" => "ჩამოტვირთვა", diff --git a/apps/files_sharing/l10n/ko.php b/apps/files_sharing/l10n/ko.php index f7eab1ac55..90f59ed167 100644 --- a/apps/files_sharing/l10n/ko.php +++ b/apps/files_sharing/l10n/ko.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "비밀번호가 틀립니다. 다시 입력해주세요.", "Password" => "암호", -"Submit" => "제출", "Sorry, this link doesn’t seem to work anymore." => "죄송합니다만 이 링크는 더이상 작동되지 않습니다.", "Reasons might be:" => "이유는 다음과 같을 수 있습니다:", "the item was removed" => "이 항목은 삭제되었습니다", diff --git a/apps/files_sharing/l10n/ku_IQ.php b/apps/files_sharing/l10n/ku_IQ.php index 55576a19c3..6b4b7e4ba9 100644 --- a/apps/files_sharing/l10n/ku_IQ.php +++ b/apps/files_sharing/l10n/ku_IQ.php @@ -1,7 +1,6 @@ "وشەی تێپەربو", -"Submit" => "ناردن", "%s shared the folder %s with you" => "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ", "%s shared the file %s with you" => "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ", "Download" => "داگرتن", diff --git a/apps/files_sharing/l10n/lb.php b/apps/files_sharing/l10n/lb.php index d37a1d9d22..eeb6a3e2dc 100644 --- a/apps/files_sharing/l10n/lb.php +++ b/apps/files_sharing/l10n/lb.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Den Passwuert ass incorrect. Probeier ed nach eng keier.", "Password" => "Passwuert", -"Submit" => "Fortschécken", "%s shared the folder %s with you" => "%s huet den Dossier %s mad der gedeelt", "%s shared the file %s with you" => "%s deelt den Fichier %s mad dir", "Download" => "Download", diff --git a/apps/files_sharing/l10n/lt_LT.php b/apps/files_sharing/l10n/lt_LT.php index 90ae6a39a0..fe4a82e064 100644 --- a/apps/files_sharing/l10n/lt_LT.php +++ b/apps/files_sharing/l10n/lt_LT.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Netinka slaptažodis: Bandykite dar kartą.", "Password" => "Slaptažodis", -"Submit" => "Išsaugoti", "Sorry, this link doesn’t seem to work anymore." => "Atleiskite, panašu, kad nuoroda yra neveiksni.", "Reasons might be:" => "Galimos priežastys:", "the item was removed" => "elementas buvo pašalintas", diff --git a/apps/files_sharing/l10n/lv.php b/apps/files_sharing/l10n/lv.php index 0eb04fb966..a913ba1152 100644 --- a/apps/files_sharing/l10n/lv.php +++ b/apps/files_sharing/l10n/lv.php @@ -1,7 +1,6 @@ "Parole", -"Submit" => "Iesniegt", "%s shared the folder %s with you" => "%s ar jums dalījās ar mapi %s", "%s shared the file %s with you" => "%s ar jums dalījās ar datni %s", "Download" => "Lejupielādēt", diff --git a/apps/files_sharing/l10n/mk.php b/apps/files_sharing/l10n/mk.php index c913b2beaf..c132f7aa26 100644 --- a/apps/files_sharing/l10n/mk.php +++ b/apps/files_sharing/l10n/mk.php @@ -1,7 +1,6 @@ "Лозинка", -"Submit" => "Прати", "%s shared the folder %s with you" => "%s ја сподели папката %s со Вас", "%s shared the file %s with you" => "%s ја сподели датотеката %s со Вас", "Download" => "Преземи", diff --git a/apps/files_sharing/l10n/ms_MY.php b/apps/files_sharing/l10n/ms_MY.php index 0a3d08bbc1..9725dd4d1b 100644 --- a/apps/files_sharing/l10n/ms_MY.php +++ b/apps/files_sharing/l10n/ms_MY.php @@ -1,7 +1,6 @@ "Kata laluan", -"Submit" => "Hantar", "Download" => "Muat turun", "Upload" => "Muat naik", "Cancel upload" => "Batal muat naik" diff --git a/apps/files_sharing/l10n/my_MM.php b/apps/files_sharing/l10n/my_MM.php index f44010004c..ff92e898ed 100644 --- a/apps/files_sharing/l10n/my_MM.php +++ b/apps/files_sharing/l10n/my_MM.php @@ -1,7 +1,6 @@ "စကားဝှက်", -"Submit" => "ထည့်သွင်းမည်", "Download" => "ဒေါင်းလုတ်" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/nb_NO.php b/apps/files_sharing/l10n/nb_NO.php index dd8a8edf31..0452b5275c 100644 --- a/apps/files_sharing/l10n/nb_NO.php +++ b/apps/files_sharing/l10n/nb_NO.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Passordet er feil. Prøv på nytt.", "Password" => "Passord", -"Submit" => "Send inn", "%s shared the folder %s with you" => "%s delte mappen %s med deg", "%s shared the file %s with you" => "%s delte filen %s med deg", "Download" => "Last ned", diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index 9c46a1ab4b..ed9f867fdc 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -1,8 +1,8 @@ "Deze share is met een wachtwoord beveiligd", "The password is wrong. Try again." => "Wachtwoord ongeldig. Probeer het nogmaals.", "Password" => "Wachtwoord", -"Submit" => "Verzenden", "Sorry, this link doesn’t seem to work anymore." => "Sorry, deze link lijkt niet meer in gebruik te zijn.", "Reasons might be:" => "Redenen kunnen zijn:", "the item was removed" => "bestand was verwijderd", diff --git a/apps/files_sharing/l10n/nn_NO.php b/apps/files_sharing/l10n/nn_NO.php index 94272943e4..1f1e8001e7 100644 --- a/apps/files_sharing/l10n/nn_NO.php +++ b/apps/files_sharing/l10n/nn_NO.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Passordet er gale. Prøv igjen.", "Password" => "Passord", -"Submit" => "Send", "Sorry, this link doesn’t seem to work anymore." => "Orsak, denne lenkja fungerer visst ikkje lenger.", "Reasons might be:" => "Moglege grunnar:", "the item was removed" => "fila/mappa er fjerna", diff --git a/apps/files_sharing/l10n/oc.php b/apps/files_sharing/l10n/oc.php index 493ddb4dfd..299d98e58b 100644 --- a/apps/files_sharing/l10n/oc.php +++ b/apps/files_sharing/l10n/oc.php @@ -1,7 +1,6 @@ "Senhal", -"Submit" => "Sosmetre", "Download" => "Avalcarga", "Upload" => "Amontcarga", "Cancel upload" => " Anulla l'amontcargar" diff --git a/apps/files_sharing/l10n/pl.php b/apps/files_sharing/l10n/pl.php index 43c7e2e314..63d373917e 100644 --- a/apps/files_sharing/l10n/pl.php +++ b/apps/files_sharing/l10n/pl.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "To hasło jest niewłaściwe. Spróbuj ponownie.", "Password" => "Hasło", -"Submit" => "Wyślij", "Sorry, this link doesn’t seem to work anymore." => "Przepraszamy ale wygląda na to, że ten link już nie działa.", "Reasons might be:" => "Możliwe powody:", "the item was removed" => "element został usunięty", diff --git a/apps/files_sharing/l10n/pt_BR.php b/apps/files_sharing/l10n/pt_BR.php index 9fc1cacf7c..a0cc058ca2 100644 --- a/apps/files_sharing/l10n/pt_BR.php +++ b/apps/files_sharing/l10n/pt_BR.php @@ -1,8 +1,8 @@ "Este compartilhamento esta protegido por senha", "The password is wrong. Try again." => "Senha incorreta. Tente novamente.", "Password" => "Senha", -"Submit" => "Submeter", "Sorry, this link doesn’t seem to work anymore." => "Desculpe, este link parece não mais funcionar.", "Reasons might be:" => "As razões podem ser:", "the item was removed" => "o item foi removido", diff --git a/apps/files_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php index 73dc2a3e1f..7fa1876aaa 100644 --- a/apps/files_sharing/l10n/pt_PT.php +++ b/apps/files_sharing/l10n/pt_PT.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Password errada, por favor tente de novo", "Password" => "Password", -"Submit" => "Submeter", "Sorry, this link doesn’t seem to work anymore." => "Desculpe, mas este link parece não estar a funcionar.", "Reasons might be:" => "As razões poderão ser:", "the item was removed" => "O item foi removido", diff --git a/apps/files_sharing/l10n/ro.php b/apps/files_sharing/l10n/ro.php index d17152ff1b..54e20ed6bb 100644 --- a/apps/files_sharing/l10n/ro.php +++ b/apps/files_sharing/l10n/ro.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Parola este incorectă. Încercaţi din nou.", "Password" => "Parolă", -"Submit" => "Trimite", "%s shared the folder %s with you" => "%s a partajat directorul %s cu tine", "%s shared the file %s with you" => "%s a partajat fișierul %s cu tine", "Download" => "Descarcă", diff --git a/apps/files_sharing/l10n/ru.php b/apps/files_sharing/l10n/ru.php index f42f1d9aeb..38581b045e 100644 --- a/apps/files_sharing/l10n/ru.php +++ b/apps/files_sharing/l10n/ru.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Неверный пароль. Попробуйте еще раз.", "Password" => "Пароль", -"Submit" => "Отправить", "Sorry, this link doesn’t seem to work anymore." => "К сожалению, эта ссылка, похоже не будет работать больше.", "Reasons might be:" => "Причиной может быть:", "the item was removed" => "объект был удалён", diff --git a/apps/files_sharing/l10n/si_LK.php b/apps/files_sharing/l10n/si_LK.php index 6135f09213..e840138564 100644 --- a/apps/files_sharing/l10n/si_LK.php +++ b/apps/files_sharing/l10n/si_LK.php @@ -1,7 +1,6 @@ "මුර පදය", -"Submit" => "යොමු කරන්න", "%s shared the folder %s with you" => "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය", "%s shared the file %s with you" => "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය", "Download" => "බාන්න", diff --git a/apps/files_sharing/l10n/sk_SK.php b/apps/files_sharing/l10n/sk_SK.php index 31ecb28b60..d8633c1daf 100644 --- a/apps/files_sharing/l10n/sk_SK.php +++ b/apps/files_sharing/l10n/sk_SK.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Heslo je chybné. Skúste to znova.", "Password" => "Heslo", -"Submit" => "Odoslať", "Sorry, this link doesn’t seem to work anymore." => "To je nepríjemné, ale tento odkaz už nie je funkčný.", "Reasons might be:" => "Možné dôvody:", "the item was removed" => "položka bola presunutá", diff --git a/apps/files_sharing/l10n/sl.php b/apps/files_sharing/l10n/sl.php index cbd4f5fea2..58bbf87c19 100644 --- a/apps/files_sharing/l10n/sl.php +++ b/apps/files_sharing/l10n/sl.php @@ -1,7 +1,6 @@ "Geslo", -"Submit" => "Pošlji", "%s shared the folder %s with you" => "Oseba %s je določila mapo %s za souporabo", "%s shared the file %s with you" => "Oseba %s je določila datoteko %s za souporabo", "Download" => "Prejmi", diff --git a/apps/files_sharing/l10n/sq.php b/apps/files_sharing/l10n/sq.php index d2077663e8..473049f75e 100644 --- a/apps/files_sharing/l10n/sq.php +++ b/apps/files_sharing/l10n/sq.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Kodi është i gabuar. Provojeni përsëri.", "Password" => "Kodi", -"Submit" => "Parashtro", "Sorry, this link doesn’t seem to work anymore." => "Ju kërkojmë ndjesë, kjo lidhje duket sikur nuk punon më.", "Reasons might be:" => "Arsyet mund të jenë:", "the item was removed" => "elementi është eliminuar", diff --git a/apps/files_sharing/l10n/sr.php b/apps/files_sharing/l10n/sr.php index 3b97d15419..e484ad25eb 100644 --- a/apps/files_sharing/l10n/sr.php +++ b/apps/files_sharing/l10n/sr.php @@ -1,7 +1,6 @@ "Лозинка", -"Submit" => "Пошаљи", "Download" => "Преузми", "Upload" => "Отпреми", "Cancel upload" => "Прекини отпремање" diff --git a/apps/files_sharing/l10n/sr@latin.php b/apps/files_sharing/l10n/sr@latin.php index 1a6be62576..08463e1510 100644 --- a/apps/files_sharing/l10n/sr@latin.php +++ b/apps/files_sharing/l10n/sr@latin.php @@ -1,7 +1,6 @@ "Lozinka", -"Submit" => "Pošalji", "Download" => "Preuzmi", "Upload" => "Pošalji" ); diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index b8a5f8629a..23bf17aba4 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Lösenordet är fel. Försök igen.", "Password" => "Lösenord", -"Submit" => "Skicka", "Sorry, this link doesn’t seem to work anymore." => "Tyvärr, denna länk verkar inte fungera längre.", "Reasons might be:" => "Orsaker kan vara:", "the item was removed" => "objektet togs bort", diff --git a/apps/files_sharing/l10n/ta_LK.php b/apps/files_sharing/l10n/ta_LK.php index b4eb0fb7fb..90a2fb417f 100644 --- a/apps/files_sharing/l10n/ta_LK.php +++ b/apps/files_sharing/l10n/ta_LK.php @@ -1,7 +1,6 @@ "கடவுச்சொல்", -"Submit" => "சமர்ப்பிக்குக", "%s shared the folder %s with you" => "%s கோப்புறையானது %s உடன் பகிரப்பட்டது", "%s shared the file %s with you" => "%s கோப்பானது %s உடன் பகிரப்பட்டது", "Download" => "பதிவிறக்குக", diff --git a/apps/files_sharing/l10n/th_TH.php b/apps/files_sharing/l10n/th_TH.php index 060bd8bed9..e192e0a97c 100644 --- a/apps/files_sharing/l10n/th_TH.php +++ b/apps/files_sharing/l10n/th_TH.php @@ -1,7 +1,6 @@ "รหัสผ่าน", -"Submit" => "ส่ง", "%s shared the folder %s with you" => "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ", "%s shared the file %s with you" => "%s ได้แชร์ไฟล์ %s ให้กับคุณ", "Download" => "ดาวน์โหลด", diff --git a/apps/files_sharing/l10n/tr.php b/apps/files_sharing/l10n/tr.php index a5bcff82cf..88d1152a7d 100644 --- a/apps/files_sharing/l10n/tr.php +++ b/apps/files_sharing/l10n/tr.php @@ -1,7 +1,14 @@ "Bu paylaşım parola korumalı", +"The password is wrong. Try again." => "Parola hatalı. Yeniden deneyin.", "Password" => "Parola", -"Submit" => "Gönder", +"Sorry, this link doesn’t seem to work anymore." => "Üzgünüz, bu bağlantı artık çalışıyor gibi görünmüyor", +"Reasons might be:" => "Sebepleri şunlar olabilir:", +"the item was removed" => "öge kaldırılmış", +"the link expired" => "bağlantı süresi dolmuş", +"sharing is disabled" => "paylaşım devre dışı bırakılmış", +"For more info, please ask the person who sent this link." => "Daha fazla bilgi için bu bağlantıyı aldığınız kişi ile iletişime geçin.", "%s shared the folder %s with you" => "%s sizinle paylaşılan %s klasör", "%s shared the file %s with you" => "%s sizinle paylaşılan %s klasör", "Download" => "İndir", diff --git a/apps/files_sharing/l10n/ug.php b/apps/files_sharing/l10n/ug.php index 43ee9f77bc..6ffa02f734 100644 --- a/apps/files_sharing/l10n/ug.php +++ b/apps/files_sharing/l10n/ug.php @@ -1,7 +1,6 @@ "ئىم", -"Submit" => "تاپشۇر", "Download" => "چۈشۈر", "Upload" => "يۈكلە", "Cancel upload" => "يۈكلەشتىن ۋاز كەچ" diff --git a/apps/files_sharing/l10n/uk.php b/apps/files_sharing/l10n/uk.php index b6a7784c69..dea1ee6850 100644 --- a/apps/files_sharing/l10n/uk.php +++ b/apps/files_sharing/l10n/uk.php @@ -1,7 +1,6 @@ "Пароль", -"Submit" => "Передати", "%s shared the folder %s with you" => "%s опублікував каталог %s для Вас", "%s shared the file %s with you" => "%s опублікував файл %s для Вас", "Download" => "Завантажити", diff --git a/apps/files_sharing/l10n/vi.php b/apps/files_sharing/l10n/vi.php index 00e8e094c3..4566d3744d 100644 --- a/apps/files_sharing/l10n/vi.php +++ b/apps/files_sharing/l10n/vi.php @@ -1,7 +1,6 @@ "Mật khẩu", -"Submit" => "Xác nhận", "%s shared the folder %s with you" => "%s đã chia sẻ thư mục %s với bạn", "%s shared the file %s with you" => "%s đã chia sẻ tập tin %s với bạn", "Download" => "Tải về", diff --git a/apps/files_sharing/l10n/zh_CN.php b/apps/files_sharing/l10n/zh_CN.php index f541d6c155..956c161b48 100644 --- a/apps/files_sharing/l10n/zh_CN.php +++ b/apps/files_sharing/l10n/zh_CN.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "用户名或密码错误!请重试", "Password" => "密码", -"Submit" => "提交", "Sorry, this link doesn’t seem to work anymore." => "抱歉,此链接已失效", "Reasons might be:" => "可能原因是:", "the item was removed" => "此项已移除", diff --git a/apps/files_sharing/l10n/zh_TW.php b/apps/files_sharing/l10n/zh_TW.php index 5cc33fd383..bc415913e4 100644 --- a/apps/files_sharing/l10n/zh_TW.php +++ b/apps/files_sharing/l10n/zh_TW.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "請檢查您的密碼並再試一次", "Password" => "密碼", -"Submit" => "送出", "Sorry, this link doesn’t seem to work anymore." => "抱歉,此連結已經失效", "Reasons might be:" => "可能的原因:", "the item was removed" => "項目已經移除", diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php index e662462489..bd9beddf06 100644 --- a/apps/files_sharing/lib/api.php +++ b/apps/files_sharing/lib/api.php @@ -31,11 +31,11 @@ class Api { * @return \OC_OCS_Result share information */ public static function getAllShares($params) { - // if a file is specified, get the share for this file if (isset($_GET['path'])) { $params['itemSource'] = self::getFileId($_GET['path']); $params['path'] = $_GET['path']; + $params['itemType'] = self::getItemType($_GET['path']); if (isset($_GET['subfiles']) && $_GET['subfiles'] === 'true') { return self::getSharesFromFolder($params); } @@ -59,20 +59,22 @@ class Api { * @return \OC_OCS_Result share information */ public static function getShare($params) { - // either the $params already contains a itemSource if we come from // getAllShare() or we need to translate the shareID to a itemSource if(isset($params['itemSource'])) { $itemSource = $params['itemSource']; + $itemType = $params['itemType']; $getSpecificShare = true; } else { $s = self::getShareFromId($params['id']); $itemSource = $s['item_source']; + $itemType = $s['item_type']; $getSpecificShare = false; } if ($itemSource !== null) { - $shares = \OCP\Share::getItemShared('file', $itemSource); + $shares = \OCP\Share::getItemShared($itemType, $itemSource); + $reshare = \OCP\Share::getItemSharedWithBySource($itemType, $itemSource); // if a specific share was specified only return this one if ($getSpecificShare === false) { foreach ($shares as $share) { @@ -82,6 +84,10 @@ class Api { } } } + if ($reshare) { + $shares['received_from'] = $reshare['uid_owner']; + $shares['received_from_displayname'] = \OCP\User::getDisplayName($reshare['uid_owner']); + } } else { $shares = null; } @@ -110,7 +116,14 @@ class Api { $result = array(); foreach ($content as $file) { - $share = \OCP\Share::getItemShared('file', $file['fileid']); + // workaround because folders are named 'dir' in this context + $itemType = $file['type'] === 'file' ? 'file' : 'folder'; + $share = \OCP\Share::getItemShared($itemType, $file['fileid']); + $reshare = \OCP\Share::getItemSharedWithBySource($itemType, $file['fileid']); + if ($reshare) { + $share['received_from'] = $reshare['uid_owner']; + $share['received_from_displayname'] = \OCP\User::getDisplayName($reshare['uid_owner']); + } if ($share) { $share['filename'] = $file['name']; $result[] = $share; @@ -132,7 +145,6 @@ class Api { if($path === null) { return new \OC_OCS_Result(null, 400, "please specify a file or folder path"); } - $itemSource = self::getFileId($path); $itemType = self::getItemType($path); @@ -184,7 +196,7 @@ class Api { if ($token) { $data = array(); $data['id'] = 'unknown'; - $shares = \OCP\Share::getItemShared('file', $itemSource); + $shares = \OCP\Share::getItemShared($itemType, $itemSource); if(is_string($token)) { //public link share foreach ($shares as $share) { if ($share['token'] === $token) { @@ -414,7 +426,6 @@ class Api { $view = new \OC\Files\View('/'.\OCP\User::getUser().'/files'); $fileId = null; - $fileInfo = $view->getFileInfo($path); if ($fileInfo) { $fileId = $fileInfo['fileid']; diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index eff38dcc0f..8bdbc8524e 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -77,6 +77,7 @@ if (isset($path)) { $hasher = new PasswordHash(8, $forcePortable); if (!($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''), $linkItem['share_with']))) { + OCP\Util::addStyle('files_sharing', 'authenticate'); $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); $tmpl->assign('URL', $url); $tmpl->assign('wrongpw', true); @@ -101,6 +102,7 @@ if (isset($path)) { || \OC::$session->get('public_link_authenticated') !== $linkItem['id'] ) { // Prompt for password + OCP\Util::addStyle('files_sharing', 'authenticate'); $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); $tmpl->assign('URL', $url); $tmpl->printPage(); diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index 2c89b5df3f..6b98e6c9f3 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -1,12 +1,15 @@
+ +
t('This share is password-protected')); ?>
+ -
t('The password is wrong. Try again.')); ?>
+
t('The password is wrong. Try again.')); ?>

- +

diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index e53887c359..5d935f645e 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -2,6 +2,7 @@ + diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index c55c186f08..529140849c 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -58,6 +58,10 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { } function setUp() { + + //login as user1 + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + $this->data = 'foobar'; $this->view = new \OC_FilesystemView('/' . \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1 . '/files'); @@ -104,9 +108,6 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { */ function testCreateShare() { - //login as user1 - \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); - // share to user // simulate a post request @@ -196,7 +197,8 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1); - $params = array('itemSource' => $fileInfo['fileid']); + $params = array('itemSource' => $fileInfo['fileid'], + 'itemType' => 'file'); $result = Share\Api::getShare($params); @@ -295,7 +297,8 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { $result = Share\Api::getShare($params); $this->assertEquals(404, $result->getStatusCode()); - $this->assertEquals('share doesn\'t exist', $result->getMeta()['message']); + $meta = $result->getMeta(); + $this->assertEquals('share doesn\'t exist', $meta['message']); } @@ -351,7 +354,8 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { $result = Share\Api::updateShare($params); - $this->assertTrue($result->succeeded(), $result->getMeta()['message']); + $meta = $result->getMeta(); + $this->assertTrue($result->succeeded(), $meta['message']); $items = \OCP\Share::getItemShared('file', $userShare['file_source']); diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index d8661e170a..d079af3fb6 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -5,7 +5,6 @@ OCP\User::checkLoggedIn(); OCP\App::setActiveNavigationEntry('files_index'); -OCP\Util::addScript('files_trashbin', 'trash'); OCP\Util::addScript('files_trashbin', 'disableDefaultActions'); OCP\Util::addScript('files', 'fileactions'); $tmpl = new OCP\Template('files_trashbin', 'index', 'user'); @@ -15,6 +14,7 @@ OCP\Util::addScript('files', 'filelist'); // filelist overrides OCP\Util::addScript('files_trashbin', 'filelist'); OCP\Util::addscript('files', 'files'); +OCP\Util::addScript('files_trashbin', 'trash'); $dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : ''; diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index d73eadb601..4e83afcdb0 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -3,15 +3,39 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) { - var tr=$('tr').filterAttr('data-file', filename); - var spinner = ''; - var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date"); - var files = tr.attr('data-file'); - undeleteAction[0].innerHTML = undeleteAction[0].innerHTML+spinner; + var tr = $('tr').filterAttr('data-file', filename); + var deleteAction = $('tr').filterAttr('data-file', filename).children("td.date").children(".action.delete"); + deleteAction.removeClass('delete-icon').addClass('progress-icon'); disableActions(); - $.post(OC.filePath('files_trashbin','ajax','undelete.php'), - {files:JSON.stringify([files]), dirlisting:tr.attr('data-dirlisting') }, - function(result){ + $.post(OC.filePath('files_trashbin', 'ajax', 'undelete.php'), + {files: JSON.stringify([filename]), dirlisting: tr.attr('data-dirlisting')}, + function(result) { + for (var i = 0; i < result.data.success.length; i++) { + var row = document.getElementById(result.data.success[i].filename); + row.parentNode.removeChild(row); + } + if (result.status !== 'success') { + OC.dialogs.alert(result.data.message, t('core', 'Error')); + } + enableActions(); + FileList.updateFileSummary(); + } + ); + + }); + }; + + 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"); + deleteAction.removeClass('delete-icon').addClass('progress-icon'); + disableActions(); + $.post(OC.filePath('files_trashbin', 'ajax', 'delete.php'), + {files: JSON.stringify([filename]), dirlisting: tr.attr('data-dirlisting')}, + function(result) { for (var i = 0; i < result.data.success.length; i++) { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); @@ -21,26 +45,74 @@ $(document).ready(function() { } enableActions(); FileList.updateFileSummary(); + } + ); + + }); + + // Sets the select_all checkbox behaviour : + $('#select_all').click(function() { + if ($(this).attr('checked')) { + // Check all + $('td.filename input:checkbox').attr('checked', true); + $('td.filename input:checkbox').parent().parent().addClass('selected'); + } else { + // Uncheck all + $('td.filename input:checkbox').attr('checked', false); + $('td.filename input:checkbox').parent().parent().removeClass('selected'); + } + procesSelection(); + }); + + $('#fileList').on('click', 'td.filename a', function(event) { + if (event.shiftKey) { + event.preventDefault(); + var last = $(lastChecked).parent().parent().prevAll().length; + var first = $(this).parent().parent().prevAll().length; + var start = Math.min(first, last); + var end = Math.max(first, last); + var rows = $(this).parent().parent().parent().children('tr'); + for (var i = start; i < end; i++) { + $(rows).each(function(index) { + if (index == i) { + var checkbox = $(this).children().children('input:checkbox'); + $(checkbox).attr('checked', 'checked'); + $(checkbox).parent().parent().addClass('selected'); + } }); + } + } + var checkbox = $(this).parent().children('input:checkbox'); + lastChecked = checkbox; + if ($(checkbox).attr('checked')) { + $(checkbox).removeAttr('checked'); + $(checkbox).parent().parent().removeClass('selected'); + $('#select_all').removeAttr('checked'); + } else { + $(checkbox).attr('checked', 'checked'); + $(checkbox).parent().parent().toggleClass('selected'); + var selectedCount = $('td.filename input:checkbox:checked').length; + if (selectedCount == $('td.filename input:checkbox').length) { + $('#select_all').attr('checked', 'checked'); + } + } + procesSelection(); + }); - }); - }; + $('.undelete').click('click', function(event) { + event.preventDefault(); + var files = getSelectedFiles('file'); + var fileslist = JSON.stringify(files); + var dirlisting = getSelectedFiles('dirlisting')[0]; + disableActions(); + for (var i = 0; i < files.length; i++) { + var deleteAction = $('tr').filterAttr('data-file', files[i]).children("td.date").children(".action.delete"); + deleteAction.removeClass('delete-icon').addClass('progress-icon'); + } - 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 = ''; - var files = tr.attr('data-file'); - deleteAction[0].outerHTML = newHTML; - disableActions(); - $.post(OC.filePath('files_trashbin','ajax','delete.php'), - {files:JSON.stringify([files]), dirlisting:tr.attr('data-dirlisting') }, - function(result){ + $.post(OC.filePath('files_trashbin', 'ajax', 'undelete.php'), + {files: fileslist, dirlisting: dirlisting}, + function(result) { for (var i = 0; i < result.data.success.length; i++) { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); @@ -50,106 +122,38 @@ $(document).ready(function() { } enableActions(); FileList.updateFileSummary(); - }); - - }); - - // Sets the select_all checkbox behaviour : - $('#select_all').click(function() { - if($(this).attr('checked')){ - // Check all - $('td.filename input:checkbox').attr('checked', true); - $('td.filename input:checkbox').parent().parent().addClass('selected'); - }else{ - // Uncheck all - $('td.filename input:checkbox').attr('checked', false); - $('td.filename input:checkbox').parent().parent().removeClass('selected'); - } - processSelection(); - }); - - $('td.filename input:checkbox').live('change',function(event) { - if (event.shiftKey) { - var last = $(lastChecked).parent().parent().prevAll().length; - var first = $(this).parent().parent().prevAll().length; - var start = Math.min(first, last); - var end = Math.max(first, last); - var rows = $(this).parent().parent().parent().children('tr'); - for (var i = start; i < end; i++) { - $(rows).each(function(index) { - if (index === i) { - var checkbox = $(this).children().children('input:checkbox'); - $(checkbox).attr('checked', 'checked'); - $(checkbox).parent().parent().addClass('selected'); - } - }); } - } - var selectedCount=$('td.filename input:checkbox:checked').length; - $(this).parent().parent().toggleClass('selected'); - if(!$(this).attr('checked')){ - $('#select_all').attr('checked',false); - }else{ - if(selectedCount==$('td.filename input:checkbox').length){ - $('#select_all').attr('checked',true); + ); + }); + + $('.delete').click('click', function(event) { + event.preventDefault(); + var files = getSelectedFiles('file'); + var fileslist = JSON.stringify(files); + var dirlisting = getSelectedFiles('dirlisting')[0]; + + disableActions(); + for (var i = 0; i < files.length; i++) { + var deleteAction = $('tr').filterAttr('data-file', files[i]).children("td.date").children(".action.delete"); + deleteAction.removeClass('delete-icon').addClass('progress-icon'); + } + + $.post(OC.filePath('files_trashbin', 'ajax', 'delete.php'), + {files: fileslist, dirlisting: dirlisting}, + function(result) { + for (var i = 0; i < result.data.success.length; i++) { + var row = document.getElementById(result.data.success[i].filename); + row.parentNode.removeChild(row); + } + if (result.status !== 'success') { + OC.dialogs.alert(result.data.message, t('core', 'Error')); + } + enableActions(); + FileList.updateFileSummary(); } - } - processSelection(); - }); + ); - $('.undelete').click('click',function(event) { - event.preventDefault(); - var spinner = ''; - var files=getSelectedFiles('file'); - var fileslist = JSON.stringify(files); - var dirlisting=getSelectedFiles('dirlisting')[0]; - disableActions(); - for (var i=0; i'; - var files=getSelectedFiles('file'); - var fileslist = JSON.stringify(files); - var dirlisting=getSelectedFiles('dirlisting')[0]; - - disableActions(); - for (var i=0; ispan.name').text(t('files','Name')); - $('#modified').text(t('files','Deleted')); - $('table').removeClass('multiselect'); - $('.selectedActions').hide(); - } - else { - $('.selectedActions').show(); - var selection=''; - if(selectedFolders.length>0){ - selection += n('files', '%n folder', '%n folders', selectedFolders.length); - if(selectedFiles.length>0){ - selection+=' & '; - } - } - if(selectedFiles.length>0){ - selection += n('files', '%n file', '%n files', selectedFiles.length); - } - $('#headerName>span.name').text(selection); - $('#modified').text(''); - $('table').addClass('multiselect'); - } -} - /** * @brief get a list of selected files * @param string property (option) the property of the file requested diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index 0af6972af5..9733e6b100 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "تعذّر حذف%s بشكل دائم", "Couldn't restore %s" => "تعذّر استرجاع %s ", -"perform restore operation" => "إبدء عملية الإستعادة", "Error" => "خطأ", -"delete file permanently" => "حذف بشكل دائم", -"Delete permanently" => "حذف بشكل دائم", -"Name" => "اسم", -"Deleted" => "تم الحذف", -"_%n folder_::_%n folders_" => array("","","","","","مجلدات %n"), -"_%n file_::_%n files_" => array("","","","",""," ملفات %n"), "Nothing in here. Your trash bin is empty!" => "لا يوجد شيء هنا. سلة المهملات خاليه.", +"Name" => "اسم", "Restore" => "استعيد", +"Deleted" => "تم الحذف", "Delete" => "إلغاء", "Deleted Files" => "الملفات المحذوفه" ); diff --git a/apps/files_trashbin/l10n/bg_BG.php b/apps/files_trashbin/l10n/bg_BG.php index 3c12e6906e..2f1521feaa 100644 --- a/apps/files_trashbin/l10n/bg_BG.php +++ b/apps/files_trashbin/l10n/bg_BG.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Невъзможно перманентното изтриване на %s", "Couldn't restore %s" => "Невъзможно възтановяване на %s", -"perform restore operation" => "извършване на действие по възстановяване", "Error" => "Грешка", -"delete file permanently" => "изтриване на файла завинаги", -"Delete permanently" => "Изтриване завинаги", -"Name" => "Име", -"Deleted" => "Изтрито", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Няма нищо. Кофата е празна!", +"Name" => "Име", "Restore" => "Възтановяване", +"Deleted" => "Изтрито", "Delete" => "Изтриване", "Deleted Files" => "Изтрити файлове" ); diff --git a/apps/files_trashbin/l10n/bn_BD.php b/apps/files_trashbin/l10n/bn_BD.php index c3741dbd1d..d3a9f23b37 100644 --- a/apps/files_trashbin/l10n/bn_BD.php +++ b/apps/files_trashbin/l10n/bn_BD.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "সমস্যা", "Name" => "রাম", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "মুছে" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/bs.php b/apps/files_trashbin/l10n/bs.php index af7033bd18..08ef9b4fdb 100644 --- a/apps/files_trashbin/l10n/bs.php +++ b/apps/files_trashbin/l10n/bs.php @@ -1,7 +1,5 @@ "Ime", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","","") +"Name" => "Ime" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index eb57aa16aa..fa3f63ddb2 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -2,17 +2,12 @@ $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ó", "Error" => "Error", -"delete file permanently" => "esborra el fitxer permanentment", -"Delete permanently" => "Esborra permanentment", -"Name" => "Nom", -"Deleted" => "Eliminat", -"_%n folder_::_%n folders_" => array("","%n carpetes"), -"_%n file_::_%n files_" => array("","%n fitxers"), "restored" => "restaurat", "Nothing in here. Your trash bin is empty!" => "La paperera està buida!", +"Name" => "Nom", "Restore" => "Recupera", +"Deleted" => "Eliminat", "Delete" => "Esborra", "Deleted Files" => "Fitxers eliminats" ); diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index f0bebee742..ff0a69572f 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nelze trvale odstranit %s", "Couldn't restore %s" => "Nelze obnovit %s", -"perform restore operation" => "provést obnovu", "Error" => "Chyba", -"delete file permanently" => "trvale odstranit soubor", -"Delete permanently" => "Trvale odstranit", -"Name" => "Název", -"Deleted" => "Smazáno", -"_%n folder_::_%n folders_" => array("%n adresář","%n adresáře","%n adresářů"), -"_%n file_::_%n files_" => array("%n soubor","%n soubory","%n souborů"), "restored" => "obnoveno", "Nothing in here. Your trash bin is empty!" => "Žádný obsah. Váš koš je prázdný.", +"Name" => "Název", "Restore" => "Obnovit", +"Deleted" => "Smazáno", "Delete" => "Smazat", "Deleted Files" => "Smazané soubory" ); diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index 123a445c2c..f2eb81d67d 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Methwyd dileu %s yn barhaol", "Couldn't restore %s" => "Methwyd adfer %s", -"perform restore operation" => "gweithrediad adfer", "Error" => "Gwall", -"delete file permanently" => "dileu ffeil yn barhaol", -"Delete permanently" => "Dileu'n barhaol", -"Name" => "Enw", -"Deleted" => "Wedi dileu", -"_%n folder_::_%n folders_" => array("","","",""), -"_%n file_::_%n files_" => array("","","",""), "Nothing in here. Your trash bin is empty!" => "Does dim byd yma. Mae eich bin sbwriel yn wag!", +"Name" => "Enw", "Restore" => "Adfer", +"Deleted" => "Wedi dileu", "Delete" => "Dileu", "Deleted Files" => "Ffeiliau Ddilewyd" ); diff --git a/apps/files_trashbin/l10n/da.php b/apps/files_trashbin/l10n/da.php index 2fbc089387..c396706d15 100644 --- a/apps/files_trashbin/l10n/da.php +++ b/apps/files_trashbin/l10n/da.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kunne ikke slette %s permanent", "Couldn't restore %s" => "Kunne ikke gendanne %s", -"perform restore operation" => "udfør gendannelsesoperation", "Error" => "Fejl", -"delete file permanently" => "slet fil permanent", -"Delete permanently" => "Slet permanent", -"Name" => "Navn", -"Deleted" => "Slettet", -"_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), -"_%n file_::_%n files_" => array("%n fil","%n filer"), "restored" => "Gendannet", "Nothing in here. Your trash bin is empty!" => "Intet at se her. Din papirkurv er tom!", +"Name" => "Navn", "Restore" => "Gendan", +"Deleted" => "Slettet", "Delete" => "Slet", "Deleted Files" => "Slettede filer" ); diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index ad6e0839bd..2b6703dd05 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", -"perform restore operation" => "Wiederherstellung ausführen", "Error" => "Fehler", -"delete file permanently" => "Datei dauerhaft löschen", -"Delete permanently" => "Endgültig löschen", -"Name" => "Name", -"Deleted" => "gelöscht", -"_%n folder_::_%n folders_" => array("","%n Ordner"), -"_%n file_::_%n files_" => array("","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, der Papierkorb ist leer!", +"Name" => "Name", "Restore" => "Wiederherstellen", +"Deleted" => "gelöscht", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); diff --git a/apps/files_trashbin/l10n/de_CH.php b/apps/files_trashbin/l10n/de_CH.php index 92290a0de5..ec9f0b5309 100644 --- a/apps/files_trashbin/l10n/de_CH.php +++ b/apps/files_trashbin/l10n/de_CH.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", -"perform restore operation" => "Wiederherstellung ausführen", "Error" => "Fehler", -"delete file permanently" => "Datei dauerhaft löschen", -"Delete permanently" => "Endgültig löschen", -"Name" => "Name", -"Deleted" => "Gelöscht", -"_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), -"_%n file_::_%n files_" => array("%n Datei","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", +"Name" => "Name", "Restore" => "Wiederherstellen", +"Deleted" => "Gelöscht", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 0df6941280..ec9f0b5309 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", -"perform restore operation" => "Wiederherstellung ausführen", "Error" => "Fehler", -"delete file permanently" => "Datei dauerhaft löschen", -"Delete permanently" => "Endgültig löschen", -"Name" => "Name", -"Deleted" => "Gelöscht", -"_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), -"_%n file_::_%n files_" => array("%n Dateien","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", +"Name" => "Name", "Restore" => "Wiederherstellen", +"Deleted" => "Gelöscht", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); diff --git a/apps/files_trashbin/l10n/el.php b/apps/files_trashbin/l10n/el.php index 939c7fed61..ffeafb7e9d 100644 --- a/apps/files_trashbin/l10n/el.php +++ b/apps/files_trashbin/l10n/el.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Αδύνατη η μόνιμη διαγραφή του %s", "Couldn't restore %s" => "Αδυναμία επαναφοράς %s", -"perform restore operation" => "εκτέλεση λειτουργία επαναφοράς", "Error" => "Σφάλμα", -"delete file permanently" => "μόνιμη διαγραφή αρχείου", -"Delete permanently" => "Μόνιμη διαγραφή", -"Name" => "Όνομα", -"Deleted" => "Διαγράφηκε", -"_%n folder_::_%n folders_" => array("","%n φάκελοι"), -"_%n file_::_%n files_" => array("","%n αρχεία"), "restored" => "έγινε επαναφορά", "Nothing in here. Your trash bin is empty!" => "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!", +"Name" => "Όνομα", "Restore" => "Επαναφορά", +"Deleted" => "Διαγράφηκε", "Delete" => "Διαγραφή", "Deleted Files" => "Διαγραμμένα Αρχεία" ); diff --git a/apps/files_trashbin/l10n/en_GB.php b/apps/files_trashbin/l10n/en_GB.php index be9d8b9f52..6b179c8653 100644 --- a/apps/files_trashbin/l10n/en_GB.php +++ b/apps/files_trashbin/l10n/en_GB.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Couldn't delete %s permanently", "Couldn't restore %s" => "Couldn't restore %s", -"perform restore operation" => "perform restore operation", "Error" => "Error", -"delete file permanently" => "delete file permanently", -"Delete permanently" => "Delete permanently", -"Name" => "Name", -"Deleted" => "Deleted", -"_%n folder_::_%n folders_" => array("%n folder","%n folders"), -"_%n file_::_%n files_" => array("%n file","%n files"), "restored" => "restored", "Nothing in here. Your trash bin is empty!" => "Nothing in here. Your recycle bin is empty!", +"Name" => "Name", "Restore" => "Restore", +"Deleted" => "Deleted", "Delete" => "Delete", "Deleted Files" => "Deleted Files" ); diff --git a/apps/files_trashbin/l10n/eo.php b/apps/files_trashbin/l10n/eo.php index d1e30cba58..3f4023c640 100644 --- a/apps/files_trashbin/l10n/eo.php +++ b/apps/files_trashbin/l10n/eo.php @@ -1,10 +1,7 @@ "Eraro", -"Delete permanently" => "Forigi por ĉiam", "Name" => "Nomo", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Restore" => "Restaŭri", "Delete" => "Forigi", "Deleted Files" => "Forigitaj dosieroj" diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index a5639c2c71..db7a617729 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -2,17 +2,12 @@ $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", "Error" => "Error", -"delete file permanently" => "eliminar archivo permanentemente", -"Delete permanently" => "Eliminar permanentemente", -"Name" => "Nombre", -"Deleted" => "Eliminado", -"_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), -"_%n file_::_%n files_" => array("%n archivo","%n archivos"), "restored" => "recuperado", "Nothing in here. Your trash bin is empty!" => "No hay nada aquí. ¡Tu papelera esta vacía!", +"Name" => "Nombre", "Restore" => "Recuperar", +"Deleted" => "Eliminado", "Delete" => "Eliminar", "Deleted Files" => "Archivos Eliminados" ); diff --git a/apps/files_trashbin/l10n/es_AR.php b/apps/files_trashbin/l10n/es_AR.php index 0cb969a348..842101d33b 100644 --- a/apps/files_trashbin/l10n/es_AR.php +++ b/apps/files_trashbin/l10n/es_AR.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "No fue posible borrar %s de manera permanente", "Couldn't restore %s" => "No se pudo restaurar %s", -"perform restore operation" => "Restaurar", "Error" => "Error", -"delete file permanently" => "Borrar archivo de manera permanente", -"Delete permanently" => "Borrar de manera permanente", -"Name" => "Nombre", -"Deleted" => "Borrado", -"_%n folder_::_%n folders_" => array("%n directorio","%n directorios"), -"_%n file_::_%n files_" => array("%n archivo","%n archivos"), "restored" => "recuperado", "Nothing in here. Your trash bin is empty!" => "No hay nada acá. ¡La papelera está vacía!", +"Name" => "Nombre", "Restore" => "Recuperar", +"Deleted" => "Borrado", "Delete" => "Borrar", "Deleted Files" => "Archivos eliminados" ); diff --git a/apps/files_trashbin/l10n/et_EE.php b/apps/files_trashbin/l10n/et_EE.php index 43c182ea7b..56eebc79f0 100644 --- a/apps/files_trashbin/l10n/et_EE.php +++ b/apps/files_trashbin/l10n/et_EE.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s jäädavalt kustutamine ebaõnnestus", "Couldn't restore %s" => "%s ei saa taastada", -"perform restore operation" => "soorita taastamine", "Error" => "Viga", -"delete file permanently" => "kustuta fail jäädavalt", -"Delete permanently" => "Kustuta jäädavalt", -"Name" => "Nimi", -"Deleted" => "Kustutatud", -"_%n folder_::_%n folders_" => array("","%n kataloogi"), -"_%n file_::_%n files_" => array("%n fail","%n faili"), "restored" => "taastatud", "Nothing in here. Your trash bin is empty!" => "Siin pole midagi. Sinu prügikast on tühi!", +"Name" => "Nimi", "Restore" => "Taasta", +"Deleted" => "Kustutatud", "Delete" => "Kustuta", "Deleted Files" => "Kustutatud failid" ); diff --git a/apps/files_trashbin/l10n/eu.php b/apps/files_trashbin/l10n/eu.php index 240582a7ea..04d92e01b3 100644 --- a/apps/files_trashbin/l10n/eu.php +++ b/apps/files_trashbin/l10n/eu.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Ezin izan da %s betirako ezabatu", "Couldn't restore %s" => "Ezin izan da %s berreskuratu", -"perform restore operation" => "berreskuratu", "Error" => "Errorea", -"delete file permanently" => "ezabatu fitxategia betirako", -"Delete permanently" => "Ezabatu betirako", -"Name" => "Izena", -"Deleted" => "Ezabatuta", -"_%n folder_::_%n folders_" => array("karpeta %n","%n karpeta"), -"_%n file_::_%n files_" => array("fitxategi %n","%n fitxategi"), "restored" => "Berrezarrita", "Nothing in here. Your trash bin is empty!" => "Ez dago ezer ez. Zure zakarrontzia hutsik dago!", +"Name" => "Izena", "Restore" => "Berrezarri", +"Deleted" => "Ezabatuta", "Delete" => "Ezabatu", "Deleted Files" => "Ezabatutako Fitxategiak" ); diff --git a/apps/files_trashbin/l10n/fa.php b/apps/files_trashbin/l10n/fa.php index 654f20a5f1..8409987b89 100644 --- a/apps/files_trashbin/l10n/fa.php +++ b/apps/files_trashbin/l10n/fa.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s را نمی توان برای همیشه حذف کرد", "Couldn't restore %s" => "%s را نمی توان بازگرداند", -"perform restore operation" => "انجام عمل بازگرداندن", "Error" => "خطا", -"delete file permanently" => "حذف فایل برای همیشه", -"Delete permanently" => "حذف قطعی", -"Name" => "نام", -"Deleted" => "حذف شده", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است.", +"Name" => "نام", "Restore" => "بازیابی", +"Deleted" => "حذف شده", "Delete" => "حذف", "Deleted Files" => "فایلهای حذف شده" ); diff --git a/apps/files_trashbin/l10n/fi_FI.php b/apps/files_trashbin/l10n/fi_FI.php index f03950981c..b956c1c1e4 100644 --- a/apps/files_trashbin/l10n/fi_FI.php +++ b/apps/files_trashbin/l10n/fi_FI.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kohdetta %s ei voitu poistaa pysyvästi", "Couldn't restore %s" => "Kohteen %s palautus epäonnistui", -"perform restore operation" => "suorita palautustoiminto", "Error" => "Virhe", -"delete file permanently" => "poista tiedosto pysyvästi", -"Delete permanently" => "Poista pysyvästi", -"Name" => "Nimi", -"Deleted" => "Poistettu", -"_%n folder_::_%n folders_" => array("%n kansio","%n kansiota"), -"_%n file_::_%n files_" => array("%n tiedosto","%n tiedostoa"), "restored" => "palautettu", "Nothing in here. Your trash bin is empty!" => "Tyhjää täynnä! Roskakorissa ei ole mitään.", +"Name" => "Nimi", "Restore" => "Palauta", +"Deleted" => "Poistettu", "Delete" => "Poista", "Deleted Files" => "Poistetut tiedostot" ); diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 39e1ac8614..593310e2c3 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -2,17 +2,12 @@ $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", "Error" => "Erreur", -"delete file permanently" => "effacer définitivement le fichier", -"Delete permanently" => "Supprimer de façon définitive", -"Name" => "Nom", -"Deleted" => "Effacé", -"_%n folder_::_%n folders_" => array("%n dossier","%n dossiers"), -"_%n file_::_%n files_" => array("%n fichier","%n fichiers"), "restored" => "restauré", "Nothing in here. Your trash bin is empty!" => "Il n'y a rien ici. Votre corbeille est vide !", +"Name" => "Nom", "Restore" => "Restaurer", +"Deleted" => "Effacé", "Delete" => "Supprimer", "Deleted Files" => "Fichiers effacés" ); diff --git a/apps/files_trashbin/l10n/gl.php b/apps/files_trashbin/l10n/gl.php index 568c17607f..ae7ef8b319 100644 --- a/apps/files_trashbin/l10n/gl.php +++ b/apps/files_trashbin/l10n/gl.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Non foi posíbel eliminar %s permanente", "Couldn't restore %s" => "Non foi posíbel restaurar %s", -"perform restore operation" => "realizar a operación de restauración", "Error" => "Erro", -"delete file permanently" => "eliminar o ficheiro permanentemente", -"Delete permanently" => "Eliminar permanentemente", -"Name" => "Nome", -"Deleted" => "Eliminado", -"_%n folder_::_%n folders_" => array("%n cartafol","%n cartafoles"), -"_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Aquí non hai nada. O cesto do lixo está baleiro!", +"Name" => "Nome", "Restore" => "Restablecer", +"Deleted" => "Eliminado", "Delete" => "Eliminar", "Deleted Files" => "Ficheiros eliminados" ); diff --git a/apps/files_trashbin/l10n/he.php b/apps/files_trashbin/l10n/he.php index 6aa6264a31..d0bcb327d4 100644 --- a/apps/files_trashbin/l10n/he.php +++ b/apps/files_trashbin/l10n/he.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "לא ניתן למחוק את %s לצמיתות", "Couldn't restore %s" => "לא ניתן לשחזר את %s", -"perform restore operation" => "ביצוע פעולת שחזור", "Error" => "שגיאה", -"delete file permanently" => "מחיקת קובץ לצמיתות", -"Delete permanently" => "מחיקה לצמיתות", -"Name" => "שם", -"Deleted" => "נמחק", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "אין כאן שום דבר. סל המיחזור שלך ריק!", +"Name" => "שם", "Restore" => "שחזור", +"Deleted" => "נמחק", "Delete" => "מחיקה", "Deleted Files" => "קבצים שנמחקו" ); diff --git a/apps/files_trashbin/l10n/hi.php b/apps/files_trashbin/l10n/hi.php index 71711218b1..d4a26011b5 100644 --- a/apps/files_trashbin/l10n/hi.php +++ b/apps/files_trashbin/l10n/hi.php @@ -1,7 +1,5 @@ "त्रुटि", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("","") +"Error" => "त्रुटि" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/hr.php b/apps/files_trashbin/l10n/hr.php index d227b4979a..8e8fd22f8e 100644 --- a/apps/files_trashbin/l10n/hr.php +++ b/apps/files_trashbin/l10n/hr.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Greška", "Name" => "Ime", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "Delete" => "Obriši" ); $PLURAL_FORMS = "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"; diff --git a/apps/files_trashbin/l10n/hu_HU.php b/apps/files_trashbin/l10n/hu_HU.php index 766ddcbce4..aa8b45a7d6 100644 --- a/apps/files_trashbin/l10n/hu_HU.php +++ b/apps/files_trashbin/l10n/hu_HU.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nem sikerült %s végleges törlése", "Couldn't restore %s" => "Nem sikerült %s visszaállítása", -"perform restore operation" => "a visszaállítás végrehajtása", "Error" => "Hiba", -"delete file permanently" => "az állomány végleges törlése", -"Delete permanently" => "Végleges törlés", -"Name" => "Név", -"Deleted" => "Törölve", -"_%n folder_::_%n folders_" => array("","%n mappa"), -"_%n file_::_%n files_" => array("","%n állomány"), "restored" => "visszaállítva", "Nothing in here. Your trash bin is empty!" => "Itt nincs semmi. Az Ön szemetes mappája üres!", +"Name" => "Név", "Restore" => "Visszaállítás", +"Deleted" => "Törölve", "Delete" => "Törlés", "Deleted Files" => "Törölt fájlok" ); diff --git a/apps/files_trashbin/l10n/hy.php b/apps/files_trashbin/l10n/hy.php index 6ff58b5620..f933bec8fe 100644 --- a/apps/files_trashbin/l10n/hy.php +++ b/apps/files_trashbin/l10n/hy.php @@ -1,7 +1,5 @@ array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Ջնջել" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ia.php b/apps/files_trashbin/l10n/ia.php index c583344a81..7709ef030e 100644 --- a/apps/files_trashbin/l10n/ia.php +++ b/apps/files_trashbin/l10n/ia.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nomine", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Deler" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/id.php b/apps/files_trashbin/l10n/id.php index 6aad1302f4..a55520fc11 100644 --- a/apps/files_trashbin/l10n/id.php +++ b/apps/files_trashbin/l10n/id.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Tidak dapat menghapus permanen %s", "Couldn't restore %s" => "Tidak dapat memulihkan %s", -"perform restore operation" => "jalankan operasi pemulihan", "Error" => "Galat", -"delete file permanently" => "hapus berkas secara permanen", -"Delete permanently" => "Hapus secara permanen", -"Name" => "Nama", -"Deleted" => "Dihapus", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "Tempat sampah anda kosong!", +"Name" => "Nama", "Restore" => "Pulihkan", +"Deleted" => "Dihapus", "Delete" => "Hapus", "Deleted Files" => "Berkas yang Dihapus" ); diff --git a/apps/files_trashbin/l10n/is.php b/apps/files_trashbin/l10n/is.php index 55ae433646..8ccf89739f 100644 --- a/apps/files_trashbin/l10n/is.php +++ b/apps/files_trashbin/l10n/is.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Villa", "Name" => "Nafn", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Eyða" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index e4b39c4a6d..b631e0c9e4 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -2,17 +2,12 @@ $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", "Error" => "Errore", -"delete file permanently" => "elimina il file definitivamente", -"Delete permanently" => "Elimina definitivamente", -"Name" => "Nome", -"Deleted" => "Eliminati", -"_%n folder_::_%n folders_" => array("%n cartella","%n cartelle"), -"_%n file_::_%n files_" => array("%n file","%n file"), "restored" => "ripristinati", "Nothing in here. Your trash bin is empty!" => "Qui non c'è niente. Il tuo cestino è vuoto.", +"Name" => "Nome", "Restore" => "Ripristina", +"Deleted" => "Eliminati", "Delete" => "Elimina", "Deleted Files" => "File eliminati" ); diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index eb9748d57c..e819a92559 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s を完全に削除出来ませんでした", "Couldn't restore %s" => "%s を復元出来ませんでした", -"perform restore operation" => "復元操作を実行する", "Error" => "エラー", -"delete file permanently" => "ファイルを完全に削除する", -"Delete permanently" => "完全に削除する", -"Name" => "名前", -"Deleted" => "削除済み", -"_%n folder_::_%n folders_" => array("%n個のフォルダ"), -"_%n file_::_%n files_" => array("%n個のファイル"), "restored" => "復元済", "Nothing in here. Your trash bin is empty!" => "ここには何もありません。ゴミ箱は空です!", +"Name" => "名前", "Restore" => "復元", +"Deleted" => "削除済み", "Delete" => "削除", "Deleted Files" => "削除されたファイル" ); diff --git a/apps/files_trashbin/l10n/ka_GE.php b/apps/files_trashbin/l10n/ka_GE.php index 236d8951e9..7440171dee 100644 --- a/apps/files_trashbin/l10n/ka_GE.php +++ b/apps/files_trashbin/l10n/ka_GE.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "ფაილი %s–ის სრულად წაშლა ვერ მოხერხდა", "Couldn't restore %s" => "%s–ის აღდგენა ვერ მოხერხდა", -"perform restore operation" => "მიმდინარეობს აღდგენის ოპერაცია", "Error" => "შეცდომა", -"delete file permanently" => "ფაილის სრულად წაშლა", -"Delete permanently" => "სრულად წაშლა", -"Name" => "სახელი", -"Deleted" => "წაშლილი", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!", +"Name" => "სახელი", "Restore" => "აღდგენა", +"Deleted" => "წაშლილი", "Delete" => "წაშლა", "Deleted Files" => "წაშლილი ფაილები" ); diff --git a/apps/files_trashbin/l10n/ko.php b/apps/files_trashbin/l10n/ko.php index 9ac5f9802c..809ecfea15 100644 --- a/apps/files_trashbin/l10n/ko.php +++ b/apps/files_trashbin/l10n/ko.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s를 영구적으로 삭제할수 없습니다", "Couldn't restore %s" => "%s를 복원할수 없습니다", -"perform restore operation" => "복원 작업중", "Error" => "오류", -"delete file permanently" => "영구적으로 파일 삭제하기", -"Delete permanently" => "영원히 삭제", -"Name" => "이름", -"Deleted" => "삭제됨", -"_%n folder_::_%n folders_" => array("폴더 %n개"), -"_%n file_::_%n files_" => array("파일 %n개 "), "restored" => "복원됨", "Nothing in here. Your trash bin is empty!" => "현재 휴지통은 비어있습니다!", +"Name" => "이름", "Restore" => "복원", +"Deleted" => "삭제됨", "Delete" => "삭제", "Deleted Files" => "삭제된 파일들" ); diff --git a/apps/files_trashbin/l10n/ku_IQ.php b/apps/files_trashbin/l10n/ku_IQ.php index 3f110f0600..c1962a4075 100644 --- a/apps/files_trashbin/l10n/ku_IQ.php +++ b/apps/files_trashbin/l10n/ku_IQ.php @@ -1,8 +1,6 @@ "هه‌ڵه", -"Name" => "ناو", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("","") +"Name" => "ناو" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lb.php b/apps/files_trashbin/l10n/lb.php index cbfd515a8b..b434ae7217 100644 --- a/apps/files_trashbin/l10n/lb.php +++ b/apps/files_trashbin/l10n/lb.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Fehler", "Name" => "Numm", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Läschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lt_LT.php b/apps/files_trashbin/l10n/lt_LT.php index 0a51290f4d..c4a8463fd0 100644 --- a/apps/files_trashbin/l10n/lt_LT.php +++ b/apps/files_trashbin/l10n/lt_LT.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nepavyko negrįžtamai ištrinti %s", "Couldn't restore %s" => "Nepavyko atkurti %s", -"perform restore operation" => "atkurti", "Error" => "Klaida", -"delete file permanently" => "failą ištrinti negrįžtamai", -"Delete permanently" => "Ištrinti negrįžtamai", -"Name" => "Pavadinimas", -"Deleted" => "Ištrinti", -"_%n folder_::_%n folders_" => array("","","%n aplankų"), -"_%n file_::_%n files_" => array("","","%n failų"), "restored" => "atstatyta", "Nothing in here. Your trash bin is empty!" => "Nieko nėra. Jūsų šiukšliadėžė tuščia!", +"Name" => "Pavadinimas", "Restore" => "Atstatyti", +"Deleted" => "Ištrinti", "Delete" => "Ištrinti", "Deleted Files" => "Ištrinti failai" ); diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index ca833b2420..5c04a0c97d 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -2,17 +2,12 @@ $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", "Error" => "Kļūda", -"delete file permanently" => "dzēst datni pavisam", -"Delete permanently" => "Dzēst pavisam", -"Name" => "Nosaukums", -"Deleted" => "Dzēsts", -"_%n folder_::_%n folders_" => array("Nekas, %n mapes","%n mape","%n mapes"), -"_%n file_::_%n files_" => array("Neviens! %n faaili","%n fails","%n faili"), "restored" => "atjaunots", "Nothing in here. Your trash bin is empty!" => "Šeit nekā nav. Jūsu miskaste ir tukša!", +"Name" => "Nosaukums", "Restore" => "Atjaunot", +"Deleted" => "Dzēsts", "Delete" => "Dzēst", "Deleted Files" => "Dzēstās datnes" ); diff --git a/apps/files_trashbin/l10n/mk.php b/apps/files_trashbin/l10n/mk.php index 965518dbc8..9200be01cd 100644 --- a/apps/files_trashbin/l10n/mk.php +++ b/apps/files_trashbin/l10n/mk.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Грешка", "Name" => "Име", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Избриши" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_trashbin/l10n/ms_MY.php b/apps/files_trashbin/l10n/ms_MY.php index 1b5ca07c70..1972eba031 100644 --- a/apps/files_trashbin/l10n/ms_MY.php +++ b/apps/files_trashbin/l10n/ms_MY.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Ralat", "Name" => "Nama", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Delete" => "Padam" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/nb_NO.php b/apps/files_trashbin/l10n/nb_NO.php index 8eb3bc1846..eb917e3dde 100644 --- a/apps/files_trashbin/l10n/nb_NO.php +++ b/apps/files_trashbin/l10n/nb_NO.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kunne ikke slette %s fullstendig", "Couldn't restore %s" => "Kunne ikke gjenopprette %s", -"perform restore operation" => "utfør gjenopprettings operasjon", "Error" => "Feil", -"delete file permanently" => "slett filer permanent", -"Delete permanently" => "Slett permanent", -"Name" => "Navn", -"Deleted" => "Slettet", -"_%n folder_::_%n folders_" => array("","%n mapper"), -"_%n file_::_%n files_" => array("","%n filer"), "Nothing in here. Your trash bin is empty!" => "Ingenting her. Søppelkassen din er tom!", +"Name" => "Navn", "Restore" => "Gjenopprett", +"Deleted" => "Slettet", "Delete" => "Slett", "Deleted Files" => "Slettet filer" ); diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index b3ae57da56..37a8ca6540 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kon %s niet permanent verwijderen", "Couldn't restore %s" => "Kon %s niet herstellen", -"perform restore operation" => "uitvoeren restore operatie", "Error" => "Fout", -"delete file permanently" => "verwijder bestanden definitief", -"Delete permanently" => "Verwijder definitief", -"Name" => "Naam", -"Deleted" => "Verwijderd", -"_%n folder_::_%n folders_" => array("%n map","%n mappen"), -"_%n file_::_%n files_" => array("%n bestand","%n bestanden"), "restored" => "hersteld", "Nothing in here. Your trash bin is empty!" => "Niets te vinden. Uw prullenbak is leeg!", +"Name" => "Naam", "Restore" => "Herstellen", +"Deleted" => "Verwijderd", "Delete" => "Verwijder", "Deleted Files" => "Verwijderde bestanden" ); diff --git a/apps/files_trashbin/l10n/nn_NO.php b/apps/files_trashbin/l10n/nn_NO.php index 73fe48211c..39e2d5cda9 100644 --- a/apps/files_trashbin/l10n/nn_NO.php +++ b/apps/files_trashbin/l10n/nn_NO.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Klarte ikkje sletta %s for godt", "Couldn't restore %s" => "Klarte ikkje gjenoppretta %s", -"perform restore operation" => "utfør gjenoppretting", "Error" => "Feil", -"delete file permanently" => "slett fila for godt", -"Delete permanently" => "Slett for godt", -"Name" => "Namn", -"Deleted" => "Sletta", -"_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), -"_%n file_::_%n files_" => array("%n fil","%n filer"), "restored" => "gjenoppretta", "Nothing in here. Your trash bin is empty!" => "Ingenting her. Papirkorga di er tom!", +"Name" => "Namn", "Restore" => "Gjenopprett", +"Deleted" => "Sletta", "Delete" => "Slett", "Deleted Files" => "Sletta filer" ); diff --git a/apps/files_trashbin/l10n/oc.php b/apps/files_trashbin/l10n/oc.php index a62902c3b7..b472683f08 100644 --- a/apps/files_trashbin/l10n/oc.php +++ b/apps/files_trashbin/l10n/oc.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nom", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Escafa" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/pa.php b/apps/files_trashbin/l10n/pa.php index e53707fd70..825a49aaea 100644 --- a/apps/files_trashbin/l10n/pa.php +++ b/apps/files_trashbin/l10n/pa.php @@ -1,8 +1,6 @@ "ਗਲਤੀ", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "ਹਟਾਓ" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/pl.php b/apps/files_trashbin/l10n/pl.php index c838a6b956..961b772782 100644 --- a/apps/files_trashbin/l10n/pl.php +++ b/apps/files_trashbin/l10n/pl.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nie można trwale usunąć %s", "Couldn't restore %s" => "Nie można przywrócić %s", -"perform restore operation" => "wykonywanie operacji przywracania", "Error" => "Błąd", -"delete file permanently" => "trwale usuń plik", -"Delete permanently" => "Trwale usuń", -"Name" => "Nazwa", -"Deleted" => "Usunięte", -"_%n folder_::_%n folders_" => array("","","%n katalogów"), -"_%n file_::_%n files_" => array("","","%n plików"), "restored" => "przywrócony", "Nothing in here. Your trash bin is empty!" => "Nic tu nie ma. Twój kosz jest pusty!", +"Name" => "Nazwa", "Restore" => "Przywróć", +"Deleted" => "Usunięte", "Delete" => "Usuń", "Deleted Files" => "Usunięte pliki" ); diff --git a/apps/files_trashbin/l10n/pt_BR.php b/apps/files_trashbin/l10n/pt_BR.php index e0e8c8faec..c2100efe96 100644 --- a/apps/files_trashbin/l10n/pt_BR.php +++ b/apps/files_trashbin/l10n/pt_BR.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Não foi possível excluir %s permanentemente", "Couldn't restore %s" => "Não foi possível restaurar %s", -"perform restore operation" => "realizar operação de restauração", "Error" => "Erro", -"delete file permanently" => "excluir arquivo permanentemente", -"Delete permanently" => "Excluir permanentemente", -"Name" => "Nome", -"Deleted" => "Excluído", -"_%n folder_::_%n folders_" => array("","%n pastas"), -"_%n file_::_%n files_" => array("%n arquivo","%n arquivos"), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Nada aqui. Sua lixeira está vazia!", +"Name" => "Nome", "Restore" => "Restaurar", +"Deleted" => "Excluído", "Delete" => "Excluir", "Deleted Files" => "Arquivos Apagados" ); diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index 9dccc773cb..89e84a84d2 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Não foi possível eliminar %s de forma permanente", "Couldn't restore %s" => "Não foi possível restaurar %s", -"perform restore operation" => "executar a operação de restauro", "Error" => "Erro", -"delete file permanently" => "Eliminar permanentemente o(s) ficheiro(s)", -"Delete permanently" => "Eliminar permanentemente", -"Name" => "Nome", -"Deleted" => "Apagado", -"_%n folder_::_%n folders_" => array("%n pasta","%n pastas"), -"_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "restored" => "Restaurado", "Nothing in here. Your trash bin is empty!" => "Não hà ficheiros. O lixo está vazio!", +"Name" => "Nome", "Restore" => "Restaurar", +"Deleted" => "Apagado", "Delete" => "Eliminar", "Deleted Files" => "Ficheiros Apagados" ); diff --git a/apps/files_trashbin/l10n/ro.php b/apps/files_trashbin/l10n/ro.php index 12377bb065..f285dcc164 100644 --- a/apps/files_trashbin/l10n/ro.php +++ b/apps/files_trashbin/l10n/ro.php @@ -1,10 +1,7 @@ "Eroare", -"Delete permanently" => "Stergere permanenta", "Name" => "Nume", -"_%n folder_::_%n folders_" => array("","","%n directoare"), -"_%n file_::_%n files_" => array("","","%n fișiere"), "Delete" => "Șterge" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index 5f52263a11..06a4f864c6 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s не может быть удалён навсегда", "Couldn't restore %s" => "%s не может быть восстановлен", -"perform restore operation" => "выполнить операцию восстановления", "Error" => "Ошибка", -"delete file permanently" => "удалить файл навсегда", -"Delete permanently" => "Удалено навсегда", -"Name" => "Имя", -"Deleted" => "Удалён", -"_%n folder_::_%n folders_" => array("","","%n папок"), -"_%n file_::_%n files_" => array("","","%n файлов"), "restored" => "восстановлен", "Nothing in here. Your trash bin is empty!" => "Здесь ничего нет. Ваша корзина пуста!", +"Name" => "Имя", "Restore" => "Восстановить", +"Deleted" => "Удалён", "Delete" => "Удалить", "Deleted Files" => "Удаленные файлы" ); diff --git a/apps/files_trashbin/l10n/si_LK.php b/apps/files_trashbin/l10n/si_LK.php index 6dad84437c..87e928989e 100644 --- a/apps/files_trashbin/l10n/si_LK.php +++ b/apps/files_trashbin/l10n/si_LK.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "දෝෂයක්", "Name" => "නම", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "මකා දමන්න" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/sk_SK.php b/apps/files_trashbin/l10n/sk_SK.php index 50fb58a44e..b23383c121 100644 --- a/apps/files_trashbin/l10n/sk_SK.php +++ b/apps/files_trashbin/l10n/sk_SK.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nemožno zmazať %s navždy", "Couldn't restore %s" => "Nemožno obnoviť %s", -"perform restore operation" => "vykonať obnovu", "Error" => "Chyba", -"delete file permanently" => "trvalo zmazať súbor", -"Delete permanently" => "Zmazať trvalo", -"Name" => "Názov", -"Deleted" => "Zmazané", -"_%n folder_::_%n folders_" => array("%n priečinok","%n priečinky","%n priečinkov"), -"_%n file_::_%n files_" => array("%n súbor","%n súbory","%n súborov"), "restored" => "obnovené", "Nothing in here. Your trash bin is empty!" => "Žiadny obsah. Kôš je prázdny!", +"Name" => "Názov", "Restore" => "Obnoviť", +"Deleted" => "Zmazané", "Delete" => "Zmazať", "Deleted Files" => "Zmazané súbory" ); diff --git a/apps/files_trashbin/l10n/sl.php b/apps/files_trashbin/l10n/sl.php index eb2d42a18f..a3c0bcf92a 100644 --- a/apps/files_trashbin/l10n/sl.php +++ b/apps/files_trashbin/l10n/sl.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Datoteke %s ni mogoče dokončno izbrisati.", "Couldn't restore %s" => "Ni mogoče obnoviti %s", -"perform restore operation" => "izvedi opravilo obnavljanja", "Error" => "Napaka", -"delete file permanently" => "dokončno izbriši datoteko", -"Delete permanently" => "Izbriši dokončno", -"Name" => "Ime", -"Deleted" => "Izbrisano", -"_%n folder_::_%n folders_" => array("","","",""), -"_%n file_::_%n files_" => array("","","",""), "Nothing in here. Your trash bin is empty!" => "Mapa smeti je prazna.", +"Name" => "Ime", "Restore" => "Obnovi", +"Deleted" => "Izbrisano", "Delete" => "Izbriši", "Deleted Files" => "Izbrisane datoteke" ); diff --git a/apps/files_trashbin/l10n/sq.php b/apps/files_trashbin/l10n/sq.php index 50ca7d901b..63957080f3 100644 --- a/apps/files_trashbin/l10n/sq.php +++ b/apps/files_trashbin/l10n/sq.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nuk munda ta eliminoj përfundimisht %s", "Couldn't restore %s" => "Nuk munda ta rivendos %s", -"perform restore operation" => "ekzekuto operacionin e rivendosjes", "Error" => "Veprim i gabuar", -"delete file permanently" => "eliminoje përfundimisht skedarin", -"Delete permanently" => "Elimino përfundimisht", -"Name" => "Emri", -"Deleted" => "Eliminuar", -"_%n folder_::_%n folders_" => array("%n dosje","%n dosje"), -"_%n file_::_%n files_" => array("%n skedar","%n skedarë"), "restored" => "rivendosur", "Nothing in here. Your trash bin is empty!" => "Këtu nuk ka asgjë. Koshi juaj është bosh!", +"Name" => "Emri", "Restore" => "Rivendos", +"Deleted" => "Eliminuar", "Delete" => "Elimino", "Deleted Files" => "Skedarë të eliminuar" ); diff --git a/apps/files_trashbin/l10n/sr.php b/apps/files_trashbin/l10n/sr.php index 7311e759f9..c893dba118 100644 --- a/apps/files_trashbin/l10n/sr.php +++ b/apps/files_trashbin/l10n/sr.php @@ -1,14 +1,10 @@ "врати у претходно стање", "Error" => "Грешка", -"Delete permanently" => "Обриши за стално", -"Name" => "Име", -"Deleted" => "Обрисано", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "Nothing in here. Your trash bin is empty!" => "Овде нема ништа. Корпа за отпатке је празна.", +"Name" => "Име", "Restore" => "Врати", +"Deleted" => "Обрисано", "Delete" => "Обриши" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/sr@latin.php b/apps/files_trashbin/l10n/sr@latin.php index fa30afcf4b..9f18ac8be7 100644 --- a/apps/files_trashbin/l10n/sr@latin.php +++ b/apps/files_trashbin/l10n/sr@latin.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Greška", "Name" => "Ime", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "Delete" => "Obriši" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index 47a52f2573..21d4d15e9c 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kunde inte radera %s permanent", "Couldn't restore %s" => "Kunde inte återställa %s", -"perform restore operation" => "utför återställning", "Error" => "Fel", -"delete file permanently" => "radera filen permanent", -"Delete permanently" => "Radera permanent", -"Name" => "Namn", -"Deleted" => "Raderad", -"_%n folder_::_%n folders_" => array("%n mapp","%n mappar"), -"_%n file_::_%n files_" => array("%n fil","%n filer"), "restored" => "återställd", "Nothing in here. Your trash bin is empty!" => "Ingenting här. Din papperskorg är tom!", +"Name" => "Namn", "Restore" => "Återskapa", +"Deleted" => "Raderad", "Delete" => "Radera", "Deleted Files" => "Raderade filer" ); diff --git a/apps/files_trashbin/l10n/ta_LK.php b/apps/files_trashbin/l10n/ta_LK.php index ed93b459c7..79349919b5 100644 --- a/apps/files_trashbin/l10n/ta_LK.php +++ b/apps/files_trashbin/l10n/ta_LK.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "வழு", "Name" => "பெயர்", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "நீக்குக" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/te.php b/apps/files_trashbin/l10n/te.php index 0d803a8e64..01262b7823 100644 --- a/apps/files_trashbin/l10n/te.php +++ b/apps/files_trashbin/l10n/te.php @@ -1,10 +1,7 @@ "పొరపాటు", -"Delete permanently" => "శాశ్వతంగా తొలగించు", "Name" => "పేరు", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "తొలగించు" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/th_TH.php b/apps/files_trashbin/l10n/th_TH.php index 31caa11aac..65fd081a95 100644 --- a/apps/files_trashbin/l10n/th_TH.php +++ b/apps/files_trashbin/l10n/th_TH.php @@ -1,13 +1,10 @@ "ดำเนินการคืนค่า", "Error" => "ข้อผิดพลาด", -"Name" => "ชื่อ", -"Deleted" => "ลบแล้ว", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่", +"Name" => "ชื่อ", "Restore" => "คืนค่า", +"Deleted" => "ลบแล้ว", "Delete" => "ลบ", "Deleted Files" => "ไฟล์ที่ลบทิ้ง" ); diff --git a/apps/files_trashbin/l10n/tr.php b/apps/files_trashbin/l10n/tr.php index f25b179bc1..873dc631fe 100644 --- a/apps/files_trashbin/l10n/tr.php +++ b/apps/files_trashbin/l10n/tr.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s Kalıcı olarak silinemedi", "Couldn't restore %s" => "%s Geri yüklenemedi", -"perform restore operation" => "Geri yükleme işlemini gerçekleştir", "Error" => "Hata", -"delete file permanently" => "Dosyayı kalıcı olarak sil", -"Delete permanently" => "Kalıcı olarak sil", -"Name" => "İsim", -"Deleted" => "Silindi", -"_%n folder_::_%n folders_" => array("","%n dizin"), -"_%n file_::_%n files_" => array("","%n dosya"), "restored" => "geri yüklendi", "Nothing in here. Your trash bin is empty!" => "Burası boş. Çöp kutun tamamen boş.", +"Name" => "İsim", "Restore" => "Geri yükle", +"Deleted" => "Silindi", "Delete" => "Sil", "Deleted Files" => "Silinen Dosyalar" ); diff --git a/apps/files_trashbin/l10n/ug.php b/apps/files_trashbin/l10n/ug.php index ad983aee18..54c040c88a 100644 --- a/apps/files_trashbin/l10n/ug.php +++ b/apps/files_trashbin/l10n/ug.php @@ -1,12 +1,9 @@ "خاتالىق", -"Delete permanently" => "مەڭگۈلۈك ئۆچۈر", +"Nothing in here. Your trash bin is empty!" => "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!", "Name" => "ئاتى", "Deleted" => "ئۆچۈرۈلدى", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), -"Nothing in here. Your trash bin is empty!" => "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!", "Delete" => "ئۆچۈر" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/uk.php b/apps/files_trashbin/l10n/uk.php index aa4b659503..c54d45aaa8 100644 --- a/apps/files_trashbin/l10n/uk.php +++ b/apps/files_trashbin/l10n/uk.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Неможливо видалити %s назавжди", "Couldn't restore %s" => "Неможливо відновити %s", -"perform restore operation" => "виконати операцію відновлення", "Error" => "Помилка", -"delete file permanently" => "видалити файл назавжди", -"Delete permanently" => "Видалити назавжди", -"Name" => "Ім'я", -"Deleted" => "Видалено", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "restored" => "відновлено", "Nothing in here. Your trash bin is empty!" => "Нічого немає. Ваший кошик для сміття пустий!", +"Name" => "Ім'я", "Restore" => "Відновити", +"Deleted" => "Видалено", "Delete" => "Видалити", "Deleted Files" => "Видалено Файлів" ); diff --git a/apps/files_trashbin/l10n/ur_PK.php b/apps/files_trashbin/l10n/ur_PK.php index f6c6a3da3c..49c82f5387 100644 --- a/apps/files_trashbin/l10n/ur_PK.php +++ b/apps/files_trashbin/l10n/ur_PK.php @@ -1,7 +1,5 @@ "ایرر", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("","") +"Error" => "ایرر" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/vi.php b/apps/files_trashbin/l10n/vi.php index 072d799fa6..c5e899392b 100644 --- a/apps/files_trashbin/l10n/vi.php +++ b/apps/files_trashbin/l10n/vi.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Không thể óa %s vĩnh viễn", "Couldn't restore %s" => "Không thể khôi phục %s", -"perform restore operation" => "thực hiện phục hồi", "Error" => "Lỗi", -"delete file permanently" => "xóa file vĩnh viễn", -"Delete permanently" => "Xóa vĩnh vễn", -"Name" => "Tên", -"Deleted" => "Đã xóa", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "Không có gì ở đây. Thùng rác của bạn rỗng!", +"Name" => "Tên", "Restore" => "Khôi phục", +"Deleted" => "Đã xóa", "Delete" => "Xóa", "Deleted Files" => "File đã xóa" ); diff --git a/apps/files_trashbin/l10n/zh_CN.php b/apps/files_trashbin/l10n/zh_CN.php index dc2d5b4c00..24d9002adc 100644 --- a/apps/files_trashbin/l10n/zh_CN.php +++ b/apps/files_trashbin/l10n/zh_CN.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "无法彻底删除文件%s", "Couldn't restore %s" => "无法恢复%s", -"perform restore operation" => "执行恢复操作", "Error" => "错误", -"delete file permanently" => "彻底删除文件", -"Delete permanently" => "永久删除", -"Name" => "名称", -"Deleted" => "已删除", -"_%n folder_::_%n folders_" => array("%n 文件夹"), -"_%n file_::_%n files_" => array("%n个文件"), "restored" => "已恢复", "Nothing in here. Your trash bin is empty!" => "这里没有东西. 你的回收站是空的!", +"Name" => "名称", "Restore" => "恢复", +"Deleted" => "已删除", "Delete" => "删除", "Deleted Files" => "已删除文件" ); diff --git a/apps/files_trashbin/l10n/zh_HK.php b/apps/files_trashbin/l10n/zh_HK.php index 3f0d663bae..877912e9c4 100644 --- a/apps/files_trashbin/l10n/zh_HK.php +++ b/apps/files_trashbin/l10n/zh_HK.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "錯誤", "Name" => "名稱", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Delete" => "刪除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_TW.php b/apps/files_trashbin/l10n/zh_TW.php index bfc2fc659d..1f05a2687b 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "無法永久刪除 %s", "Couldn't restore %s" => "無法還原 %s", -"perform restore operation" => "進行還原動作", "Error" => "錯誤", -"delete file permanently" => "永久刪除檔案", -"Delete permanently" => "永久刪除", -"Name" => "名稱", -"Deleted" => "已刪除", -"_%n folder_::_%n folders_" => array("%n 個資料夾"), -"_%n file_::_%n files_" => array("%n 個檔案"), "restored" => "已還原", "Nothing in here. Your trash bin is empty!" => "您的回收桶是空的!", +"Name" => "名稱", "Restore" => "還原", +"Deleted" => "已刪除", "Delete" => "刪除", "Deleted Files" => "已刪除的檔案" ); diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 82ba060883..15ba074e45 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -1,4 +1,3 @@ -
@@ -17,7 +16,9 @@
+ t( 'Deleted' )); ?> diff --git a/apps/files_versions/ajax/preview.php b/apps/files_versions/ajax/preview.php index c24134df53..62bcc03f52 100644 --- a/apps/files_versions/ajax/preview.php +++ b/apps/files_versions/ajax/preview.php @@ -12,25 +12,32 @@ if(!\OC_App::isEnabled('files_versions')){ } $file = array_key_exists('file', $_GET) ? (string) urldecode($_GET['file']) : ''; +$user = array_key_exists('user', $_GET) ? $_GET['user'] : ''; $maxX = array_key_exists('x', $_GET) ? (int) $_GET['x'] : 44; $maxY = array_key_exists('y', $_GET) ? (int) $_GET['y'] : 44; $version = array_key_exists('version', $_GET) ? $_GET['version'] : ''; $scalingUp = array_key_exists('scalingup', $_GET) ? (bool) $_GET['scalingup'] : true; +if($user === '') { + \OC_Response::setStatus(400); //400 Bad Request + \OC_Log::write('versions-preview', 'No user parameter was passed', \OC_Log::DEBUG); + exit; +} + if($file === '' && $version === '') { \OC_Response::setStatus(400); //400 Bad Request - \OC_Log::write('core-preview', 'No file parameter was passed', \OC_Log::DEBUG); + \OC_Log::write('versions-preview', 'No file parameter was passed', \OC_Log::DEBUG); exit; } if($maxX === 0 || $maxY === 0) { \OC_Response::setStatus(400); //400 Bad Request - \OC_Log::write('core-preview', 'x and/or y set to 0', \OC_Log::DEBUG); + \OC_Log::write('versions-preview', 'x and/or y set to 0', \OC_Log::DEBUG); exit; } try{ - $preview = new \OC\Preview(\OC_User::getUser(), 'files_versions'); + $preview = new \OC\Preview($user, 'files_versions'); $preview->setFile($file.'.v'.$version); $preview->setMaxX($maxX); $preview->setMaxY($maxY); diff --git a/apps/files_versions/l10n/tr.php b/apps/files_versions/l10n/tr.php index f2bc1e6c0a..998c61e927 100644 --- a/apps/files_versions/l10n/tr.php +++ b/apps/files_versions/l10n/tr.php @@ -2,6 +2,9 @@ $TRANSLATIONS = array( "Could not revert: %s" => "Geri alınamıyor: %s", "Versions" => "Sürümler", +"Failed to revert {file} to revision {timestamp}." => "{file} dosyası {timestamp} gözden geçirmesine geri alınamadı.", +"More versions..." => "Daha fazla sürüm...", +"No other versions available" => "Başka sürüm mevcut değil", "Restore" => "Geri yükle" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index fc8d0365c7..225611374a 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -19,6 +19,7 @@ class Storage { const DEFAULTENABLED=true; const DEFAULTMAXSIZE=50; // unit: percentage; 50% of available disk space/quota + const VERSIONS_ROOT = 'files_versions/'; private static $max_versions_per_interval = array( //first 10sec, one version every 2sec @@ -238,60 +239,38 @@ class Storage { * @param $filename file to find versions of, relative to the user files dir * @returns array */ - public static function getVersions($uid, $filename ) { - if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) { - $versions_fileview = new \OC\Files\View('/' . $uid . '/files_versions'); - $versionsName = $versions_fileview->getLocalFile($filename).'.v'; - $escapedVersionName = preg_replace('/(\*|\?|\[)/', '[$1]', $versionsName); + public static function getVersions($uid, $filename) { + $versions = array(); + // fetch for old versions + $view = new \OC\Files\View('/' . $uid . '/' . self::VERSIONS_ROOT); - $versions = array(); - // fetch for old versions - $matches = glob($escapedVersionName.'*'); + $pathinfo = pathinfo($filename); - if ( !$matches ) { - return $versions; - } + $files = $view->getDirectoryContent($pathinfo['dirname']); - sort( $matches ); + $versionedFile = $pathinfo['basename']; - $files_view = new \OC\Files\View('/'.$uid.'/files'); - $local_file = $files_view->getLocalFile($filename); - $local_file_md5 = \md5_file( $local_file ); - - foreach( $matches as $ma ) { - $parts = explode( '.v', $ma ); - $version = ( end( $parts ) ); - $key = $version.'#'.$filename; - $versions[$key]['cur'] = 0; - $versions[$key]['version'] = $version; - $versions[$key]['humanReadableTimestamp'] = self::getHumanReadableTimestamp($version); - $versions[$key]['path'] = $filename; - $versions[$key]['preview'] = \OCP\Util::linkToRoute('core_ajax_versions_preview', array('file' => $filename, 'version' => $version)); - $versions[$key]['size'] = $versions_fileview->filesize($filename.'.v'.$version); - - // if file with modified date exists, flag it in array as currently enabled version - ( \md5_file( $ma ) == $local_file_md5 ? $versions[$key]['fileMatch'] = 1 : $versions[$key]['fileMatch'] = 0 ); - - } - - // newest versions first - $versions = array_reverse( $versions ); - - foreach( $versions as $key => $value ) { - // flag the first matched file in array (which will have latest modification date) as current version - if ( $value['fileMatch'] ) { - $value['cur'] = 1; - break; + foreach ($files as $file) { + if ($file['type'] === 'file') { + $pos = strrpos($file['path'], '.v'); + $currentFile = substr($file['name'], 0, strrpos($file['name'], '.v')); + if ($currentFile === $versionedFile) { + $version = substr($file['path'], $pos + 2); + $key = $version . '#' . $filename; + $versions[$key]['cur'] = 0; + $versions[$key]['version'] = $version; + $versions[$key]['humanReadableTimestamp'] = self::getHumanReadableTimestamp($version); + $versions[$key]['preview'] = \OCP\Util::linkToRoute('core_ajax_versions_preview', array('file' => $filename, 'version' => $version, 'user' => $uid)); + $versions[$key]['path'] = $filename; + $versions[$key]['size'] = $file['size']; } } - - return( $versions ); - - } else { - // if versioning isn't enabled then return an empty array - return( array() ); } + // sort with newest version first + krsort($versions); + + return $versions; } /** @@ -366,48 +345,45 @@ class Storage { * @return array with contains two arrays 'all' which contains all versions sorted by age and 'by_file' which contains all versions sorted by filename */ private static function getAllVersions($uid) { - if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) { - $versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions'); - $versionsRoot = $versions_fileview->getLocalFolder(''); + $view = new \OC\Files\View('/' . $uid . '/'); + $dirs = array(self::VERSIONS_ROOT); - $iterator = new \RecursiveIteratorIterator( - new \RecursiveDirectoryIterator($versionsRoot), - \RecursiveIteratorIterator::CHILD_FIRST - ); + while (!empty($dirs)) { + $dir = array_pop($dirs); + $files = $view->getDirectoryContent($dir); - $versions = array(); - - foreach ($iterator as $path) { - if ( preg_match('/^.+\.v(\d+)$/', $path, $match) ) { - $relpath = substr($path, strlen($versionsRoot)-1); - $versions[$match[1].'#'.$relpath] = array('path' => $relpath, 'timestamp' => $match[1]); + foreach ($files as $file) { + if ($file['type'] === 'dir') { + array_push($dirs, $file['path']); + } else { + $versionsBegin = strrpos($file['path'], '.v'); + $relPathStart = strlen(self::VERSIONS_ROOT); + $version = substr($file['path'], $versionsBegin + 2); + $relpath = substr($file['path'], $relPathStart, $versionsBegin - $relPathStart); + $key = $version . '#' . $relpath; + $versions[$key] = array('path' => $relpath, 'timestamp' => $version); } } - - ksort($versions); - - $i = 0; - - $result = array(); - - foreach( $versions as $key => $value ) { - $i++; - $size = $versions_fileview->filesize($value['path']); - $filename = substr($value['path'], 0, -strlen($value['timestamp'])-2); - - $result['all'][$key]['version'] = $value['timestamp']; - $result['all'][$key]['path'] = $filename; - $result['all'][$key]['size'] = $size; - - $filename = substr($value['path'], 0, -strlen($value['timestamp'])-2); - $result['by_file'][$filename][$key]['version'] = $value['timestamp']; - $result['by_file'][$filename][$key]['path'] = $filename; - $result['by_file'][$filename][$key]['size'] = $size; - - } - - return $result; } + + ksort($versions); + + $result = array(); + + foreach ($versions as $key => $value) { + $size = $view->filesize($value['path']); + $filename = $value['path']; + + $result['all'][$key]['version'] = $value['timestamp']; + $result['all'][$key]['path'] = $filename; + $result['all'][$key]['size'] = $size; + + $result['by_file'][$filename][$key]['version'] = $value['timestamp']; + $result['by_file'][$filename][$key]['path'] = $filename; + $result['by_file'][$filename][$key]['size'] = $size; + } + + return $result; } /** diff --git a/apps/user_ldap/appinfo/update.php b/apps/user_ldap/appinfo/update.php index 179451dad6..41770cf97b 100644 --- a/apps/user_ldap/appinfo/update.php +++ b/apps/user_ldap/appinfo/update.php @@ -1,20 +1,5 @@ setConnector($connector); -$groupBE = new \OCA\user_ldap\GROUP_LDAP(); -$groupBE->setConnector($connector); - -foreach($objects as $object) { - $fetchDNSql = ' - SELECT `ldap_dn`, `owncloud_name`, `directory_uuid` - FROM `*PREFIX*ldap_'.$object.'_mapping`'; - $updateSql = ' - UPDATE `*PREFIX*ldap_'.$object.'_mapping` - SET `ldap_DN` = ?, `directory_uuid` = ? - WHERE `ldap_dn` = ?'; - - $query = OCP\DB::prepare($fetchDNSql); - $res = $query->execute(); - $DNs = $res->fetchAll(); - $updateQuery = OCP\DB::prepare($updateSql); - foreach($DNs as $dn) { - $newDN = escapeDN(mb_strtolower($dn['ldap_dn'], 'UTF-8')); - if(!empty($dn['directory_uuid'])) { - $uuid = $dn['directory_uuid']; - } elseif($object === 'user') { - $uuid = $userBE->getUUID($newDN); - //fix home folder to avoid new ones depending on the configuration - $userBE->getHome($dn['owncloud_name']); - } else { - $uuid = $groupBE->getUUID($newDN); - } - try { - $updateQuery->execute(array($newDN, $uuid, $dn['ldap_dn'])); - } catch(Exception $e) { - \OCP\Util::writeLog('user_ldap', - 'Could not update '.$object.' '.$dn['ldap_dn'].' in the mappings table. ', - \OCP\Util::WARN); - } - - } + $value = \OCP\Config::getAppValue('user_ldap', + $config.'ldap_expert_uuid_attr', 'auto'); + \OCP\Config::setAppValue('user_ldap', + $config.'ldap_expert_uuid_user_attr', $value); + \OCP\Config::setAppValue('user_ldap', + $config.'ldap_expert_uuid_group_attr', $value); } - -function escapeDN($dn) { - $aDN = ldap_explode_dn($dn, false); - unset($aDN['count']); - foreach($aDN as $key => $part) { - $value = substr($part, strpos($part, '=')+1); - $escapedValue = strtr($value, Array(','=>'\2c', '='=>'\3d', '+'=>'\2b', - '<'=>'\3c', '>'=>'\3e', ';'=>'\3b', '\\'=>'\5c', - '"'=>'\22', '#'=>'\23')); - $part = str_replace($part, $value, $escapedValue); - } - $dn = implode(',', $aDN); - - return $dn; -} - - -// SUPPORTED UPGRADE FROM Version 0.3 (ownCloud 4.5) to 0.4 (ownCloud 5) - -if(!isset($connector)) { - $connector = new \OCA\user_ldap\lib\Connection(); -} -//it is required, that connections do have ldap_configuration_active setting stored in the database -$connector->getConfiguration(); -$connector->saveConfiguration(); - -// we don't save it anymore, was a well-meant bad idea. Clean up database. -$query = OC_DB::prepare('DELETE FROM `*PREFIX*preferences` WHERE `appid` = ? AND `configkey` = ?'); -$query->execute(array('user_ldap' , 'homedir')); diff --git a/apps/user_ldap/appinfo/version b/apps/user_ldap/appinfo/version index 60a2d3e96c..44bb5d1f74 100644 --- a/apps/user_ldap/appinfo/version +++ b/apps/user_ldap/appinfo/version @@ -1 +1 @@ -0.4.0 \ No newline at end of file +0.4.1 \ No newline at end of file diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index 455ad62d84..36a06b99da 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atribut nom d'usuari intern:", "Override UUID detection" => "Sobrescriu la detecció UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits).", -"UUID Attribute:" => "Atribut UUID:", "Username-LDAP User Mapping" => "Mapatge d'usuari Nom d'usuari-LDAP", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental.", "Clear Username-LDAP User Mapping" => "Elimina el mapatge d'usuari Nom d'usuari-LDAP", diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 9109a8c710..b6759ab0ee 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -76,7 +76,8 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atribut interního uživatelského jména:", "Override UUID detection" => "Nastavit ručně UUID atribut", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Ve výchozím nastavení je UUID atribut nalezen automaticky. UUID atribut je používán pro nezpochybnitelnou identifikaci uživatelů a skupin z LDAP. Navíc je na základě UUID tvořeno také interní uživatelské jméno, pokud není nastaveno jinak. Můžete výchozí nastavení přepsat a použít atribut, který sami zvolíte. Musíte se ale ujistit, že atribut, který vyberete, bude uveden jak u uživatelů, tak i u skupin a je unikátní. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele a skupiny z LDAP.", -"UUID Attribute:" => "Atribut UUID:", +"UUID Attribute for Users:" => "UUID atribut pro uživatele:", +"UUID Attribute for Groups:" => "UUID atribut pro skupiny:", "Username-LDAP User Mapping" => "Mapování uživatelských jmen z LDAPu", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Uživatelská jména jsou používány pro uchovávání a přiřazování (meta)dat. Pro správnou identifikaci a rozpoznání uživatelů bude mít každý uživatel z LDAP interní uživatelské jméno. To vyžaduje mapování uživatelských jmen na uživatele LDAP. Vytvořené uživatelské jméno je mapováno na UUID uživatele v LDAP. Navíc je cachována DN pro zmenšení interakce s LDAP, ale není používána pro identifikaci. Pokud se DN změní, bude to správně rozpoznáno. Interní uživatelské jméno se používá celé. Vyčištění mapování zanechá zbytky všude. Vyčištění navíc není specifické konfiguraci, bude mít vliv na všechny LDAP konfigurace! Nikdy nečistěte mapování v produkčním prostředí, jen v testovací nebo experimentální fázi.", "Clear Username-LDAP User Mapping" => "Zrušit mapování uživatelských jmen LDAPu", diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index cb13275faf..77f77b7115 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -76,7 +76,8 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Attribut für interne Benutzernamen:", "Override UUID detection" => "UUID-Erkennung überschreiben", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Du musst allerdings sicherstellen, dass deine gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lasse es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus.", -"UUID Attribute:" => "UUID-Attribut:", +"UUID Attribute for Users:" => "UUID-Attribute für Benutzer:", +"UUID Attribute for Groups:" => "UUID-Attribute für Gruppen:", "Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung.", "Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung", diff --git a/apps/user_ldap/l10n/de_CH.php b/apps/user_ldap/l10n/de_CH.php index df9175e73b..28971ed9e4 100644 --- a/apps/user_ldap/l10n/de_CH.php +++ b/apps/user_ldap/l10n/de_CH.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Interne Eigenschaften des Benutzers:", "Override UUID detection" => "UUID-Erkennung überschreiben", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmässig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Ausserdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus.", -"UUID Attribute:" => "UUID-Attribut:", "Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung.", "Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 677d603ffa..a2ee5bbd2a 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -76,7 +76,8 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Interne Eigenschaften des Benutzers:", "Override UUID detection" => "UUID-Erkennung überschreiben", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus.", -"UUID Attribute:" => "UUID-Attribut:", +"UUID Attribute for Users:" => "UUID-Attribute für Benutzer:", +"UUID Attribute for Groups:" => "UUID-Attribute für Gruppen:", "Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung.", "Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung", diff --git a/apps/user_ldap/l10n/en_GB.php b/apps/user_ldap/l10n/en_GB.php index d613be3486..731ddc58b8 100644 --- a/apps/user_ldap/l10n/en_GB.php +++ b/apps/user_ldap/l10n/en_GB.php @@ -76,7 +76,8 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Internal Username Attribute:", "Override UUID detection" => "Override UUID detection", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "By default, the UUID attribute is automatically detected. The UUID attribute is used to unambiguously identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups.", -"UUID Attribute:" => "UUID Attribute:", +"UUID Attribute for Users:" => "UUID Attribute for Users:", +"UUID Attribute for Groups:" => "UUID Attribute for Groups:", "Username-LDAP User Mapping" => "Username-LDAP User Mapping", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Usernames are used to store and assign (meta) data. In order to precisely identify and recognise users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage.", "Clear Username-LDAP User Mapping" => "Clear Username-LDAP User Mapping", diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 4f37d5177a..537ee1e4bd 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atributo Nombre de usuario Interno:", "Override UUID detection" => "Sobrescribir la detección UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente.", -"UUID Attribute:" => "Atributo UUID:", "Username-LDAP User Mapping" => "Asignación del Nombre de usuario de un usuario LDAP", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental.", "Clear Username-LDAP User Mapping" => "Borrar la asignación de los Nombres de usuario de los usuarios LDAP", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 2436df8de7..c9ea9184b4 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atributo Nombre Interno de usuario:", "Override UUID detection" => "Sobrescribir la detección UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por defecto, el atributo UUID es detectado automáticamente. Este atributo es usado para identificar de manera certera usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no fue especificado otro comportamiento más arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte que el atributo de tu elección sea accesible por los usuarios y grupos y que sea único. Dejalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto sólo en los nuevos usuarios y grupos de LDAP mapeados (agregados).", -"UUID Attribute:" => "Atributo UUID:", "Username-LDAP User Mapping" => "Asignación del Nombre de usuario de un usuario LDAP", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Los usuarios son usados para almacenar y asignar datos (metadatos). Con el fin de identificar de forma precisa y reconocer usuarios, a cada usuario de LDAP se será asignado un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es dejado en caché para reducir la interacción entre el LDAP, pero no es usado para la identificación. Si el DN cambia, los cambios van a ser aplicados. El nombre de usuario interno es usado en todos los lugares. Vaciar los mapeos, deja restos por todas partes. Vaciar los mapeos, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, solamente en fase de desarrollo o experimental.", "Clear Username-LDAP User Mapping" => "Borrar la asignación de los Nombres de usuario de los usuarios LDAP", diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index b949fe0204..0c665f2d8a 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -76,7 +76,8 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Sisemise kasutajatunnuse atribuut:", "Override UUID detection" => "Tühista UUID tuvastus", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti kasutatakse LDAP kasutajate ja gruppide kindlaks tuvastamiseks. Samuti tekitatakse sisemine kasutajanimi UUID alusel, kui pole määratud teisiti. Sa saad tühistada selle seadistuse ning määrata atribuudi omal valikul. Pead veenduma, et valitud atribuut toimib nii kasutajate kui gruppide puhul ning on unikaalne. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi.", -"UUID Attribute:" => "UUID atribuut:", +"UUID Attribute for Users:" => "UUID atribuut kasutajatele:", +"UUID Attribute for Groups:" => "UUID atribuut gruppidele:", "Username-LDAP User Mapping" => "LDAP-Kasutajatunnus Kasutaja Vastendus", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, peab iga LDAP kasutaja omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutajanimi vastendatakse LDAP kasutaja UUID-iks. Lisaks puhverdatakse DN vähendamaks LDAP päringuid, kuid seda ei kasutata tuvastamisel. ownCloud suudab tuvastada ka DN muutumise. ownCloud sisemist kasutajatunnust kasutatakse üle kogu ownCloudi. Eemaldates vastenduse tekivad kõikjal andmejäägid. Vastenduste eemaldamine ei ole konfiguratsiooni tundlik, see mõjutab kõiki LDAP seadistusi! Ära kunagi eemalda vastendusi produktsioonis! Seda võid teha ainult testis või katsetuste masinas.", "Clear Username-LDAP User Mapping" => "Puhasta LDAP-Kasutajatunnus Kasutaja Vastendus", diff --git a/apps/user_ldap/l10n/fa.php b/apps/user_ldap/l10n/fa.php index c4db39521d..89bbe5170b 100644 --- a/apps/user_ldap/l10n/fa.php +++ b/apps/user_ldap/l10n/fa.php @@ -57,7 +57,6 @@ $TRANSLATIONS = array( "Internal Username" => "نام کاربری داخلی", "Internal Username Attribute:" => "ویژگی نام کاربری داخلی:", "Override UUID detection" => "نادیده گرفتن تشخیص UUID ", -"UUID Attribute:" => "صفت UUID:", "Username-LDAP User Mapping" => "نام کاربری - نگاشت کاربر LDAP ", "Clear Username-LDAP User Mapping" => "پاک کردن نام کاربری- LDAP نگاشت کاربر ", "Clear Groupname-LDAP Group Mapping" => "پاک کردن نام گروه -LDAP گروه نقشه برداری", diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 8b6027b81e..e33558a9d2 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -76,7 +76,8 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Nom d'utilisateur interne:", "Override UUID detection" => "Surcharger la détection d'UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Par défaut, l'attribut UUID est automatiquement détecté. Cet attribut est utilisé pour identifier les utilisateurs et groupes de façon fiable. Un nom d'utilisateur interne basé sur l'UUID sera automatiquement créé, sauf s'il est spécifié autrement ci-dessus. Vous pouvez modifier ce comportement et définir l'attribut de votre choix. Vous devez alors vous assurer que l'attribut de votre choix peut être récupéré pour les utilisateurs ainsi que pour les groupes et qu'il soit unique. Laisser à blanc pour le comportement par défaut. Les modifications seront effectives uniquement pour les nouveaux (ajoutés) utilisateurs et groupes LDAP.", -"UUID Attribute:" => "Attribut UUID :", +"UUID Attribute for Users:" => "Attribut UUID pour les utilisateurs :", +"UUID Attribute for Groups:" => "Attribut UUID pour les groupes :", "Username-LDAP User Mapping" => "Association Nom d'utilisateur-Utilisateur LDAP", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Les noms d'utilisateurs sont utilisés pour le stockage et l'assignation de (meta) données. Pour identifier et reconnaitre précisément les utilisateurs, chaque utilisateur LDAP aura un nom interne spécifique. Cela requiert l'association d'un nom d'utilisateur ownCloud à un nom d'utilisateur LDAP. Le nom d'utilisateur créé est associé à l'attribut UUID de l'utilisateur LDAP. Par ailleurs, le DN est mémorisé en cache pour limiter les interactions LDAP mais il n'est pas utilisé pour l'identification. Si le DN est modifié, ces modifications seront retrouvées. Seul le nom interne à ownCloud est utilisé au sein du produit. Supprimer les associations créera des orphelins et l'action affectera toutes les configurations LDAP. NE JAMAIS SUPPRIMER LES ASSOCIATIONS EN ENVIRONNEMENT DE PRODUCTION, mais uniquement sur des environnements de tests et d'expérimentation.", "Clear Username-LDAP User Mapping" => "Supprimer l'association utilisateur interne-utilisateur LDAP", diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index 911e481ca7..0b70984c1a 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -76,7 +76,8 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atributo do nome de usuario interno:", "Override UUID detection" => "Ignorar a detección do UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "De xeito predeterminado, o atributo UUID é detectado automaticamente. O atributo UUID utilizase para identificar, sen dúbida, aos usuarios e grupos LDAP. Ademais, crearase o usuario interno baseado no UUID, se non se especifica anteriormente o contrario. Pode anular a configuración e pasar un atributo da súa escolla. Vostede debe asegurarse de que o atributo da súa escolla pode ser recuperado polos usuarios e grupos e de que é único. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP.", -"UUID Attribute:" => "Atributo do UUID:", +"UUID Attribute for Users:" => "Atributo do UUID para usuarios:", +"UUID Attribute for Groups:" => "Atributo do UUID para grupos:", "Username-LDAP User Mapping" => "Asignación do usuario ao «nome de usuario LDAP»", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Os nomes de usuario empreganse para almacenar e asignar (meta) datos. Coa fin de identificar con precisión e recoñecer aos usuarios, cada usuario LDAP terá un nome de usuario interno. Isto require unha asignación de ownCloud nome de usuario a usuario LDAP. O nome de usuario creado asignase ao UUID do usuario LDAP. Ademais o DN almacenase na caché, para así reducir a interacción do LDAP, mais non se utiliza para a identificación. Se o DN cambia, os cambios poden ser atopados polo ownCloud. O nome interno no ownCloud utilizase en todo o ownCloud. A limpeza das asignacións deixará rastros en todas partes. A limpeza das asignacións non é sensíbel á configuración, afecta a todas as configuracións de LDAP! Non limpar nunca as asignacións nun entorno de produción. Limpar as asignacións só en fases de proba ou experimentais.", "Clear Username-LDAP User Mapping" => "Limpar a asignación do usuario ao «nome de usuario LDAP»", diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index b43dcbc2c8..84f8ca948e 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -75,7 +75,6 @@ $TRANSLATIONS = array( "By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "Alapértelmezetten a belső felhasználónév az UUID tulajdonságból jön létre. Ez biztosítja a felhasználónév egyediségét és hogy a nem kell konvertálni a karaktereket benne. A belső felhasználónévnél a megkötés az, hogy csak a következő karakterek engdélyezettek benne: [ a-zA-Z0-9_.@- ]. Ezeken a karaktereken kivül minden karakter le lesz cserélve az adott karakter ASCII kódtáblában használható párjára vagy ha ilyen nincs akkor egyszerűen ki lesz hagyva. Ha így mégis ütköznének a nevek akkor hozzá lesz füzve egy folyamatosan növekvő számláló rész. A belső felhasználónevet lehet használni a felhasználó azonosítására a programon belül. Illetve ez lesz az alapáértelmezett neve a felhasználó kezdő könyvtárának az ownCloud-ban. Illetve...............................", "Internal Username Attribute:" => "A belső felhasználónév attribútuma:", "Override UUID detection" => "Az UUID-felismerés felülbírálása", -"UUID Attribute:" => "UUID attribútum:", "Username-LDAP User Mapping" => "Felhasználó - LDAP felhasználó hozzárendelés", "Clear Username-LDAP User Mapping" => "A felhasználó - LDAP felhasználó hozzárendelés törlése", "Clear Groupname-LDAP Group Mapping" => "A csoport - LDAP csoport hozzárendelés törlése", diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index 4b47846f22..914cc3d32a 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Attributo nome utente interno:", "Override UUID detection" => "Ignora rilevamento UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "In modo predefinito, l'attributo UUID viene rilevato automaticamente. L'attributo UUID è utilizzato per identificare senza alcun dubbio gli utenti e i gruppi LDAP. Inoltre, il nome utente interno sarà creato sulla base dell'UUID, se non è specificato in precedenza. Puoi ignorare l'impostazione e fornire un attributo di tua scelta. Assicurati che l'attributo scelto possa essere ottenuto sia per gli utenti che per i gruppi e che sia univoco. Lascialo vuoto per ottenere il comportamento predefinito. Le modifiche avranno effetto solo sui nuovi utenti e gruppi LDAP associati (aggiunti).", -"UUID Attribute:" => "Attributo UUID:", "Username-LDAP User Mapping" => "Associazione Nome utente-Utente LDAP", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "I nomi utente sono utilizzati per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate. Il nome utente interno è utilizzato dappertutto. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà esclusivamente la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione, ma solo in una fase sperimentale o di test.", "Clear Username-LDAP User Mapping" => "Cancella associazione Nome utente-Utente LDAP", diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index e9ef2165bb..a9b5c99e6e 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -76,7 +76,8 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "内部ユーザ名属性:", "Override UUID detection" => "UUID検出を再定義する", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。", -"UUID Attribute:" => "UUID属性:", +"UUID Attribute for Users:" => "ユーザの UUID 属性:", +"UUID Attribute for Groups:" => "グループの UUID 属性:", "Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピング", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。", "Clear Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピングをクリアする", diff --git a/apps/user_ldap/l10n/lt_LT.php b/apps/user_ldap/l10n/lt_LT.php index f052201682..05edf75e8b 100644 --- a/apps/user_ldap/l10n/lt_LT.php +++ b/apps/user_ldap/l10n/lt_LT.php @@ -47,7 +47,6 @@ $TRANSLATIONS = array( "Internal Username" => "Vidinis naudotojo vardas", "Internal Username Attribute:" => "Vidinis naudotojo vardo atributas:", "Override UUID detection" => "Perrašyti UUID aptikimą", -"UUID Attribute:" => "UUID atributas:", "Username-LDAP User Mapping" => "Naudotojo vardo - LDAP naudotojo sąsaja", "Clear Username-LDAP User Mapping" => "Išvalyti naudotojo vardo - LDAP naudotojo sąsają", "Clear Groupname-LDAP Group Mapping" => "Išvalyti grupės pavadinimo - LDAP naudotojo sąsają", diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index b56dcf1579..05e3b5f342 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -76,7 +76,8 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Interne gebruikersnaam attribuut:", "Override UUID detection" => "Negeren UUID detectie", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standaard herkent ownCloud het UUID-attribuut automatisch. Het UUID attribuut wordt gebruikt om LDAP-gebruikers en -groepen uniek te identificeren. Ook zal de interne gebruikersnaam worden aangemaakt op basis van het UUID, tenzij deze hierboven anders is aangegeven. U kunt de instelling overschrijven en zelf een waarde voor het attribuut opgeven. U moet ervoor zorgen dat het ingestelde attribuut kan worden opgehaald voor zowel gebruikers als groepen en dat het uniek is. Laat het leeg voor standaard gedrag. Veranderingen worden alleen doorgevoerd op nieuw gekoppelde (toegevoegde) LDAP-gebruikers en-groepen.", -"UUID Attribute:" => "UUID Attribuut:", +"UUID Attribute for Users:" => "UUID attribuut voor gebruikers:", +"UUID Attribute for Groups:" => "UUID attribuut voor groepen:", "Username-LDAP User Mapping" => "Gebruikersnaam-LDAP gebruikers vertaling", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud maakt gebruik van gebruikersnamen om (meta) data op te slaan en toe te wijzen. Om gebruikers uniek te identificeren, krijgt elke LDAP-gebruiker ook een interne gebruikersnaam. Dit vereist een koppeling van de ownCloud gebruikersnaam aan een ​​LDAP-gebruiker. De gecreëerde gebruikersnaam is gekoppeld aan de UUID van de LDAP-gebruiker. Aanvullend wordt ook de 'DN' gecached om het aantal LDAP-interacties te verminderen, maar dit wordt niet gebruikt voor identificatie. Als de DN verandert, zullen de veranderingen worden gevonden. De interne naam wordt overal gebruikt. Het wissen van de koppeling zal overal resten achterlaten. Het wissen van koppelingen is niet configuratiegevoelig, maar het raakt wel alle LDAP instellingen! Zorg ervoor dat deze koppelingen nooit in een productieomgeving gewist worden. Maak ze alleen leeg in een test- of ontwikkelomgeving.", "Clear Username-LDAP User Mapping" => "Leegmaken Gebruikersnaam-LDAP gebruikers vertaling", diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index 7801f73dc1..7e11e6cfc7 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Internal Username" => "Wewnętrzna nazwa użytkownika", "Internal Username Attribute:" => "Wewnętrzny atrybut nazwy uzżytkownika:", "Override UUID detection" => "Zastąp wykrywanie UUID", -"UUID Attribute:" => "Atrybuty UUID:", "Username-LDAP User Mapping" => "Mapowanie użytkownika LDAP", "Clear Username-LDAP User Mapping" => "Czyść Mapowanie użytkownika LDAP", "Clear Groupname-LDAP Group Mapping" => "Czyść Mapowanie nazwy grupy LDAP", diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php index 9469146d35..0ff145f0a9 100644 --- a/apps/user_ldap/l10n/pt_BR.php +++ b/apps/user_ldap/l10n/pt_BR.php @@ -76,7 +76,8 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atributo Interno de Nome de Usuário:", "Override UUID detection" => "Substituir detecção UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por padrão, o atributo UUID é detectado automaticamente. O atributo UUID é usado para identificar, sem dúvidas, os usuários e grupos LDAP. Além disso, o nome de usuário interno será criado com base no UUID, se não especificado acima. Você pode substituir a configuração e passar um atributo de sua escolha. Você deve certificar-se de que o atributo de sua escolha pode ser lido tanto para usuários como para grupos, e que seja único. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários e grupos LDAP recém mapeados (adicionados).", -"UUID Attribute:" => "Atributo UUID:", +"UUID Attribute for Users:" => "UUID Atributos para Usuários:", +"UUID Attribute for Groups:" => "UUID Atributos para Grupos:", "Username-LDAP User Mapping" => "Usuário-LDAP Mapeamento de Usuário", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Nomes de usuários sãi usados para armazenar e atribuir (meta) dados. A fim de identificar com precisão e reconhecer usuários, cada usuário LDAP terá um nome de usuário interno. Isso requer um mapeamento nome de usuário para usuário LDAP. O nome de usuário criado é mapeado para o UUID do usuário LDAP. Adicionalmente, o DN fica em cache, assim como para reduzir a interação LDAP, mas não é utilizado para a identificação. Se o DN muda, as mudanças serão encontradas. O nome de usuário interno é utilizado em todo lugar. Limpar os mapeamentos não influencia a configuração. Limpar os mapeamentos deixará rastros em todo lugar. Limpar os mapeamentos não influencia a configuração, mas afeta as configurações LDAP! Somente limpe os mapeamentos em embiente de testes ou em estágio experimental.", "Clear Username-LDAP User Mapping" => "Limpar Mapeamento de Usuário Nome de Usuário-LDAP", diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index b88ad18f0f..338d68d1df 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Internal Username" => "Nome de utilizador interno", "Internal Username Attribute:" => "Atributo do nome de utilizador interno", "Override UUID detection" => "Passar a detecção do UUID", -"UUID Attribute:" => "Atributo UUID:", "Username-LDAP User Mapping" => "Mapeamento do utilizador LDAP", "Clear Username-LDAP User Mapping" => "Limpar mapeamento do utilizador-LDAP", "Clear Groupname-LDAP Group Mapping" => "Limpar o mapeamento do nome de grupo LDAP", diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index f1cf51dc51..a76afa1fe1 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Аттрибут для внутреннего имени:", "Override UUID detection" => "Переопределить нахождение UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "По-умолчанию, ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также, на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по-умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP.", -"UUID Attribute:" => "Аттрибут для UUID:", "Username-LDAP User Mapping" => "Соответствия Имя-Пользователь LDAP", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется доменное имя (DN) для уменьшения числа обращений к LDAP, однако оно не используется для идентификации. Если доменное имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP подключения! Ни в коем случае не рекомендуется сбрасывать привязки если система уже находится в эксплуатации, только на этапе тестирования.", "Clear Username-LDAP User Mapping" => "Очистить соответствия Имя-Пользователь LDAP", diff --git a/apps/user_ldap/l10n/sk_SK.php b/apps/user_ldap/l10n/sk_SK.php index df71a71e93..08b32e75f9 100644 --- a/apps/user_ldap/l10n/sk_SK.php +++ b/apps/user_ldap/l10n/sk_SK.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atribút interného používateľského mena:", "Override UUID detection" => "Prepísať UUID detekciu", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné použivateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri použivateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP.", -"UUID Attribute:" => "UUID atribút:", "Username-LDAP User Mapping" => "Mapovanie názvov LDAP používateľských mien", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Použivateľské mená sa používajú pre uchovávanie a priraďovanie (meta)dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapování vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze.", "Clear Username-LDAP User Mapping" => "Zrušiť mapovanie LDAP používateľských mien", diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index 703b643db5..de81b2c8de 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Internal Username" => "Interno uporabniško ime", "Internal Username Attribute:" => "Atribut Interno uporabniško ime", "Override UUID detection" => "Prezri zaznavo UUID", -"UUID Attribute:" => "Atribut UUID", "Username-LDAP User Mapping" => "Preslikava uporabniško ime - LDAP-uporabnik", "Clear Username-LDAP User Mapping" => "Izbriši preslikavo Uporabniškega imena in LDAP-uporabnika", "Clear Groupname-LDAP Group Mapping" => "Izbriši preslikavo Skupine in LDAP-skupine", diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 3288438c09..a5c060c717 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Internt Användarnamn Attribut:", "Override UUID detection" => "Åsidosätt UUID detektion", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper.", -"UUID Attribute:" => "UUID Attribut:", "Username-LDAP User Mapping" => "Användarnamn-LDAP User Mapping", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!", "Clear Username-LDAP User Mapping" => "Rensa Användarnamn-LDAP User Mapping", diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php index c30cb42150..e59b91a0e9 100644 --- a/apps/user_ldap/l10n/zh_CN.php +++ b/apps/user_ldap/l10n/zh_CN.php @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Internal Username" => "内部用户名", "Internal Username Attribute:" => "内部用户名属性:", "Override UUID detection" => "超越UUID检测", -"UUID Attribute:" => "UUID属性:", "Username-LDAP User Mapping" => "用户名-LDAP用户映射", "Clear Username-LDAP User Mapping" => "清除用户-LDAP用户映射", "Clear Groupname-LDAP Group Mapping" => "清除组用户-LDAP级映射", diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index fdf9c24612..f75a78bcb0 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -288,7 +288,7 @@ class Access extends LDAPUtility { } //second try: get the UUID and check if it is known. Then, update the DN and return the name. - $uuid = $this->getUUID($dn); + $uuid = $this->getUUID($dn, $isUser); if($uuid) { $query = \OCP\DB::prepare(' SELECT `owncloud_name` @@ -580,7 +580,9 @@ class Access extends LDAPUtility { '); //feed the DB - $insRows = $insert->execute(array($dn, $ocname, $this->getUUID($dn), $dn, $ocname)); + $insRows = $insert->execute(array($dn, $ocname, + $this->getUUID($dn, $isUser), $dn, + $ocname)); if(\OCP\DB::isError($insRows)) { return false; @@ -905,55 +907,67 @@ class Access extends LDAPUtility { * @param $force the detection should be run, even if it is not set to auto * @returns true on success, false otherwise */ - private function detectUuidAttribute($dn, $force = false) { - if(($this->connection->ldapUuidAttribute !== 'auto') && !$force) { + private function detectUuidAttribute($dn, $isUser = true, $force = false) { + if($isUser) { + $uuidAttr = 'ldapUuidUserAttribute'; + $uuidOverride = $this->connection->ldapExpertUUIDUserAttr; + } else { + $uuidAttr = 'ldapUuidGroupAttribute'; + $uuidOverride = $this->connection->ldapExpertUUIDGroupAttr; + } + + if(($this->connection->$uuidAttr !== 'auto') && !$force) { return true; } - $fixedAttribute = $this->connection->ldapExpertUUIDAttr; - if(!empty($fixedAttribute)) { - $this->connection->ldapUuidAttribute = $fixedAttribute; + if(!empty($uuidOverride) && !$force) { + $this->connection->$uuidAttr = $uuidOverride; return true; } - //for now, supported (known) attributes are entryUUID, nsuniqueid, objectGUID + //for now, supported attributes are entryUUID, nsuniqueid, objectGUID $testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid'); foreach($testAttributes as $attribute) { - \OCP\Util::writeLog('user_ldap', 'Testing '.$attribute.' as UUID attr', \OCP\Util::DEBUG); - $value = $this->readAttribute($dn, $attribute); if(is_array($value) && isset($value[0]) && !empty($value[0])) { - \OCP\Util::writeLog('user_ldap', 'Setting '.$attribute.' as UUID attr', \OCP\Util::DEBUG); - $this->connection->ldapUuidAttribute = $attribute; + \OCP\Util::writeLog('user_ldap', + 'Setting '.$attribute.' as '.$uuidAttr, + \OCP\Util::DEBUG); + $this->connection->$uuidAttr = $attribute; return true; } - \OCP\Util::writeLog('user_ldap', - 'The looked for uuid attr is not '.$attribute.', result was '.print_r($value, true), - \OCP\Util::DEBUG); } + \OCP\Util::writeLog('user_ldap', + 'Could not autodetect the UUID attribute', + \OCP\Util::ERROR); return false; } - public function getUUID($dn) { - if($this->detectUuidAttribute($dn)) { - \OCP\Util::writeLog('user_ldap', - 'UUID Checking \ UUID for '.$dn.' using '. $this->connection->ldapUuidAttribute, - \OCP\Util::DEBUG); - $uuid = $this->readAttribute($dn, $this->connection->ldapUuidAttribute); - if(!is_array($uuid) && $this->connection->ldapOverrideUuidAttribute) { - $this->detectUuidAttribute($dn, true); - $uuid = $this->readAttribute($dn, $this->connection->ldapUuidAttribute); + public function getUUID($dn, $isUser = true) { + if($isUser) { + $uuidAttr = 'ldapUuidUserAttribute'; + $uuidOverride = $this->connection->ldapExpertUUIDUserAttr; + } else { + $uuidAttr = 'ldapUuidGroupAttribute'; + $uuidOverride = $this->connection->ldapExpertUUIDGroupAttr; + } + + $uuid = false; + if($this->detectUuidAttribute($dn, $isUser)) { + $uuid = $this->readAttribute($dn, $this->connection->$uuidAttr); + if( !is_array($uuid) + && !empty($uuidOverride) + && $this->detectUuidAttribute($dn, $isUser, true)) { + $uuid = $this->readAttribute($dn, + $this->connection->$uuidAttr); } if(is_array($uuid) && isset($uuid[0]) && !empty($uuid[0])) { $uuid = $uuid[0]; - } else { - $uuid = false; } - } else { - $uuid = false; } + return $uuid; } diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index a53022c27b..93efdb4c9c 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -60,7 +60,8 @@ class Connection extends LDAPUtility { 'ldapQuotaDefault' => null, 'ldapEmailAttribute' => null, 'ldapCacheTTL' => null, - 'ldapUuidAttribute' => 'auto', + 'ldapUuidUserAttribute' => 'auto', + 'ldapUuidGroupAttribute' => 'auto', 'ldapOverrideUuidAttribute' => null, 'ldapOverrideMainServer' => false, 'ldapConfigurationActive' => false, @@ -69,7 +70,8 @@ class Connection extends LDAPUtility { 'homeFolderNamingRule' => null, 'hasPagedResultSupport' => false, 'ldapExpertUsernameAttr' => null, - 'ldapExpertUUIDAttr' => null, + 'ldapExpertUUIDUserAttr' => null, + 'ldapExpertUUIDGroupAttr' => null, ); /** @@ -120,11 +122,11 @@ class Connection extends LDAPUtility { public function __set($name, $value) { $changed = false; //only few options are writable - if($name === 'ldapUuidAttribute') { - \OCP\Util::writeLog('user_ldap', 'Set config ldapUuidAttribute to '.$value, \OCP\Util::DEBUG); + if($name === 'ldapUuidUserAttribute' || $name === 'ldapUuidGroupAttribute') { + \OCP\Util::writeLog('user_ldap', 'Set config '.$name.' to '.$value, \OCP\Util::DEBUG); $this->config[$name] = $value; if(!empty($this->configID)) { - \OCP\Config::setAppValue($this->configID, $this->configPrefix.'ldap_uuid_attribute', $value); + \OCP\Config::setAppValue($this->configID, $this->configPrefix.$name, $value); } $changed = true; } @@ -285,8 +287,10 @@ class Connection extends LDAPUtility { $this->config['ldapIgnoreNamingRules'] = \OCP\Config::getSystemValue('ldapIgnoreNamingRules', false); $this->config['ldapCacheTTL'] = $this->$v('ldap_cache_ttl'); - $this->config['ldapUuidAttribute'] - = $this->$v('ldap_uuid_attribute'); + $this->config['ldapUuidUserAttribute'] + = $this->$v('ldap_uuid_user_attribute'); + $this->config['ldapUuidGroupAttribute'] + = $this->$v('ldap_uuid_group_attribute'); $this->config['ldapOverrideUuidAttribute'] = $this->$v('ldap_override_uuid_attribute'); $this->config['homeFolderNamingRule'] @@ -299,8 +303,10 @@ class Connection extends LDAPUtility { = preg_split('/\r\n|\r|\n/', $this->$v('ldap_attributes_for_group_search')); $this->config['ldapExpertUsernameAttr'] = $this->$v('ldap_expert_username_attr'); - $this->config['ldapExpertUUIDAttr'] - = $this->$v('ldap_expert_uuid_attr'); + $this->config['ldapExpertUUIDUserAttr'] + = $this->$v('ldap_expert_uuid_user_attr'); + $this->config['ldapExpertUUIDGroupAttr'] + = $this->$v('ldap_expert_uuid_group_attr'); $this->configured = $this->validateConfiguration(); } @@ -339,7 +345,8 @@ class Connection extends LDAPUtility { 'ldap_attributes_for_user_search' => 'ldapAttributesForUserSearch', 'ldap_attributes_for_group_search' => 'ldapAttributesForGroupSearch', 'ldap_expert_username_attr' => 'ldapExpertUsernameAttr', - 'ldap_expert_uuid_attr' => 'ldapExpertUUIDAttr', + 'ldap_expert_uuid_user_attr' => 'ldapExpertUUIDUserAttr', + 'ldap_expert_uuid_group_attr' => 'ldapExpertUUIDGroupAttr', ); return $array; } @@ -413,7 +420,8 @@ class Connection extends LDAPUtility { break; case 'ldapIgnoreNamingRules': case 'ldapOverrideUuidAttribute': - case 'ldapUuidAttribute': + case 'ldapUuidUserAttribute': + case 'ldapUuidGroupAttribute': case 'hasPagedResultSupport': continue 2; } @@ -476,13 +484,23 @@ class Connection extends LDAPUtility { } $uuidAttributes = array( 'auto', 'entryuuid', 'nsuniqueid', 'objectguid', 'guid'); - if(!in_array($this->config['ldapUuidAttribute'], $uuidAttributes) - && (!is_null($this->configID))) { - \OCP\Config::setAppValue($this->configID, $this->configPrefix.'ldap_uuid_attribute', 'auto'); - \OCP\Util::writeLog('user_ldap', - 'Illegal value for the UUID Attribute, reset to autodetect.', - \OCP\Util::INFO); + $uuidSettings = array( + 'ldapUuidUserAttribute' => 'ldapExpertUUIDUserAttr', + 'ldapUuidGroupAttribute' => 'ldapExpertUUIDGroupAttr'); + $cta = array_flip($this->getConfigTranslationArray()); + foreach($uuidSettings as $defaultKey => $overrideKey) { + if( !in_array($this->config[$defaultKey], $uuidAttributes) + && is_null($this->config[$overrideKey]) + && !is_null($this->configID)) { + \OCP\Config::setAppValue($this->configID, + $this->configPrefix.$cta[$defaultKey], + 'auto'); + \OCP\Util::writeLog('user_ldap', + 'Illegal value for'.$defaultKey.', reset to autodetect.', + \OCP\Util::DEBUG); + } } + if(empty($this->config['ldapBackupPort'])) { //force default $this->config['ldapBackupPort'] = $this->config['ldapPort']; @@ -502,8 +520,6 @@ class Connection extends LDAPUtility { \OCP\Util::INFO); } - - //second step: critical checks. If left empty or filled wrong, set as unconfigured and give a warning. $configurationOK = true; if(empty($this->config['ldapHost'])) { @@ -552,8 +568,11 @@ class Connection extends LDAPUtility { $configurationOK = false; } - if(!empty($this->config['ldapExpertUUIDAttr'])) { - $this->config['ldapUuidAttribute'] = $this->config['ldapExpertUUIDAttr']; + if(!empty($this->config['ldapExpertUUIDUserAttr'])) { + $this->config['ldapUuidUserAttribute'] = $this->config['ldapExpertUUIDUserAttr']; + } + if(!empty($this->config['ldapExpertUUIDGroupAttr'])) { + $this->config['ldapUuidGroupAttribute'] = $this->config['ldapExpertUUIDGroupAttr']; } return $configurationOK; @@ -587,15 +606,17 @@ class Connection extends LDAPUtility { 'ldap_email_attr' => '', 'ldap_group_member_assoc_attribute' => 'uniqueMember', 'ldap_cache_ttl' => 600, - 'ldap_uuid_attribute' => 'auto', + 'ldap_uuid_user_attribute' => 'auto', + 'ldap_uuid_group_attribute' => 'auto', 'ldap_override_uuid_attribute' => 0, 'home_folder_naming_rule' => '', 'ldap_turn_off_cert_check' => 0, 'ldap_configuration_active' => 1, 'ldap_attributes_for_user_search' => '', 'ldap_attributes_for_group_search' => '', - 'ldap_expert_username_attr' => '', - 'ldap_expert_uuid_attr' => '', + 'ldap_expert_username_attr' => '', + 'ldap_expert_uuid_user_attr' => '', + 'ldap_expert_uuid_group_attr' => '', ); } diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index b7070f2318..f20bc19118 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -25,18 +25,6 @@ OC_Util::checkAdminUser(); -$params = array('ldap_host', 'ldap_port', 'ldap_backup_host', - 'ldap_backup_port', 'ldap_override_main_server', 'ldap_dn', - 'ldap_agent_password', 'ldap_base', 'ldap_base_users', - 'ldap_base_groups', 'ldap_userlist_filter', - 'ldap_login_filter', 'ldap_group_filter', 'ldap_display_name', - 'ldap_group_display_name', 'ldap_tls', - 'ldap_turn_off_cert_check', 'ldap_nocase', 'ldap_quota_def', - 'ldap_quota_attr', 'ldap_email_attr', - 'ldap_group_member_assoc_attribute', 'ldap_cache_ttl', - 'home_folder_naming_rule' - ); - OCP\Util::addscript('user_ldap', 'settings'); OCP\Util::addstyle('user_ldap', 'settings'); diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index e214d57fb1..319dc38a62 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -100,7 +100,8 @@

t('Override UUID detection'));?>

t('By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups.'));?>

-

+

+

t('Username-LDAP User Mapping'));?>

t('Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage.'));?>


diff --git a/apps/user_webdavauth/l10n/mk.php b/apps/user_webdavauth/l10n/mk.php index 245a510134..6ebe36423b 100644 --- a/apps/user_webdavauth/l10n/mk.php +++ b/apps/user_webdavauth/l10n/mk.php @@ -1,3 +1,5 @@ - "URL: http://" + "Адреса:" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/user_webdavauth/l10n/tr.php b/apps/user_webdavauth/l10n/tr.php index 907fb88b86..0ca8b0ad55 100644 --- a/apps/user_webdavauth/l10n/tr.php +++ b/apps/user_webdavauth/l10n/tr.php @@ -1,5 +1,7 @@ "WebDAV Kimlik doğrulaması" +"WebDAV Authentication" => "WebDAV Kimlik doğrulaması", +"Address: " => "Adres:", +"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Kullanıcı kimlik bilgileri bu adrese gönderilecek. Bu eklenti yanıtı kontrol edecek ve 401 ile 403 HTTP durum kodlarını geçersiz kimlik bilgileri olarak, diğer yanıtları ise doğru kimlik bilgileri olarak algılayacaktır." ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/config/config.sample.php b/config/config.sample.php index 29085af471..9a24c9364e 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -141,10 +141,16 @@ $CONFIG = array( /* date format to be used while writing to the owncloud logfile */ 'logdateformat' => 'F d, Y H:i:s', +/* timezone used while writing to the owncloud logfile (default: UTC) */ +'logtimezone' => 'Europe/Berlin', + /* Append all database queries and parameters to the log file. (watch out, this option can increase the size of your log file)*/ "log_query" => false, +/* Enable or disable the logging of IP addresses in case of webform auth failures */ +"log_authfailip" => false, + /* * Configure the size in bytes log rotation should happen, 0 or false disables the rotation. * This rotates the current owncloud logfile to a new name, this way the total log usage diff --git a/core/ajax/share.php b/core/ajax/share.php index 1166ea3198..dbad8f2e97 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -293,7 +293,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo while ($count < 15 && count($users) == $limit) { $limit = 15 - $count; if ($sharePolicy == 'groups_only') { - $users = OC_Group::DisplayNamesInGroups($groups, $_GET['search'], $limit, $offset); + $users = OC_Group::DisplayNamesInGroups($usergroups, $_GET['search'], $limit, $offset); } else { $users = OC_User::getDisplayNames($_GET['search'], $limit, $offset); } diff --git a/core/ajax/vcategories/add.php b/core/ajax/vcategories/add.php deleted file mode 100644 index 16a1461be0..0000000000 --- a/core/ajax/vcategories/add.php +++ /dev/null @@ -1,42 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ -function bailOut($msg) { - OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core', 'ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG); - exit(); -} -function debug($msg) { - OC_Log::write('core', 'ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG); -} - -OCP\JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - -$l = OC_L10N::get('core'); - -$category = isset($_POST['category']) ? strip_tags($_POST['category']) : null; -$type = isset($_POST['type']) ? $_POST['type'] : null; - -if(is_null($type)) { - bailOut($l->t('Category type not provided.')); -} - -if(is_null($category)) { - bailOut($l->t('No category to add?')); -} - -debug(print_r($category, true)); - -$categories = new OC_VCategories($type); -if($categories->hasCategory($category)) { - bailOut($l->t('This category already exists: %s', array($category))); -} else { - $categories->add($category, true); -} - -OC_JSON::success(array('data' => array('categories'=>$categories->categories()))); diff --git a/core/ajax/vcategories/addToFavorites.php b/core/ajax/vcategories/addToFavorites.php deleted file mode 100644 index 52f62d5fc6..0000000000 --- a/core/ajax/vcategories/addToFavorites.php +++ /dev/null @@ -1,38 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ -function bailOut($msg) { - OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core', 'ajax/vcategories/addToFavorites.php: '.$msg, OC_Log::DEBUG); - exit(); -} -function debug($msg) { - OC_Log::write('core', 'ajax/vcategories/addToFavorites.php: '.$msg, OC_Log::DEBUG); -} - -OCP\JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - -$l = OC_L10N::get('core'); - -$id = isset($_POST['id']) ? strip_tags($_POST['id']) : null; -$type = isset($_POST['type']) ? $_POST['type'] : null; - -if(is_null($type)) { - bailOut($l->t('Object type not provided.')); -} - -if(is_null($id)) { - bailOut($l->t('%s ID not provided.', $type)); -} - -$categories = new OC_VCategories($type); -if(!$categories->addToFavorites($id, $type)) { - bailOut($l->t('Error adding %s to favorites.', $id)); -} - -OC_JSON::success(); diff --git a/core/ajax/vcategories/delete.php b/core/ajax/vcategories/delete.php deleted file mode 100644 index dfec378574..0000000000 --- a/core/ajax/vcategories/delete.php +++ /dev/null @@ -1,40 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - -function bailOut($msg) { - OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core', 'ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG); - exit(); -} -function debug($msg) { - OC_Log::write('core', 'ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG); -} - -OCP\JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - -$l = OC_L10N::get('core'); - -$type = isset($_POST['type']) ? $_POST['type'] : null; -$categories = isset($_POST['categories']) ? $_POST['categories'] : null; - -if(is_null($type)) { - bailOut($l->t('Object type not provided.')); -} - -debug('The application using category type "' - . $type - . '" uses the default file for deletion. OC_VObjects will not be updated.'); - -if(is_null($categories)) { - bailOut($l->t('No categories selected for deletion.')); -} - -$vcategories = new OC_VCategories($type); -$vcategories->delete($categories); -OC_JSON::success(array('data' => array('categories'=>$vcategories->categories()))); diff --git a/core/ajax/vcategories/edit.php b/core/ajax/vcategories/edit.php deleted file mode 100644 index 0387b17576..0000000000 --- a/core/ajax/vcategories/edit.php +++ /dev/null @@ -1,34 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - -function bailOut($msg) { - OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core', 'ajax/vcategories/edit.php: '.$msg, OC_Log::DEBUG); - exit(); -} -function debug($msg) { - OC_Log::write('core', 'ajax/vcategories/edit.php: '.$msg, OC_Log::DEBUG); -} - -OC_JSON::checkLoggedIn(); - -$l = OC_L10N::get('core'); - -$type = isset($_GET['type']) ? $_GET['type'] : null; - -if(is_null($type)) { - bailOut($l->t('Category type not provided.')); -} - -$tmpl = new OCP\Template("core", "edit_categories_dialog"); - -$vcategories = new OC_VCategories($type); -$categories = $vcategories->categories(); -debug(print_r($categories, true)); -$tmpl->assign('categories', $categories); -$tmpl->printpage(); diff --git a/core/ajax/vcategories/favorites.php b/core/ajax/vcategories/favorites.php deleted file mode 100644 index db4244d601..0000000000 --- a/core/ajax/vcategories/favorites.php +++ /dev/null @@ -1,30 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ -function bailOut($msg) { - OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core', 'ajax/vcategories/addToFavorites.php: '.$msg, OC_Log::DEBUG); - exit(); -} -function debug($msg) { - OC_Log::write('core', 'ajax/vcategories/addToFavorites.php: '.$msg, OC_Log::DEBUG); -} - -OCP\JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - -$type = isset($_GET['type']) ? $_GET['type'] : null; - -if(is_null($type)) { - $l = OC_L10N::get('core'); - bailOut($l->t('Object type not provided.')); -} - -$categories = new OC_VCategories($type); -$ids = $categories->getFavorites($type); - -OC_JSON::success(array('ids' => $ids)); diff --git a/core/ajax/vcategories/removeFromFavorites.php b/core/ajax/vcategories/removeFromFavorites.php deleted file mode 100644 index 78a528caa8..0000000000 --- a/core/ajax/vcategories/removeFromFavorites.php +++ /dev/null @@ -1,38 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ -function bailOut($msg) { - OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core', 'ajax/vcategories/removeFromFavorites.php: '.$msg, OC_Log::DEBUG); - exit(); -} -function debug($msg) { - OC_Log::write('core', 'ajax/vcategories/removeFromFavorites.php: '.$msg, OC_Log::DEBUG); -} - -OCP\JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - -$l = OC_L10N::get('core'); - -$id = isset($_POST['id']) ? strip_tags($_POST['id']) : null; -$type = isset($_POST['type']) ? $_POST['type'] : null; - -if(is_null($type)) { - bailOut($l->t('Object type not provided.')); -} - -if(is_null($id)) { - 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.', array($id))); -} - -OC_JSON::success(); diff --git a/core/css/apps.css b/core/css/apps.css index 49fb189f38..f68f53d699 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -104,8 +104,8 @@ padding-left: 32px; } #app-navigation > .with-icon ul li > a { - padding-left: 48px; - background-position: 24px center; + padding-left: 68px; + background-position: 44px center; } #app-navigation .open { diff --git a/core/css/jquery.ocdialog.css b/core/css/jquery.ocdialog.css index aa72eaf847..236968e324 100644 --- a/core/css/jquery.ocdialog.css +++ b/core/css/jquery.ocdialog.css @@ -29,6 +29,7 @@ bottom: 0; display: block; margin-top: 10px; + width: 100%; } .oc-dialog-close { diff --git a/core/css/styles.css b/core/css/styles.css index 6406bcd7e6..b919660779 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -237,6 +237,7 @@ input[type="submit"].enabled { #body-login p.info, #body-login form fieldset legend, #body-login #datadirContent label, +#body-login form fieldset .warning-info, #body-login form input[type="checkbox"]+label { text-align: center; color: #ccc; @@ -253,6 +254,8 @@ input[type="submit"].enabled { } #body-login p.info a { font-weight: bold; + padding: 13px; + margin: -13px; } #body-login #submit.login { margin-right:7px; } /* quick fix for log in button not being aligned with input fields, should be properly fixed by input field width later */ @@ -431,7 +434,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } padding: 10px; color: #d2322d; background-color: rgba(0,0,0,.3); - text-align: center; + text-align: left; border-radius: 3px; cursor: default; } @@ -466,7 +469,6 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } } #body-login .warning { margin: 0 7px 5px; - font-weight: bold; } #body-login .warning legend { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; @@ -746,20 +748,27 @@ a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;paddin span.ui-icon {float: left; margin: 3px 7px 30px 0;} .loading { background: url('../img/loading.gif') no-repeat center; cursor: wait; } +.loading-small { background: url('../img/loading-small.gif') no-repeat center; cursor: wait; } .move2trash { /* decrease spinner size */ width: 16px; height: 16px; } - -/* ---- CATEGORIES ---- */ -#categoryform .scrollarea { position:absolute; left:10px; top:10px; right:10px; bottom:50px; overflow:auto; border:1px solid #ddd; background:#f8f8f8; } -#categoryform .bottombuttons { position:absolute; bottom:10px;} -#categoryform .bottombuttons * { float:left;} -/*#categorylist { border:1px solid #ddd;}*/ -#categorylist li { background:#f8f8f8; padding:.3em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms; } -#categorylist li:hover, #categorylist li:active { background:#eee; } -#category_addinput { width:10em; } +/* ---- TAGS ---- */ +#tagsdialog .content { + width: 100%; height: 280px; +} +#tagsdialog .scrollarea { + overflow:auto; border:1px solid #ddd; + width: 100%; height: 240px; +} +#tagsdialog .bottombuttons { + width: 100%; height: 30px; +} +#tagsdialog .bottombuttons * { float:left;} +#tagsdialog .taglist li { background:#f8f8f8; padding:.3em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms; } +#tagsdialog .taglist li:hover, #tagsdialog .taglist li:active { background:#eee; } +#tagsdialog .addinput { width: 90%; clear: both; } /* ---- APP SETTINGS ---- */ .popup { background-color:white; border-radius:10px 10px 10px 10px; box-shadow:0 0 20px #888; color:#333; padding:10px; position:fixed !important; z-index:100; } diff --git a/core/img/actions/confirm.png b/core/img/actions/confirm.png new file mode 100644 index 0000000000..3021d4c27d Binary files /dev/null and b/core/img/actions/confirm.png differ diff --git a/core/img/actions/confirm.svg b/core/img/actions/confirm.svg new file mode 100644 index 0000000000..6b69c1d6c4 --- /dev/null +++ b/core/img/actions/confirm.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/core/img/loading-small.gif b/core/img/loading-small.gif new file mode 100644 index 0000000000..5025f0bede Binary files /dev/null and b/core/img/loading-small.gif differ diff --git a/core/js/jquery-showpassword.js b/core/js/jquery-showpassword.js index e1737643b4..a4373ec82b 100644 --- a/core/js/jquery-showpassword.js +++ b/core/js/jquery-showpassword.js @@ -38,7 +38,11 @@ 'tabindex' : $element.attr('tabindex'), 'autocomplete' : 'off' }); - + + if($element.attr('placeholder') !== undefined) { + $clone.attr('placeholder', $element.attr('placeholder')); + } + return $clone; }; diff --git a/core/js/js.js b/core/js/js.js index b7f7ff1ac1..c17e3fa295 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -746,15 +746,7 @@ $(document).ready(function(){ }); var setShowPassword = function(input, label) { - input.showPassword().keyup(function(){ - if (input.val().length == 0) { - label.hide(); - } - else { - label.css("display", "inline").show(); - } - }); - label.hide(); + input.showPassword().keyup(); }; setShowPassword($('#adminpass'), $('label[for=show]')); setShowPassword($('#pass2'), $('label[for=personal-show]')); diff --git a/core/js/oc-vcategories.js b/core/js/oc-vcategories.js deleted file mode 100644 index c297a24680..0000000000 --- a/core/js/oc-vcategories.js +++ /dev/null @@ -1,216 +0,0 @@ -var OCCategories= { - category_favorites:'_$!!$_', - edit:function(type, cb) { - if(!type && !this.type) { - throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; - } - type = type ? type : this.type; - $('body').append('
'); - $('#category_dialog').load( - OC.filePath('core', 'ajax', 'vcategories/edit.php') + '?type=' + type, function(response) { - try { - var jsondata = jQuery.parseJSON(response); - if(response.status == 'error') { - OC.dialogs.alert(response.data.message, t('core', 'Error')); - return; - } - } catch(e) { - var setEnabled = function(d, enable) { - if(enable) { - d.css('cursor', 'default').find('input,button:not(#category_addbutton)') - .prop('disabled', false).css('cursor', 'default'); - } else { - d.css('cursor', 'wait').find('input,button:not(#category_addbutton)') - .prop('disabled', true).css('cursor', 'wait'); - } - }; - var dlg = $('#edit_categories_dialog').dialog({ - modal: true, - height: 350, minHeight:200, width: 250, minWidth: 200, - buttons: { - 'Close': function() { - $(this).dialog('close'); - }, - 'Delete':function() { - var categories = $('#categorylist').find('input:checkbox').serialize(); - setEnabled(dlg, false); - OCCategories.doDelete(categories, function() { - setEnabled(dlg, true); - }); - }, - 'Rescan':function() { - setEnabled(dlg, false); - OCCategories.rescan(function() { - setEnabled(dlg, true); - }); - } - }, - close : function(event, ui) { - $(this).dialog('destroy').remove(); - $('#category_dialog').remove(); - }, - open : function(event, ui) { - $('#category_addinput').on('input',function() { - if($(this).val().length > 0) { - $('#category_addbutton').removeAttr('disabled'); - } - }); - $('#categoryform').submit(function() { - OCCategories.add($('#category_addinput').val()); - $('#category_addinput').val(''); - $('#category_addbutton').attr('disabled', 'disabled'); - return false; - }); - $('#category_addbutton').on('click',function(e) { - e.preventDefault(); - if($('#category_addinput').val().length > 0) { - OCCategories.add($('#category_addinput').val()); - $('#category_addinput').val(''); - } - }); - } - }); - } - }); - }, - _processDeleteResult:function(jsondata) { - if(jsondata.status == 'success') { - OCCategories._update(jsondata.data.categories); - } else { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - }, - favorites:function(type, cb) { - if(!type && !this.type) { - throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; - } - type = type ? type : this.type; - $.getJSON(OC.filePath('core', 'ajax', 'categories/favorites.php'), {type: type},function(jsondata) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - if(jsondata.status === 'success') { - OCCategories._update(jsondata.data.categories); - } else { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - } - }); - }, - addToFavorites:function(id, type, cb) { - if(!type && !this.type) { - throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; - } - type = type ? type : this.type; - $.post(OC.filePath('core', 'ajax', 'vcategories/addToFavorites.php'), {id:id, type:type}, function(jsondata) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - if(jsondata.status !== 'success') { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - } - }); - }, - removeFromFavorites:function(id, type, cb) { - if(!type && !this.type) { - throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; - } - type = type ? type : this.type; - $.post(OC.filePath('core', 'ajax', 'vcategories/removeFromFavorites.php'), {id:id, type:type}, function(jsondata) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - if(jsondata.status !== 'success') { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - } - }); - }, - doDelete:function(categories, type, cb) { - if(!type && !this.type) { - throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; - } - type = type ? type : this.type; - if(categories == '' || categories == undefined) { - OC.dialogs.alert(t('core', 'No categories selected for deletion.'), t('core', 'Error')); - return false; - } - var self = this; - var q = categories + '&type=' + type; - if(this.app) { - q += '&app=' + this.app; - $.post(OC.filePath(this.app, 'ajax', 'categories/delete.php'), q, function(jsondata) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - self._processDeleteResult(jsondata); - } - }); - } else { - $.post(OC.filePath('core', 'ajax', 'vcategories/delete.php'), q, function(jsondata) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - self._processDeleteResult(jsondata); - } - }); - } - }, - add:function(category, type, cb) { - if(!type && !this.type) { - throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; - } - type = type ? type : this.type; - $.post(OC.filePath('core', 'ajax', 'vcategories/add.php'),{'category':category, 'type':type},function(jsondata) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - if(jsondata.status === 'success') { - OCCategories._update(jsondata.data.categories); - } else { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - } - }); - }, - rescan:function(app, cb) { - if(!app && !this.app) { - throw { name: 'MissingParameter', message: t('core', 'The app name is not specified.') }; - } - app = app ? app : this.app; - $.getJSON(OC.filePath(app, 'ajax', 'categories/rescan.php'),function(jsondata, status, xhr) { - if(typeof cb == 'function') { - cb(jsondata); - } else { - if(jsondata.status === 'success') { - OCCategories._update(jsondata.data.categories); - } else { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - } - }).error(function(xhr){ - if (xhr.status == 404) { - var errormessage = t('core', 'The required file {file} is not installed!', - {file: OC.filePath(app, 'ajax', 'categories/rescan.php')}, t('core', 'Error')); - if(typeof cb == 'function') { - cb({status:'error', data:{message:errormessage}}); - } else { - OC.dialogs.alert(errormessage, t('core', 'Error')); - } - } - }); - }, - _update:function(categories) { - var categorylist = $('#categorylist'); - categorylist.find('li').remove(); - for(var category in categories) { - var item = '
  • ' + categories[category] + '
  • '; - $(item).appendTo(categorylist); - } - if(typeof OCCategories.changed === 'function') { - OCCategories.changed(categories); - } - } -} - diff --git a/core/js/oc-vcategories.txt b/core/js/oc-vcategories.txt deleted file mode 100644 index 31216f80bd..0000000000 --- a/core/js/oc-vcategories.txt +++ /dev/null @@ -1,33 +0,0 @@ -Using OCCategories - -This 'class' is meant for any apps that uses OC_VObjects with the CATEGORIES field e.g. -Contacts and Calendar. It provides an editor UI for adding/deleting and rescanning categories -and basic ajax functions for adding and deleting. -To use the mass updating of OC_VObjects that /lib/vcategories.php provides, the app must implement -its own ajax functions in /apps/$(APP)/ajax/categories/rescan.php and /apps/$(APP)/ajax/categories/delete.php -See examples in /apps/contacts/ajax/categories and the inline docs in /lib/vcategories.php. - -In your app make sure you load the script and stylesheet: - -OC_Util::addScript('','oc-vcategories'); -OC_Util::addStyle('','oc-vcategories'); - -Set the app specific values in your javascript file. This is what I've used for the Contacts app: - - OCCategories.app = 'contacts'; - OCCategories.changed = Contacts.UI.Card.categoriesChanged; - -If OCCategories.changed is set that function will be called each time the categories have been changed -in the editor (add/delete/rescan) to allow the app to update the UI accordingly. The only argument to the function -is an array of the updated categories e.g.: - -OCCategories.changed = function(categories) { - for(var category in categories) { - console.log(categories[category]); - } -} - -To show the categories editor call: - - OCCategories.edit() - diff --git a/core/js/setup.js b/core/js/setup.js index 62f313fc50..0863be3588 100644 --- a/core/js/setup.js +++ b/core/js/setup.js @@ -9,8 +9,7 @@ $(document).ready(function() { }; $('#selectDbType').buttonset(); - $('#datadirContent').hide(250); - $('#databaseField').hide(250); + if($('#hasSQLite').val()){ $('#use_other_db').hide(); $('#use_oracle_db').hide(); @@ -23,12 +22,7 @@ $(document).ready(function() { $('#use_oracle_db').slideUp(250); }); - $('#mysql').click(function() { - $('#use_other_db').slideDown(250); - $('#use_oracle_db').slideUp(250); - }); - - $('#pgsql').click(function() { + $('#mysql,#pgsql,#mssql').click(function() { $('#use_other_db').slideDown(250); $('#use_oracle_db').slideUp(250); }); @@ -38,11 +32,6 @@ $(document).ready(function() { $('#use_oracle_db').show(250); }); - $('#mssql').click(function() { - $('#use_other_db').slideDown(250); - $('#use_oracle_db').slideUp(250); - }); - $('input[checked]').trigger('click'); $('#showAdvanced').click(function() { @@ -74,9 +63,17 @@ $(document).ready(function() { form.submit(); return false; }); - - if(!dbtypes.sqlite){ - $('#showAdvanced').click(); + + // Expand latest db settings if page was reloaded on error + var currentDbType = $('input[type="radio"]:checked').val(); + + if (currentDbType === undefined){ $('input[type="radio"]').first().click(); } + + if (currentDbType === 'sqlite' || (dbtypes.sqlite && currentDbType === undefined)){ + $('#datadirContent').hide(250); + $('#databaseField').hide(250); + } + }); diff --git a/core/js/tags.js b/core/js/tags.js new file mode 100644 index 0000000000..16dd3d4bf9 --- /dev/null +++ b/core/js/tags.js @@ -0,0 +1,353 @@ +OC.Tags= { + edit:function(type, cb) { + if(!type && !this.type) { + throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') }; + } + type = type ? type : this.type; + var self = this; + $.when(this._getTemplate()).then(function($tmpl) { + if(self.$dialog) { + self.$dialog.ocdialog('close'); + } + self.$dialog = $tmpl.octemplate({ + addText: t('core', 'Enter new') + }); + $('body').append(self.$dialog); + + self.$dialog.ready(function() { + self.$taglist = self.$dialog.find('.taglist'); + self.$taginput = self.$dialog.find('.addinput'); + self.$taglist.on('change', 'input:checkbox', function(event) { + self._handleChanges(self.$taglist, self.$taginput); + }); + self.$taginput.on('input', function(event) { + self._handleChanges(self.$taglist, self.$taginput); + }); + self.deleteButton = { + text: t('core', 'Delete'), + click: function() {self._deleteTags(self, type, self._selectedIds())}, + }; + self.addButton = { + text: t('core', 'Add'), + click: function() {self._addTag(self, type, self.$taginput.val())}, + }; + + self._fillTagList(type, self.$taglist); + }); + + self.$dialog.ocdialog({ + title: t('core', 'Edit tags'), + closeOnEscape: true, + width: 250, + height: 'auto', + modal: true, + //buttons: buttonlist, + close: function(event, ui) { + try { + $(this).ocdialog('destroy').remove(); + } catch(e) {console.warn(e);} + self.$dialog = null; + } + }); + }) + .fail(function(status, error) { + // If the method is called while navigating away + // from the page, it is probably not needed ;) + if(status !== 0) { + alert(t('core', 'Error loading dialog template: {error}', {error: error})); + } + }); + }, + /** + * @param string type + * @return jQuery.Promise which resolves with an array of ids + */ + getIdsForTag:function(type, tag) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_ids_for_tag', {type: type}); + $.getJSON(url, {tag: tag}, function(response) { + if(response.status === 'success') { + defer.resolve(response.ids); + } else { + defer.reject(response); + } + }); + return defer.promise(); + }, + /** + * @param string type + * @return jQuery.Promise which resolves with an array of ids + */ + getFavorites:function(type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_favorites', {type: type}); + $.getJSON(url, function(response) { + if(response.status === 'success') { + defer.resolve(response.ids); + } else { + defer.reject(response); + } + }); + return defer.promise(); + }, + /** + * @param string type + * @return jQuery.Promise which resolves with an array of id/name objects + */ + getTags:function(type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_tags', {type: type}); + $.getJSON(url, function(response) { + if(response.status === 'success') { + defer.resolve(response.tags); + } else { + defer.reject(response); + } + }); + return defer.promise(); + }, + /** + * @param int id + * @param string type + * @return jQuery.Promise + */ + tagAs:function(id, tag, type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_tag', {type: type, id: id}); + $.post(url, {tag: tag}, function(response) { + if(response.status === 'success') { + defer.resolve(response); + } else { + defer.reject(response); + } + }).fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + return defer.promise(); + }, + /** + * @param int id + * @param string type + * @return jQuery.Promise + */ + unTag:function(id, tag, type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_untag', {type: type, id: id}); + $.post(url, {tag: tag}, function(response) { + if(response.status === 'success') { + defer.resolve(response); + } else { + defer.reject(response); + } + }).fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + return defer.promise(); + }, + /** + * @param int id + * @param string type + * @return jQuery.Promise + */ + addToFavorites:function(id, type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_favorite', {type: type, id: id}); + $.post(url, function(response) { + if(response.status === 'success') { + defer.resolve(response); + } else { + defer.reject(response); + } + }).fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + return defer.promise(); + }, + /** + * @param int id + * @param string type + * @return jQuery.Promise + */ + removeFromFavorites:function(id, type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_unfavorite', {type: type, id: id}); + $.post(url, function(response) { + if(response.status === 'success') { + defer.resolve(); + } else { + defer.reject(response); + } + }).fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + return defer.promise(); + }, + /** + * @param string tag + * @param string type + * @return jQuery.Promise which resolves with an object with the name and the new id + */ + addTag:function(tag, type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_add', {type: type}); + $.post(url,{tag:tag}, function(response) { + if(typeof cb == 'function') { + cb(response); + } + if(response.status === 'success') { + defer.resolve({id:response.id, name: tag}); + } else { + defer.reject(response); + } + }).fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + return defer.promise(); + }, + /** + * @param array tags + * @param string type + * @return jQuery.Promise + */ + deleteTags:function(tags, type) { + if(!type && !this.type) { + throw new Error('The object type is not specified.'); + } + type = type ? type : this.type; + var defer = $.Deferred(), + self = this, + url = OC.Router.generate('core_tags_delete', {type: type}); + if(!tags || !tags.length) { + throw new Error(t('core', 'No tags selected for deletion.')); + } + var self = this; + $.post(url, {tags:tags}, function(response) { + if(response.status === 'success') { + defer.resolve(response.tags); + } else { + defer.reject(response); + } + }).fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + return defer.promise(); + }, + _update:function(tags, type) { + if(!this.$dialog) { + return; + } + var $taglist = this.$dialog.find('.taglist'), + self = this; + $taglist.empty(); + $.each(tags, function(idx, tag) { + var $item = self.$listTmpl.octemplate({id: tag.id, name: tag.name}); + $item.appendTo($taglist); + }); + $(this).trigger('change', {type: type, tags: tags}); + if(typeof this.changed === 'function') { + this.changed(tags); + } + }, + _getTemplate: function() { + var defer = $.Deferred(); + if(!this.$template) { + var self = this; + $.get(OC.filePath('core', 'templates', 'tags.html'), function(tmpl) { + self.$template = $(tmpl); + self.$listTmpl = self.$template.find('.taglist li:first-child').detach(); + defer.resolve(self.$template); + }) + .fail(function(jqXHR, textStatus, errorThrown) { + defer.reject(jqXHR.status, errorThrown); + }); + } else { + defer.resolve(this.$template); + } + return defer.promise(); + }, + _fillTagList: function(type) { + var self = this; + $.when(this.getTags(type)) + .then(function(tags) { + self._update(tags, type); + }) + .fail(function(response) { + console.warn(response); + }); + }, + _selectedIds: function() { + return $.map(this.$taglist.find('input:checked'), function(b) {return $(b).val();}); + }, + _handleChanges: function($list, $input) { + var ids = this._selectedIds(); + var buttons = []; + if($input.val().length) { + buttons.push(this.addButton); + } + if(ids.length) { + buttons.push(this.deleteButton); + } + this.$dialog.ocdialog('option', 'buttons', buttons); + }, + _deleteTags: function(self, type, ids) { + $.when(self.deleteTags(ids, type)) + .then(function() { + self._fillTagList(type); + self.$dialog.ocdialog('option', 'buttons', []); + }) + .fail(function(response) { + console.warn(response); + }); + }, + _addTag: function(self, type, tag) { + $.when(self.addTag(tag, type)) + .then(function(tag) { + self._fillTagList(type); + self.$taginput.val('').trigger('input'); + }) + .fail(function(response) { + console.warn(response); + }); + } +} + diff --git a/core/l10n/ar.php b/core/l10n/ar.php index cb8a506c4a..212d850e6f 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -1,14 +1,6 @@ "مجموعة", -"Category type not provided." => "نوع التصنيف لم يدخل", -"No category to add?" => "ألا توجد فئة للإضافة؟", -"This category already exists: %s" => "هذا التصنيف موجود مسبقا : %s", -"Object type not provided." => "نوع العنصر لم يدخل", -"%s ID not provided." => "رقم %s لم يدخل", -"Error adding %s to favorites." => "خطأ في اضافة %s الى المفضلة", -"No categories selected for deletion." => "لم يتم اختيار فئة للحذف", -"Error removing %s from favorites." => "خطأ في حذف %s من المفضلة", "Sunday" => "الاحد", "Monday" => "الأثنين", "Tuesday" => "الثلاثاء", @@ -46,12 +38,9 @@ $TRANSLATIONS = array( "Ok" => "موافق", "_{count} file conflict_::_{count} file conflicts_" => array("","","","","",""), "Cancel" => "الغاء", -"The object type is not specified." => "نوع العنصر غير محدد.", -"Error" => "خطأ", -"The app name is not specified." => "اسم التطبيق غير محدد.", -"The required file {file} is not installed!" => "الملف المطلوب {file} غير منصّب.", "Shared" => "مشارك", "Share" => "شارك", +"Error" => "خطأ", "Error while sharing" => "حصل خطأ عند عملية المشاركة", "Error while unsharing" => "حصل خطأ عند عملية إزالة المشاركة", "Error while changing permissions" => "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل", @@ -82,6 +71,9 @@ $TRANSLATIONS = array( "Sending ..." => "جاري الارسال ...", "Email sent" => "تم ارسال البريد الالكتروني", "Warning" => "تحذير", +"The object type is not specified." => "نوع العنصر غير محدد.", +"Delete" => "إلغاء", +"Add" => "اضف", "The update was unsuccessful. Please report this issue to the ownCloud community." => "حصل خطأ في عملية التحديث, يرجى ارسال تقرير بهذه المشكلة الى ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud", "Use the following link to reset your password: {link}" => "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}", @@ -101,8 +93,6 @@ $TRANSLATIONS = array( "Help" => "المساعدة", "Access forbidden" => "التوصّل محظور", "Cloud not found" => "لم يتم إيجاد", -"Edit categories" => "عدل الفئات", -"Add" => "اضف", "Security Warning" => "تحذير أمان", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension.", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 3b7fd4633a..8c7a644d52 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -1,6 +1,5 @@ "Няма избрани категории за изтриване", "Sunday" => "Неделя", "Monday" => "Понеделник", "Tuesday" => "Вторник", @@ -36,12 +35,14 @@ $TRANSLATIONS = array( "Ok" => "Добре", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Отказ", -"Error" => "Грешка", "Share" => "Споделяне", +"Error" => "Грешка", "Share with" => "Споделено с", "Password" => "Парола", "create" => "създаване", "Warning" => "Внимание", +"Delete" => "Изтриване", +"Add" => "Добавяне", "You will receive a link to reset your password via Email." => "Ще получите връзка за нулиране на паролата Ви.", "Username" => "Потребител", "Request reset" => "Нулиране на заявка", @@ -55,8 +56,6 @@ $TRANSLATIONS = array( "Help" => "Помощ", "Access forbidden" => "Достъпът е забранен", "Cloud not found" => "облакът не намерен", -"Edit categories" => "Редактиране на категориите", -"Add" => "Добавяне", "Create an admin account" => "Създаване на админ профил", "Advanced" => "Разширено", "Data folder" => "Директория за данни", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index dfcd2f509a..3e266f1106 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -1,12 +1,5 @@ "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।", -"No category to add?" => "যোগ করার মত কোন ক্যাটেগরি নেই ?", -"Object type not provided." => "অবজেক্টের ধরণটি প্রদান করা হয় নি।", -"%s ID not provided." => "%s ID প্রদান করা হয় নি।", -"Error adding %s to favorites." => "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।", -"No categories selected for deletion." => "মুছে ফেলার জন্য কনো ক্যাটেগরি নির্বাচন করা হয় নি।", -"Error removing %s from favorites." => "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।", "Sunday" => "রবিবার", "Monday" => "সোমবার", "Tuesday" => "মঙ্গলবার", @@ -44,12 +37,9 @@ $TRANSLATIONS = array( "Ok" => "তথাস্তু", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "বাতির", -"The object type is not specified." => "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।", -"Error" => "সমস্যা", -"The app name is not specified." => "অ্যাপের নামটি সুনির্দিষ্ট নয়।", -"The required file {file} is not installed!" => "আবশ্যিক {file} টি সংস্থাপিত নেই !", "Shared" => "ভাগাভাগিকৃত", "Share" => "ভাগাভাগি কর", +"Error" => "সমস্যা", "Error while sharing" => "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে ", "Error while unsharing" => "ভাগাভাগি বাতিল করতে সমস্যা দেখা দিয়েছে", "Error while changing permissions" => "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে", @@ -80,6 +70,9 @@ $TRANSLATIONS = array( "Sending ..." => "পাঠানো হচ্ছে......", "Email sent" => "ই-মেইল পাঠানো হয়েছে", "Warning" => "সতর্কবাণী", +"The object type is not specified." => "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।", +"Delete" => "মুছে", +"Add" => "যোগ কর", "Use the following link to reset your password: {link}" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}", "You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।", "Username" => "ব্যবহারকারী", @@ -95,8 +88,6 @@ $TRANSLATIONS = array( "Help" => "সহায়িকা", "Access forbidden" => "অধিগমনের অনুমতি নেই", "Cloud not found" => "ক্লাউড খুঁজে পাওয়া গেল না", -"Edit categories" => "ক্যাটেগরি সম্পাদনা", -"Add" => "যোগ কর", "Security Warning" => "নিরাপত্তাজনিত সতর্কতা", "Create an admin account" => "প্রশাসক একাউন্ট তৈরী করুন", "Advanced" => "সুচারু", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index d85da45b5d..cd6bca1bd1 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -8,14 +8,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Actualitzant la memòria de cau del fitxers, això pot trigar molt...", "Updated filecache" => "Actualitzada la memòria de cau dels fitxers", "... %d%% done ..." => "... %d%% fet ...", -"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: %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.", -"No categories selected for deletion." => "No hi ha categories per eliminar.", -"Error removing %s from favorites." => "Error en eliminar %s dels preferits.", "No image or file provided" => "No s'han proporcionat imatges o fitxers", "Unknown filetype" => "Tipus de fitxer desconegut", "Invalid image" => "Imatge no vàlida", @@ -67,12 +59,9 @@ $TRANSLATIONS = array( "(all selected)" => "(selecciona-ho tot)", "({count} selected)" => "({count} seleccionats)", "Error loading file exists template" => "Error en carregar la plantilla de fitxer existent", -"The object type is not specified." => "No s'ha especificat el tipus d'objecte.", -"Error" => "Error", -"The app name is not specified." => "No s'ha especificat el nom de l'aplicació.", -"The required file {file} is not installed!" => "El fitxer requerit {file} no està instal·lat!", "Shared" => "Compartit", "Share" => "Comparteix", +"Error" => "Error", "Error while sharing" => "Error en compartir", "Error while unsharing" => "Error en deixar de compartir", "Error while changing permissions" => "Error en canviar els permisos", @@ -104,6 +93,9 @@ $TRANSLATIONS = array( "Sending ..." => "Enviant...", "Email sent" => "El correu electrónic s'ha enviat", "Warning" => "Avís", +"The object type is not specified." => "No s'ha especificat el tipus d'objecte.", +"Delete" => "Esborra", +"Add" => "Afegeix", "The update was unsuccessful. Please report this issue to the ownCloud community." => "L'actualització ha estat incorrecte. Comuniqueu aquest error a la comunitat ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "L'actualització ha estat correcte. Ara us redirigim a ownCloud.", "%s password reset" => "restableix la contrasenya %s", @@ -126,8 +118,6 @@ $TRANSLATIONS = array( "Help" => "Ajuda", "Access forbidden" => "Accés prohibit", "Cloud not found" => "No s'ha trobat el núvol", -"Edit categories" => "Edita les categories", -"Add" => "Afegeix", "Security Warning" => "Avís de seguretat", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La versió de PHP que useu és vulnerable a l'atac per NULL Byte (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Actualitzeu la instal·lació de PHP per usar %s de forma segura.", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 4bd8bd07b7..486723047b 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -1,6 +1,7 @@ "%s s vámi sdílí »%s«", +"Couldn't send mail to following users: %s " => "Nebylo možné odeslat e-mail následujícím uživatelům: %s", "group" => "skupina", "Turned on maintenance mode" => "Zapnut režim údržby", "Turned off maintenance mode" => "Vypnut režim údržby", @@ -8,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Aktualizuji souborovou mezipaměť, toto může trvat opravdu dlouho...", "Updated filecache" => "Aktualizována souborová mezipaměť", "... %d%% done ..." => "... %d%% dokončeno ...", -"Category type not provided." => "Nezadán typ kategorie.", -"No category to add?" => "Žádná kategorie k přidání?", -"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.", -"No categories selected for deletion." => "Žádné kategorie nebyly vybrány ke smazání.", -"Error removing %s from favorites." => "Chyba při odebírání %s z oblíbených.", "No image or file provided" => "Soubor nebo obrázek nebyl zadán", "Unknown filetype" => "Neznámý typ souboru", "Invalid image" => "Chybný obrázek", @@ -58,17 +51,18 @@ $TRANSLATIONS = array( "No" => "Ne", "Ok" => "Ok", "Error loading message template: {error}" => "Chyba při nahrávání šablony zprávy: {error}", -"_{count} file conflict_::_{count} file conflicts_" => array("","",""), +"_{count} file conflict_::_{count} file conflicts_" => array("{count} souborový konflikt","{count} souborové konflikty","{count} souborových konfliktů"), "One file conflict" => "Jeden konflikt souboru", "Which files do you want to keep?" => "Které soubory chcete ponechat?", +"If you select both versions, the copied file will have a number added to its name." => "Pokud zvolíte obě verze, zkopírovaný soubor bude mít název doplněn o číslo.", "Cancel" => "Zrušit", "Continue" => "Pokračovat", -"The object type is not specified." => "Není určen typ objektu.", -"Error" => "Chyba", -"The app name is not specified." => "Není určen název aplikace.", -"The required file {file} is not installed!" => "Požadovaný soubor {file} není nainstalován!", +"(all selected)" => "(vybráno vše)", +"({count} selected)" => "(vybráno {count})", +"Error loading file exists template" => "Chyba při nahrávání šablony existence souboru", "Shared" => "Sdílené", "Share" => "Sdílet", +"Error" => "Chyba", "Error while sharing" => "Chyba při sdílení", "Error while unsharing" => "Chyba při rušení sdílení", "Error while changing permissions" => "Chyba při změně oprávnění", @@ -88,6 +82,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Sdílení již sdílené položky není povoleno", "Shared in {item} with {user}" => "Sdíleno v {item} s {user}", "Unshare" => "Zrušit sdílení", +"notify user by email" => "upozornit uživatele e-mailem", "can edit" => "lze upravovat", "access control" => "řízení přístupu", "create" => "vytvořit", @@ -100,6 +95,13 @@ $TRANSLATIONS = array( "Sending ..." => "Odesílám ...", "Email sent" => "E-mail odeslán", "Warning" => "Varování", +"The object type is not specified." => "Není určen typ objektu.", +"Enter new" => "Zadat nový", +"Delete" => "Smazat", +"Add" => "Přidat", +"Edit tags" => "Editovat štítky", +"Error loading dialog template: {error}" => "Chyba při načítání šablony dialogu: {error}", +"No tags selected for deletion." => "Žádné štítky nebyly vybrány ke smazání.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do evidence chyb ownCloud", "The update was successful. Redirecting you to ownCloud now." => "Aktualizace byla úspěšná. Přesměrovávám na ownCloud.", "%s password reset" => "reset hesla %s", @@ -120,10 +122,18 @@ $TRANSLATIONS = array( "Apps" => "Aplikace", "Admin" => "Administrace", "Help" => "Nápověda", +"Error loading tags" => "Chyba při načítání štítků", +"Tag already exists" => "Štítek již existuje", +"Error deleting tag(s)" => "Chyba při mazání štítku(ů)", +"Error tagging" => "Chyba při označování štítkem", +"Error untagging" => "Chyba při odznačování štítků", +"Error favoriting" => "Chyba při označování jako oblíbené", +"Error unfavoriting" => "Chyba při odznačování jako oblíbené", "Access forbidden" => "Přístup zakázán", "Cloud not found" => "Cloud nebyl nalezen", -"Edit categories" => "Upravit kategorie", -"Add" => "Přidat", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej ty tam,\n\njen ti chci dát vědět, že %s sdílel %s s tebou.\nZobraz si to: %s\n\n", +"The share will expire on %s.\n\n" => "Sdílení expiruje %s.\n\n", +"Cheers!" => "Ať slouží!", "Security Warning" => "Bezpečnostní upozornění", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Verze vašeho PHP je napadnutelná pomocí techniky \"NULL Byte\" (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Aktualizujte prosím vaši instanci PHP pro bezpečné používání %s.", @@ -142,15 +152,20 @@ $TRANSLATIONS = array( "Database tablespace" => "Tabulkový prostor databáze", "Database host" => "Hostitel databáze", "Finish setup" => "Dokončit nastavení", +"Finishing …" => "Dokončuji...", "%s is available. Get more information on how to update." => "%s je dostupná. Získejte více informací k postupu aktualizace.", "Log out" => "Odhlásit se", "Automatic logon rejected!" => "Automatické přihlášení odmítnuto!", "If you did not change your password recently, your account may be compromised!" => "Pokud jste v nedávné době neměnili své heslo, Váš účet může být kompromitován!", "Please change your password to secure your account again." => "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu.", +"Server side authentication failed!" => "Autentizace na serveru selhala!", +"Please contact your administrator." => "Kontaktujte prosím vašeho správce.", "Lost your password?" => "Ztratili jste své heslo?", "remember" => "zapamatovat", "Log in" => "Přihlásit", "Alternative Logins" => "Alternativní přihlášení", +"Hey there,

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

    " => "Hej ty tam,

    jen ti chci dát vědět, že %s sdílel »%s« s tebou.
    Zobrazit!

    ", +"The share will expire on %s.

    " => "Sdílení expiruje %s.

    ", "Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index 920fcad3d6..6781382fa0 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -1,14 +1,6 @@ "grŵp", -"Category type not provided." => "Math o gategori heb ei ddarparu.", -"No category to add?" => "Dim categori i'w ychwanegu?", -"This category already exists: %s" => "Mae'r categori hwn eisoes yn bodoli: %s", -"Object type not provided." => "Math o wrthrych heb ei ddarparu.", -"%s ID not provided." => "%s ID heb ei ddarparu.", -"Error adding %s to favorites." => "Gwall wrth ychwanegu %s at ffefrynnau.", -"No categories selected for deletion." => "Ni ddewiswyd categorïau i'w dileu.", -"Error removing %s from favorites." => "Gwall wrth dynnu %s o ffefrynnau.", "Sunday" => "Sul", "Monday" => "Llun", "Tuesday" => "Mawrth", @@ -46,12 +38,9 @@ $TRANSLATIONS = array( "Ok" => "Iawn", "_{count} file conflict_::_{count} file conflicts_" => array("","","",""), "Cancel" => "Diddymu", -"The object type is not specified." => "Nid yw'r math o wrthrych wedi cael ei nodi.", -"Error" => "Gwall", -"The app name is not specified." => "Nid yw enw'r pecyn wedi cael ei nodi.", -"The required file {file} is not installed!" => "Nid yw'r ffeil ofynnol {file} wedi ei gosod!", "Shared" => "Rhannwyd", "Share" => "Rhannu", +"Error" => "Gwall", "Error while sharing" => "Gwall wrth rannu", "Error while unsharing" => "Gwall wrth ddad-rannu", "Error while changing permissions" => "Gwall wrth newid caniatâd", @@ -82,6 +71,9 @@ $TRANSLATIONS = array( "Sending ..." => "Yn anfon ...", "Email sent" => "Anfonwyd yr e-bost", "Warning" => "Rhybudd", +"The object type is not specified." => "Nid yw'r math o wrthrych wedi cael ei nodi.", +"Delete" => "Dileu", +"Add" => "Ychwanegu", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Methodd y diweddariad. Adroddwch y mater hwn i gymuned ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr.", "Use the following link to reset your password: {link}" => "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}", @@ -101,8 +93,6 @@ $TRANSLATIONS = array( "Help" => "Cymorth", "Access forbidden" => "Mynediad wedi'i wahardd", "Cloud not found" => "Methwyd canfod cwmwl", -"Edit categories" => "Golygu categorïau", -"Add" => "Ychwanegu", "Security Warning" => "Rhybudd Diogelwch", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Mae eich fersiwn PHP yn agored i ymosodiad NULL Byte (CVE-2006-7243)", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Does dim cynhyrchydd rhifau hap diogel ar gael, galluogwch estyniad PHP OpenSSL.", diff --git a/core/l10n/da.php b/core/l10n/da.php index b28e8a969b..93fad7047d 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -8,14 +8,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Opdatere filcache, dette kan tage rigtigt lang tid...", "Updated filecache" => "Opdaterede filcache", "... %d%% done ..." => "... %d%% færdig ...", -"Category type not provided." => "Kategori typen ikke er fastsat.", -"No category to add?" => "Ingen kategori at tilføje?", -"This category already exists: %s" => "Kategorien eksisterer allerede: %s", -"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.", -"No categories selected for deletion." => "Ingen kategorier valgt", -"Error removing %s from favorites." => "Fejl ved fjernelse af %s fra favoritter.", "No image or file provided" => "Ingen fil eller billede givet", "Unknown filetype" => "Ukendt filtype", "Invalid image" => "Ugyldigt billede", @@ -67,12 +59,9 @@ $TRANSLATIONS = array( "(all selected)" => "(alle valgt)", "({count} selected)" => "({count} valgt)", "Error loading file exists template" => "Fejl ved inlæsning af; fil eksistere skabelon", -"The object type is not specified." => "Objekttypen er ikke angivet.", -"Error" => "Fejl", -"The app name is not specified." => "Den app navn er ikke angivet.", -"The required file {file} is not installed!" => "Den krævede fil {file} er ikke installeret!", "Shared" => "Delt", "Share" => "Del", +"Error" => "Fejl", "Error while sharing" => "Fejl under deling", "Error while unsharing" => "Fejl under annullering af deling", "Error while changing permissions" => "Fejl under justering af rettigheder", @@ -104,6 +93,9 @@ $TRANSLATIONS = array( "Sending ..." => "Sender ...", "Email sent" => "E-mail afsendt", "Warning" => "Advarsel", +"The object type is not specified." => "Objekttypen er ikke angivet.", +"Delete" => "Slet", +"Add" => "Tilføj", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til ownClouds community.", "The update was successful. Redirecting you to ownCloud now." => "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud.", "%s password reset" => "%s adgangskode nulstillet", @@ -126,8 +118,6 @@ $TRANSLATIONS = array( "Help" => "Hjælp", "Access forbidden" => "Adgang forbudt", "Cloud not found" => "Sky ikke fundet", -"Edit categories" => "Rediger kategorier", -"Add" => "Tilføj", "Security Warning" => "Sikkerhedsadvarsel", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din PHP-version er sårbar overfor et NULL Byte angreb (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Opdater venligst din PHP installation for at anvende %s sikkert.", diff --git a/core/l10n/de.php b/core/l10n/de.php index 7e292adcf3..d6cc8752b0 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -9,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Aktualisiere Dateicache, dies könnte eine Weile dauern...", "Updated filecache" => "Dateicache aktualisiert", "... %d%% done ..." => "... %d%% erledigt ...", -"Category type not provided." => "Kategorie nicht angegeben.", -"No category to add?" => "Keine Kategorie hinzuzufügen?", -"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.", -"No categories selected for deletion." => "Es wurde keine Kategorien zum Löschen ausgewählt.", -"Error removing %s from favorites." => "Fehler beim Entfernen von %s von den Favoriten.", "No image or file provided" => "Kein Bild oder Datei zur Verfügung gestellt", "Unknown filetype" => "Unbekannter Dateityp", "Invalid image" => "Ungültiges Bild", @@ -68,12 +60,9 @@ $TRANSLATIONS = array( "(all selected)" => "(Alle ausgewählt)", "({count} selected)" => "({count} ausgewählt)", "Error loading file exists template" => "Fehler beim Laden der vorhanden Dateivorlage", -"The object type is not specified." => "Der Objekttyp ist nicht angegeben.", -"Error" => "Fehler", -"The app name is not specified." => "Der App-Name ist nicht angegeben.", -"The required file {file} is not installed!" => "Die benötigte Datei {file} ist nicht installiert.", "Shared" => "Geteilt", "Share" => "Teilen", +"Error" => "Fehler", "Error while sharing" => "Fehler beim Teilen", "Error while unsharing" => "Fehler beim Aufheben der Freigabe", "Error while changing permissions" => "Fehler beim Ändern der Rechte", @@ -106,6 +95,13 @@ $TRANSLATIONS = array( "Sending ..." => "Sende ...", "Email sent" => "E-Mail wurde verschickt", "Warning" => "Warnung", +"The object type is not specified." => "Der Objekttyp ist nicht angegeben.", +"Enter new" => "Unbekannter Fehler, bitte prüfe Deine Systemeinstellungen oder kontaktiere Deinen Administrator", +"Delete" => "Löschen", +"Add" => "Hinzufügen", +"Edit tags" => "Schlagwörter bearbeiten", +"Error loading dialog template: {error}" => "Fehler beim Laden der Gesprächsvorlage: {error}", +"No tags selected for deletion." => "Es wurden keine Schlagwörter zum Löschen ausgewählt.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Du wirst nun zu ownCloud weitergeleitet.", "%s password reset" => "%s-Passwort zurücksetzen", @@ -126,13 +122,18 @@ $TRANSLATIONS = array( "Apps" => "Apps", "Admin" => "Administration", "Help" => "Hilfe", +"Error loading tags" => "Fehler beim Laden der Schlagwörter", +"Tag already exists" => "Schlagwort ist bereits vorhanden", +"Error deleting tag(s)" => "Fehler beim Löschen des Schlagwortes bzw. der Schlagwörter", +"Error tagging" => "Fehler beim Hinzufügen der Schlagwörter", +"Error untagging" => "Fehler beim Entfernen der Schlagwörter", +"Error favoriting" => "Fehler beim Hinzufügen zu den Favoriten", +"Error unfavoriting" => "Fehler beim Entfernen aus den Favoriten", "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud nicht gefunden", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo,\n\nich wollte Dich nur wissen lassen, dass %s %s mit Dir teilt.\nSchaue es Dir an: %s\n\n", "The share will expire on %s.\n\n" => "Die Freigabe wird ablaufen am %s.\n\n", "Cheers!" => "Hallo!", -"Edit categories" => "Kategorien bearbeiten", -"Add" => "Hinzufügen", "Security Warning" => "Sicherheitswarnung", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Deine PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar", "Please update your PHP installation to use %s securely." => "Bitte aktualisiere deine PHP-Installation um %s sicher nutzen zu können.", @@ -157,6 +158,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Automatischer Login zurückgewiesen!", "If you did not change your password recently, your account may be compromised!" => "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen.", +"Server side authentication failed!" => "Serverseitige Authentifizierung fehlgeschlagen!", +"Please contact your administrator." => "Bitte kontaktiere Deinen Administrator.", "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index 1f79e977cc..e3e48a718d 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -2,14 +2,6 @@ $TRANSLATIONS = array( "%s shared »%s« with you" => "%s teilt »%s« mit Ihnen", "group" => "Gruppe", -"Category type not provided." => "Kategorie nicht angegeben.", -"No category to add?" => "Keine Kategorie hinzuzufügen?", -"This category already exists: %s" => "Die nachfolgende Kategorie existiert bereits: %s", -"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.", -"No categories selected for deletion." => "Es wurden keine Kategorien zum Löschen ausgewählt.", -"Error removing %s from favorites." => "Fehler beim Entfernen von %s von den Favoriten.", "Sunday" => "Sonntag", "Monday" => "Montag", "Tuesday" => "Dienstag", @@ -47,12 +39,9 @@ $TRANSLATIONS = array( "Ok" => "OK", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Abbrechen", -"The object type is not specified." => "Der Objekttyp ist nicht angegeben.", -"Error" => "Fehler", -"The app name is not specified." => "Der App-Name ist nicht angegeben.", -"The required file {file} is not installed!" => "Die benötigte Datei {file} ist nicht installiert!", "Shared" => "Geteilt", "Share" => "Teilen", +"Error" => "Fehler", "Error while sharing" => "Fehler beim Teilen", "Error while unsharing" => "Fehler beim Aufheben der Freigabe", "Error while changing permissions" => "Fehler bei der Änderung der Rechte", @@ -84,6 +73,9 @@ $TRANSLATIONS = array( "Sending ..." => "Sende ...", "Email sent" => "Email gesendet", "Warning" => "Warnung", +"The object type is not specified." => "Der Objekttyp ist nicht angegeben.", +"Delete" => "Löschen", +"Add" => "Hinzufügen", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", "%s password reset" => "%s-Passwort zurücksetzen", @@ -106,8 +98,6 @@ $TRANSLATIONS = array( "Help" => "Hilfe", "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud wurde nicht gefunden", -"Edit categories" => "Kategorien ändern", -"Add" => "Hinzufügen", "Security Warning" => "Sicherheitshinweis", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar", "Please update your PHP installation to use %s securely." => "Bitte aktualisieren Sie Ihre PHP-Installation um %s sicher nutzen zu können.", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 95519c7d41..e373aee460 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -9,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Aktualisiere Dateicache, dies könnte eine Weile dauern...", "Updated filecache" => "Dateicache aktualisiert", "... %d%% done ..." => "... %d%% erledigt ...", -"Category type not provided." => "Kategorie nicht angegeben.", -"No category to add?" => "Keine Kategorie hinzuzufügen?", -"This category already exists: %s" => "Die nachfolgende Kategorie existiert bereits: %s", -"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.", -"No categories selected for deletion." => "Es wurden keine Kategorien zum Löschen ausgewählt.", -"Error removing %s from favorites." => "Fehler beim Entfernen von %s von den Favoriten.", "No image or file provided" => "Kein Bild oder Datei zur Verfügung gestellt", "Unknown filetype" => "Unbekannter Dateityp", "Invalid image" => "Ungültiges Bild", @@ -68,12 +60,9 @@ $TRANSLATIONS = array( "(all selected)" => "(Alle ausgewählt)", "({count} selected)" => "({count} ausgewählt)", "Error loading file exists template" => "Fehler beim Laden der vorhanden Dateivorlage", -"The object type is not specified." => "Der Objekttyp ist nicht angegeben.", -"Error" => "Fehler", -"The app name is not specified." => "Der App-Name ist nicht angegeben.", -"The required file {file} is not installed!" => "Die benötigte Datei {file} ist nicht installiert!", "Shared" => "Geteilt", "Share" => "Teilen", +"Error" => "Fehler", "Error while sharing" => "Fehler beim Teilen", "Error while unsharing" => "Fehler beim Aufheben der Freigabe", "Error while changing permissions" => "Fehler bei der Änderung der Rechte", @@ -106,6 +95,13 @@ $TRANSLATIONS = array( "Sending ..." => "Sende ...", "Email sent" => "Email gesendet", "Warning" => "Warnung", +"The object type is not specified." => "Der Objekttyp ist nicht angegeben.", +"Enter new" => "c", +"Delete" => "Löschen", +"Add" => "Hinzufügen", +"Edit tags" => "Schlagwörter bearbeiten", +"Error loading dialog template: {error}" => "Fehler beim Laden der Gesprächsvorlage: {error}", +"No tags selected for deletion." => "Es wurden keine Schlagwörter zum Löschen ausgewählt.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", "%s password reset" => "%s-Passwort zurücksetzen", @@ -126,13 +122,18 @@ $TRANSLATIONS = array( "Apps" => "Apps", "Admin" => "Administrator", "Help" => "Hilfe", +"Error loading tags" => "Fehler beim Laden der Schlagwörter", +"Tag already exists" => "Schlagwort ist bereits vorhanden", +"Error deleting tag(s)" => "Fehler beim Löschen des Schlagwortes bzw. der Schlagwörter", +"Error tagging" => "Fehler beim Hinzufügen der Schlagwörter", +"Error untagging" => "Fehler beim Entfernen der Schlagwörter", +"Error favoriting" => "Fehler beim Hinzufügen zu den Favoriten", +"Error unfavoriting" => "Fehler beim Entfernen aus den Favoriten", "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud wurde nicht gefunden", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\n", "The share will expire on %s.\n\n" => "Die Freigabe wird ablaufen am %s.\n\n", "Cheers!" => "Hallo!", -"Edit categories" => "Kategorien ändern", -"Add" => "Hinzufügen", "Security Warning" => "Sicherheitshinweis", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar", "Please update your PHP installation to use %s securely." => "Bitte aktualisieren Sie Ihre PHP-Installation um %s sicher nutzen zu können.", @@ -157,6 +158,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Automatische Anmeldung verweigert!", "If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern.", +"Server side authentication failed!" => "Serverseitige Authentifizierung fehlgeschlagen!", +"Please contact your administrator." => "Bitte kontaktieren Sie Ihren Administrator.", "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", diff --git a/core/l10n/el.php b/core/l10n/el.php index fd5987d02a..0348babe56 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -2,14 +2,6 @@ $TRANSLATIONS = array( "%s shared »%s« with you" => "Ο %s διαμοιράστηκε μαζί σας το »%s«", "group" => "ομάδα", -"Category type not provided." => "Δεν δώθηκε τύπος κατηγορίας.", -"No category to add?" => "Δεν έχετε κατηγορία να προσθέσετε;", -"This category already exists: %s" => "Αυτή η κατηγορία υπάρχει ήδη: %s", -"Object type not provided." => "Δεν δώθηκε τύπος αντικειμένου.", -"%s ID not provided." => "Δεν δώθηκε η ID για %s.", -"Error adding %s to favorites." => "Σφάλμα προσθήκης %s στα αγαπημένα.", -"No categories selected for deletion." => "Δεν επιλέχτηκαν κατηγορίες για διαγραφή.", -"Error removing %s from favorites." => "Σφάλμα αφαίρεσης %s από τα αγαπημένα.", "Sunday" => "Κυριακή", "Monday" => "Δευτέρα", "Tuesday" => "Τρίτη", @@ -47,12 +39,9 @@ $TRANSLATIONS = array( "Ok" => "Οκ", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Άκυρο", -"The object type is not specified." => "Δεν καθορίστηκε ο τύπος του αντικειμένου.", -"Error" => "Σφάλμα", -"The app name is not specified." => "Δεν καθορίστηκε το όνομα της εφαρμογής.", -"The required file {file} is not installed!" => "Το απαιτούμενο αρχείο {file} δεν εγκαταστάθηκε!", "Shared" => "Κοινόχρηστα", "Share" => "Διαμοιρασμός", +"Error" => "Σφάλμα", "Error while sharing" => "Σφάλμα κατά τον διαμοιρασμό", "Error while unsharing" => "Σφάλμα κατά το σταμάτημα του διαμοιρασμού", "Error while changing permissions" => "Σφάλμα κατά την αλλαγή των δικαιωμάτων", @@ -84,6 +73,9 @@ $TRANSLATIONS = array( "Sending ..." => "Αποστολή...", "Email sent" => "Το Email απεστάλη ", "Warning" => "Προειδοποίηση", +"The object type is not specified." => "Δεν καθορίστηκε ο τύπος του αντικειμένου.", +"Delete" => "Διαγραφή", +"Add" => "Προσθήκη", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ στείλτε αναφορά στην κοινότητα ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud.", "Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}", @@ -105,8 +97,6 @@ $TRANSLATIONS = array( "Help" => "Βοήθεια", "Access forbidden" => "Δεν επιτρέπεται η πρόσβαση", "Cloud not found" => "Δεν βρέθηκε νέφος", -"Edit categories" => "Επεξεργασία κατηγοριών", -"Add" => "Προσθήκη", "Security Warning" => "Προειδοποίηση Ασφαλείας", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Η PHP ειναι ευαλωτη στην NULL Byte επιθεση (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Παρακαλώ ενημερώστε την εγκατάσταση της PHP ώστε να χρησιμοποιήσετε το %s με ασφάλεια.", diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index c69cf59f38..575abe23f7 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -1,6 +1,7 @@ "%s shared \"%s\" with you", +"Couldn't send mail to following users: %s " => "Couldn't send mail to following users: %s ", "group" => "group", "Turned on maintenance mode" => "Turned on maintenance mode", "Turned off maintenance mode" => "Turned off maintenance mode", @@ -8,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Updating filecache, this may take a really long time...", "Updated filecache" => "Updated filecache", "... %d%% done ..." => "... %d%% done ...", -"Category type not provided." => "Category type not provided.", -"No category to add?" => "No category to add?", -"This category already exists: %s" => "This category already exists: %s", -"Object type not provided." => "Object type not provided.", -"%s ID not provided." => "%s ID not provided.", -"Error adding %s to favorites." => "Error adding %s to favourites.", -"No categories selected for deletion." => "No categories selected for deletion.", -"Error removing %s from favorites." => "Error removing %s from favourites.", "No image or file provided" => "No image or file provided", "Unknown filetype" => "Unknown filetype", "Invalid image" => "Invalid image", @@ -67,12 +60,9 @@ $TRANSLATIONS = array( "(all selected)" => "(all selected)", "({count} selected)" => "({count} selected)", "Error loading file exists template" => "Error loading file exists template", -"The object type is not specified." => "The object type is not specified.", -"Error" => "Error", -"The app name is not specified." => "The app name is not specified.", -"The required file {file} is not installed!" => "The required file {file} is not installed!", "Shared" => "Shared", "Share" => "Share", +"Error" => "Error", "Error while sharing" => "Error whilst sharing", "Error while unsharing" => "Error whilst unsharing", "Error while changing permissions" => "Error whilst changing permissions", @@ -92,6 +82,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Resharing is not allowed", "Shared in {item} with {user}" => "Shared in {item} with {user}", "Unshare" => "Unshare", +"notify user by email" => "notify user by email", "can edit" => "can edit", "access control" => "access control", "create" => "create", @@ -104,6 +95,13 @@ $TRANSLATIONS = array( "Sending ..." => "Sending ...", "Email sent" => "Email sent", "Warning" => "Warning", +"The object type is not specified." => "The object type is not specified.", +"Enter new" => "Enter new", +"Delete" => "Delete", +"Add" => "Add", +"Edit tags" => "Edit tags", +"Error loading dialog template: {error}" => "Error loading dialog template: {error}", +"No tags selected for deletion." => "No tags selected for deletion.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "The update was unsuccessful. Please report this issue to the ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "The update was successful. Redirecting you to ownCloud now.", "%s password reset" => "%s password reset", @@ -124,10 +122,18 @@ $TRANSLATIONS = array( "Apps" => "Apps", "Admin" => "Admin", "Help" => "Help", +"Error loading tags" => "Error loading tags", +"Tag already exists" => "Tag already exists", +"Error deleting tag(s)" => "Error deleting tag(s)", +"Error tagging" => "Error tagging", +"Error untagging" => "Error untagging", +"Error favoriting" => "Error favouriting", +"Error unfavoriting" => "Error unfavouriting", "Access forbidden" => "Access denied", "Cloud not found" => "Cloud not found", -"Edit categories" => "Edit categories", -"Add" => "Add", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n", +"The share will expire on %s.\n\n" => "The share will expire on %s.\n\n", +"Cheers!" => "Cheers!", "Security Warning" => "Security Warning", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Please update your PHP installation to use %s securely.", @@ -146,15 +152,20 @@ $TRANSLATIONS = array( "Database tablespace" => "Database tablespace", "Database host" => "Database host", "Finish setup" => "Finish setup", +"Finishing …" => "Finishing …", "%s is available. Get more information on how to update." => "%s is available. Get more information on how to update.", "Log out" => "Log out", "Automatic logon rejected!" => "Automatic logon rejected!", "If you did not change your password recently, your account may be compromised!" => "If you did not change your password recently, your account may be compromised!", "Please change your password to secure your account again." => "Please change your password to secure your account again.", +"Server side authentication failed!" => "Server side authentication failed!", +"Please contact your administrator." => "Please contact your administrator.", "Lost your password?" => "Lost your password?", "remember" => "remember", "Log in" => "Log in", "Alternative Logins" => "Alternative Logins", +"Hey there,

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

    " => "Hey there,

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

    ", +"The share will expire on %s.

    " => "The share will expire on %s.

    ", "Updating ownCloud to version %s, this may take a while." => "Updating ownCloud to version %s, this may take a while." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 2b416db470..24e845622c 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -2,14 +2,6 @@ $TRANSLATIONS = array( "%s shared »%s« with you" => "%s kunhavigis “%s” kun vi", "group" => "grupo", -"Category type not provided." => "Ne proviziĝis tipon de kategorio.", -"No category to add?" => "Ĉu neniu kategorio estas aldonota?", -"This category already exists: %s" => "Tiu kategorio jam ekzistas: %s", -"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.", -"No categories selected for deletion." => "Neniu kategorio elektiĝis por forigo.", -"Error removing %s from favorites." => "Eraro dum forigo de %s el favoratoj.", "Sunday" => "dimanĉo", "Monday" => "lundo", "Tuesday" => "mardo", @@ -47,12 +39,9 @@ $TRANSLATIONS = array( "Ok" => "Akcepti", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Nuligi", -"The object type is not specified." => "Ne indikiĝis tipo de la objekto.", -"Error" => "Eraro", -"The app name is not specified." => "Ne indikiĝis nomo de la aplikaĵo.", -"The required file {file} is not installed!" => "La necesa dosiero {file} ne instaliĝis!", "Shared" => "Dividita", "Share" => "Kunhavigi", +"Error" => "Eraro", "Error while sharing" => "Eraro dum kunhavigo", "Error while unsharing" => "Eraro dum malkunhavigo", "Error while changing permissions" => "Eraro dum ŝanĝo de permesoj", @@ -83,6 +72,9 @@ $TRANSLATIONS = array( "Sending ..." => "Sendante...", "Email sent" => "La retpoŝtaĵo sendiĝis", "Warning" => "Averto", +"The object type is not specified." => "Ne indikiĝis tipo de la objekto.", +"Delete" => "Forigi", +"Add" => "Aldoni", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la ownClouda komunumo.", "The update was successful. Redirecting you to ownCloud now." => "La ĝisdatigo estis sukcesa. Alidirektante nun al ownCloud.", "Use the following link to reset your password: {link}" => "Uzu la jenan ligilon por restarigi vian pasvorton: {link}", @@ -102,8 +94,6 @@ $TRANSLATIONS = array( "Help" => "Helpo", "Access forbidden" => "Aliro estas malpermesata", "Cloud not found" => "La nubo ne estas trovita", -"Edit categories" => "Redakti kategoriojn", -"Add" => "Aldoni", "Security Warning" => "Sekureca averto", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Via PHP versio estas sendefenda je la NULL bajto atako (CVE-2006-7243)", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ne disponeblas sekura generilo de hazardaj numeroj; bonvolu kapabligi la OpenSSL-kromaĵon por PHP.", diff --git a/core/l10n/es.php b/core/l10n/es.php index 29eea2dbf4..29a947b47e 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -1,6 +1,7 @@ "%s ha compatido »%s« contigo", +"Couldn't send mail to following users: %s " => "No se pudo enviar mensajes a los siguientes usuarios: %s", "group" => "grupo", "Turned on maintenance mode" => "Modo mantenimiento activado", "Turned off maintenance mode" => "Modo mantenimiento desactivado", @@ -8,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Actualizando caché de archivos, esto puede tardar bastante tiempo...", "Updated filecache" => "Caché de archivos actualizada", "... %d%% done ..." => "... %d%% hecho ...", -"Category type not provided." => "Tipo de categoría no proporcionado.", -"No category to add?" => "¿Ninguna categoría para añadir?", -"This category already exists: %s" => "Esta categoría ya existe: %s", -"Object type not provided." => "Tipo de objeto no proporcionado.", -"%s ID not provided." => "ID de %s no proporcionado.", -"Error adding %s to favorites." => "Error añadiendo %s a favoritos.", -"No categories selected for deletion." => "No hay categorías seleccionadas para borrar.", -"Error removing %s from favorites." => "Error eliminando %s de los favoritos.", "No image or file provided" => "No se especificó ningún archivo o imagen", "Unknown filetype" => "Tipo de archivo desconocido", "Invalid image" => "Imagen inválida", @@ -67,12 +60,9 @@ $TRANSLATIONS = array( "(all selected)" => "(seleccionados todos)", "({count} selected)" => "({count} seleccionados)", "Error loading file exists template" => "Error cargando plantilla de archivo existente", -"The object type is not specified." => "El tipo de objeto no está especificado.", -"Error" => "Error", -"The app name is not specified." => "El nombre de la aplicación no está especificado.", -"The required file {file} is not installed!" => "¡El fichero {file} es necesario y no está instalado!", "Shared" => "Compartido", "Share" => "Compartir", +"Error" => "Error", "Error while sharing" => "Error al compartir", "Error while unsharing" => "Error al dejar de compartir", "Error while changing permissions" => "Error al cambiar permisos", @@ -92,6 +82,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "No se permite compartir de nuevo", "Shared in {item} with {user}" => "Compartido en {item} con {user}", "Unshare" => "Dejar de compartir", +"notify user by email" => "notificar al usuario por correo electrónico", "can edit" => "puede editar", "access control" => "control de acceso", "create" => "crear", @@ -104,6 +95,9 @@ $TRANSLATIONS = array( "Sending ..." => "Enviando...", "Email sent" => "Correo electrónico enviado", "Warning" => "Precaución", +"The object type is not specified." => "El tipo de objeto no está especificado.", +"Delete" => "Eliminar", +"Add" => "Agregar", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.", "%s password reset" => "%s restablecer contraseña", @@ -126,8 +120,9 @@ $TRANSLATIONS = array( "Help" => "Ayuda", "Access forbidden" => "Acceso denegado", "Cloud not found" => "No se encuentra la nube", -"Edit categories" => "Editar categorías", -"Add" => "Agregar", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hola:\n\nTan solo queremos informarte que %s compartió %s contigo.\nMíralo aquí: %s\n\n", +"The share will expire on %s.\n\n" => "El objeto dejará de ser compartido el %s.\n\n", +"Cheers!" => "¡Saludos!", "Security Warning" => "Advertencia de seguridad", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Su versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Por favor, actualice su instalación PHP para usar %s con seguridad.", @@ -146,15 +141,20 @@ $TRANSLATIONS = array( "Database tablespace" => "Espacio de tablas de la base de datos", "Database host" => "Host de la base de datos", "Finish setup" => "Completar la instalación", +"Finishing …" => "Finalizando...", "%s is available. Get more information on how to update." => "%s esta disponible. Obtener mas información de como actualizar.", "Log out" => "Salir", "Automatic logon rejected!" => "¡Inicio de sesión automático rechazado!", "If you did not change your password recently, your account may be compromised!" => "Si no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!", "Please change your password to secure your account again." => "Por favor cambie su contraseña para asegurar su cuenta nuevamente.", +"Server side authentication failed!" => "La autenticación a fallado en el servidor.", +"Please contact your administrator." => "Sírvase contactar a su administrador.", "Lost your password?" => "¿Ha perdido su contraseña?", "remember" => "recordar", "Log in" => "Entrar", "Alternative Logins" => "Inicios de sesión alternativos", +"Hey there,

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

    " => "Hola:

    tan solo queremos informarte que %s compartió «%s» contigo.
    ¡Míralo acá!

    ", +"The share will expire on %s.

    " => "El objeto dejará de ser compartido el %s.

    ", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 7d7e29c8ff..195db409ab 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -8,14 +8,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Actualizando caché de archivos, esto puede tardar mucho tiempo...", "Updated filecache" => "Caché de archivos actualizada", "... %d%% done ..." => "... %d%% hecho ...", -"Category type not provided." => "Tipo de categoría no provisto. ", -"No category to add?" => "¿Ninguna categoría para añadir?", -"This category already exists: %s" => "Esta categoría ya existe: %s", -"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. ", -"No categories selected for deletion." => "No se seleccionaron categorías para borrar.", -"Error removing %s from favorites." => "Error al borrar %s de favoritos. ", "Sunday" => "Domingo", "Monday" => "Lunes", "Tuesday" => "Martes", @@ -53,12 +45,9 @@ $TRANSLATIONS = array( "Ok" => "Aceptar", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Cancelar", -"The object type is not specified." => "El tipo de objeto no está especificado. ", -"Error" => "Error", -"The app name is not specified." => "El nombre de la App no está especificado.", -"The required file {file} is not installed!" => "¡El archivo requerido {file} no está instalado!", "Shared" => "Compartido", "Share" => "Compartir", +"Error" => "Error", "Error while sharing" => "Error al compartir", "Error while unsharing" => "Error en al dejar de compartir", "Error while changing permissions" => "Error al cambiar permisos", @@ -90,6 +79,9 @@ $TRANSLATIONS = array( "Sending ..." => "Mandando...", "Email sent" => "e-mail mandado", "Warning" => "Atención", +"The object type is not specified." => "El tipo de objeto no está especificado. ", +"Delete" => "Borrar", +"Add" => "Agregar", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización no pudo ser completada. Por favor, reportá el inconveniente a la comunidad ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización fue exitosa. Estás siendo redirigido a ownCloud.", "%s password reset" => "%s restablecer contraseña", @@ -112,8 +104,6 @@ $TRANSLATIONS = array( "Help" => "Ayuda", "Access forbidden" => "Acceso prohibido", "Cloud not found" => "No se encontró ownCloud", -"Edit categories" => "Editar categorías", -"Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La versión de PHP que tenés, es vulnerable al ataque de byte NULL (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Por favor, actualizá tu instalación PHP para poder usar %s de manera segura.", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 7b26850166..6ccaf930af 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -9,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Uuendan failipuhvrit, see võib kesta väga kaua...", "Updated filecache" => "Uuendatud failipuhver", "... %d%% done ..." => "... %d%% tehtud ...", -"Category type not provided." => "Kategooria tüüp puudub.", -"No category to add?" => "Pole kategooriat, mida lisada?", -"This category already exists: %s" => "See kategooria on juba olemas: %s", -"Object type not provided." => "Objekti tüüb puudub.", -"%s ID not provided." => "%s ID puudub.", -"Error adding %s to favorites." => "Viga %s lisamisel lemmikutesse.", -"No categories selected for deletion." => "Kustutamiseks pole kategooriat valitud.", -"Error removing %s from favorites." => "Viga %s eemaldamisel lemmikutest.", "No image or file provided" => "Ühtegi pilti või faili ei pakutud", "Unknown filetype" => "Tundmatu failitüüp", "Invalid image" => "Vigane pilt", @@ -62,16 +54,15 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} failikonflikt","{count} failikonflikti"), "One file conflict" => "Üks failikonflikt", "Which files do you want to keep?" => "Milliseid faile sa soovid alles hoida?", +"If you select both versions, the copied file will have a number added to its name." => "Kui valid mõlemad versioonid, siis lisatakse kopeeritud faili nimele number.", "Cancel" => "Loobu", "Continue" => "Jätka", "(all selected)" => "(kõik valitud)", "({count} selected)" => "({count} valitud)", -"The object type is not specified." => "Objekti tüüp pole määratletud.", -"Error" => "Viga", -"The app name is not specified." => "Rakenduse nimi ole määratletud.", -"The required file {file} is not installed!" => "Vajalikku faili {file} pole paigaldatud!", +"Error loading file exists template" => "Viga faili olemasolu malli laadimisel", "Shared" => "Jagatud", "Share" => "Jaga", +"Error" => "Viga", "Error while sharing" => "Viga jagamisel", "Error while unsharing" => "Viga jagamise lõpetamisel", "Error while changing permissions" => "Viga õiguste muutmisel", @@ -104,6 +95,13 @@ $TRANSLATIONS = array( "Sending ..." => "Saatmine ...", "Email sent" => "E-kiri on saadetud", "Warning" => "Hoiatus", +"The object type is not specified." => "Objekti tüüp pole määratletud.", +"Enter new" => "Sisesta uus", +"Delete" => "Kustuta", +"Add" => "Lisa", +"Edit tags" => "Muuda silte", +"Error loading dialog template: {error}" => "Viga dialoogi malli laadimisel: {error}", +"No tags selected for deletion." => "Kustutamiseks pole ühtegi silti valitud.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Uuendus ebaõnnestus. Palun teavita probleemidest ownCloud kogukonda.", "The update was successful. Redirecting you to ownCloud now." => "Uuendus oli edukas. Kohe suunatakse Sind ownCloudi.", "%s password reset" => "%s parooli lähtestus", @@ -124,13 +122,18 @@ $TRANSLATIONS = array( "Apps" => "Rakendused", "Admin" => "Admin", "Help" => "Abiinfo", +"Error loading tags" => "Viga siltide laadimisel", +"Tag already exists" => "Silt on juba olemas", +"Error deleting tag(s)" => "Viga sildi (siltide) kustutamisel", +"Error tagging" => "Viga sildi lisamisel", +"Error untagging" => "Viga sildi eemaldamisel", +"Error favoriting" => "Viga lemmikuks lisamisel", +"Error unfavoriting" => "Viga lemmikutest eemaldamisel", "Access forbidden" => "Ligipääs on keelatud", "Cloud not found" => "Pilve ei leitud", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sulle välja %s.\nVaata seda: %s\n\n", "The share will expire on %s.\n\n" => "Jagamine aegub %s.\n\n", "Cheers!" => "Terekest!", -"Edit categories" => "Muuda kategooriaid", -"Add" => "Lisa", "Security Warning" => "Turvahoiatus", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Sinu PHP versioon on haavatav NULL Baidi (CVE-2006-7243) rünnakuga.", "Please update your PHP installation to use %s securely." => "Palun uuenda oma paigaldatud PHP-d tagamaks %s turvalisus.", @@ -155,6 +158,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Automaatne sisselogimine lükati tagasi!", "If you did not change your password recently, your account may be compromised!" => "Kui sa ei muutnud oma parooli hiljuti, siis võib su kasutajakonto olla ohustatud!", "Please change your password to secure your account again." => "Palun muuda parooli, et oma kasutajakonto uuesti turvata.", +"Server side authentication failed!" => "Serveripoolne autentimine ebaõnnestus!", +"Please contact your administrator." => "Palun kontakteeru oma süsteemihalduriga.", "Lost your password?" => "Kaotasid oma parooli?", "remember" => "pea meeles", "Log in" => "Logi sisse", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 2bf1b06079..50e4e12d77 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -2,14 +2,6 @@ $TRANSLATIONS = array( "%s shared »%s« with you" => "%s-ek »%s« zurekin partekatu du", "group" => "taldea", -"Category type not provided." => "Kategoria mota ez da zehaztu.", -"No category to add?" => "Ez dago gehitzeko kategoriarik?", -"This category already exists: %s" => "Kategoria hau dagoeneko existitzen da: %s", -"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.", -"No categories selected for deletion." => "Ez da ezabatzeko kategoriarik hautatu.", -"Error removing %s from favorites." => "Errorea gertatu da %s gogokoetatik ezabatzean.", "Sunday" => "Igandea", "Monday" => "Astelehena", "Tuesday" => "Asteartea", @@ -47,12 +39,9 @@ $TRANSLATIONS = array( "Ok" => "Ados", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Ezeztatu", -"The object type is not specified." => "Objetu mota ez dago zehaztuta.", -"Error" => "Errorea", -"The app name is not specified." => "App izena ez dago zehaztuta.", -"The required file {file} is not installed!" => "Beharrezkoa den {file} fitxategia ez dago instalatuta!", "Shared" => "Elkarbanatuta", "Share" => "Elkarbanatu", +"Error" => "Errorea", "Error while sharing" => "Errore bat egon da elkarbanatzean", "Error while unsharing" => "Errore bat egon da elkarbanaketa desegitean", "Error while changing permissions" => "Errore bat egon da baimenak aldatzean", @@ -84,6 +73,9 @@ $TRANSLATIONS = array( "Sending ..." => "Bidaltzen ...", "Email sent" => "Eposta bidalia", "Warning" => "Abisua", +"The object type is not specified." => "Objetu mota ez dago zehaztuta.", +"Delete" => "Ezabatu", +"Add" => "Gehitu", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat ownCloud komunitatearentzako.", "The update was successful. Redirecting you to ownCloud now." => "Eguneraketa ongi egin da. Orain zure ownClouderea berbideratua izango zara.", "%s password reset" => "%s pasahitza berrezarri", @@ -106,8 +98,6 @@ $TRANSLATIONS = array( "Help" => "Laguntza", "Access forbidden" => "Sarrera debekatuta", "Cloud not found" => "Ez da hodeia aurkitu", -"Edit categories" => "Editatu kategoriak", -"Add" => "Gehitu", "Security Warning" => "Segurtasun abisua", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Zure PHP bertsioa NULL Byte erasoak (CVE-2006-7243) mendera dezake.", "Please update your PHP installation to use %s securely." => "Mesedez eguneratu zure PHP instalazioa %s seguru erabiltzeko", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index e173d628f5..a9fc022b45 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -2,14 +2,6 @@ $TRANSLATIONS = array( "%s shared »%s« with you" => "%s به اشتراک گذاشته شده است »%s« توسط شما", "group" => "گروه", -"Category type not provided." => "نوع دسته بندی ارائه نشده است.", -"No category to add?" => "آیا گروه دیگری برای افزودن ندارید", -"This category already exists: %s" => "این دسته هم اکنون وجود دارد: %s", -"Object type not provided." => "نوع شی ارائه نشده است.", -"%s ID not provided." => "شناسه %s ارائه نشده است.", -"Error adding %s to favorites." => "خطای اضافه کردن %s به علاقه مندی ها.", -"No categories selected for deletion." => "هیج دسته ای برای پاک شدن انتخاب نشده است", -"Error removing %s from favorites." => "خطای پاک کردن %s از علاقه مندی ها.", "Sunday" => "یکشنبه", "Monday" => "دوشنبه", "Tuesday" => "سه شنبه", @@ -47,12 +39,9 @@ $TRANSLATIONS = array( "Ok" => "قبول", "_{count} file conflict_::_{count} file conflicts_" => array(""), "Cancel" => "منصرف شدن", -"The object type is not specified." => "نوع شی تعیین نشده است.", -"Error" => "خطا", -"The app name is not specified." => "نام برنامه تعیین نشده است.", -"The required file {file} is not installed!" => "پرونده { پرونده} درخواست شده نصب نشده است !", "Shared" => "اشتراک گذاشته شده", "Share" => "اشتراک‌گذاری", +"Error" => "خطا", "Error while sharing" => "خطا درحال به اشتراک گذاشتن", "Error while unsharing" => "خطا درحال لغو اشتراک", "Error while changing permissions" => "خطا در حال تغییر مجوز", @@ -84,6 +73,9 @@ $TRANSLATIONS = array( "Sending ..." => "درحال ارسال ...", "Email sent" => "ایمیل ارسال شد", "Warning" => "اخطار", +"The object type is not specified." => "نوع شی تعیین نشده است.", +"Delete" => "حذف", +"Add" => "افزودن", "The update was unsuccessful. Please report this issue to the ownCloud community." => "به روز رسانی ناموفق بود. لطفا این خطا را به جامعه ی OwnCloud گزارش نمایید.", "The update was successful. Redirecting you to ownCloud now." => "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud.", "Use the following link to reset your password: {link}" => "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}", @@ -105,8 +97,6 @@ $TRANSLATIONS = array( "Help" => "راه‌نما", "Access forbidden" => "اجازه دسترسی به مناطق ممنوعه را ندارید", "Cloud not found" => "پیدا نشد", -"Edit categories" => "ویرایش گروه", -"Add" => "افزودن", "Security Warning" => "اخطار امنیتی", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "نسخه ی PHP شما در برابر حملات NULL Byte آسیب پذیر است.(CVE-2006-7243)", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "هیچ مولد تصادفی امن در دسترس نیست، لطفا فرمت PHP OpenSSL را فعال نمایید.", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index c6c9f09e1d..85b3ab3a14 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Päivitetään tiedostojen välimuistia, tämä saattaa kestää todella kauan...", "Updated filecache" => "Tiedostojen välimuisti päivitetty", "... %d%% done ..." => "... %d%% valmis ...", -"Category type not provided." => "Luokan tyyppiä ei määritelty.", -"No category to add?" => "Ei lisättävää luokkaa?", -"This category already exists: %s" => "Luokka on jo olemassa: %s", -"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.", "No image or file provided" => "Kuvaa tai tiedostoa ei määritelty", "Unknown filetype" => "Tuntematon tiedostotyyppi", "Invalid image" => "Virhellinen kuva", @@ -61,11 +55,9 @@ $TRANSLATIONS = array( "Continue" => "Jatka", "(all selected)" => "(kaikki valittu)", "({count} selected)" => "({count} valittu)", -"Error" => "Virhe", -"The app name is not specified." => "Sovelluksen nimeä ei ole määritelty.", -"The required file {file} is not installed!" => "Vaadittua tiedostoa {file} ei ole asennettu!", "Shared" => "Jaettu", "Share" => "Jaa", +"Error" => "Virhe", "Error while sharing" => "Virhe jaettaessa", "Error while unsharing" => "Virhe jakoa peruttaessa", "Error while changing permissions" => "Virhe oikeuksia muuttaessa", @@ -98,6 +90,9 @@ $TRANSLATIONS = array( "Sending ..." => "Lähetetään...", "Email sent" => "Sähköposti lähetetty", "Warning" => "Varoitus", +"Delete" => "Poista", +"Add" => "Lisää", +"Edit tags" => "Muokkaa tunnisteita", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Päivitys epäonnistui. Ilmoita ongelmasta ownCloud-yhteisölle.", "The update was successful. Redirecting you to ownCloud now." => "Päivitys onnistui. Selain ohjautuu nyt ownCloudiisi.", "%s password reset" => "%s salasanan nollaus", @@ -117,12 +112,12 @@ $TRANSLATIONS = array( "Apps" => "Sovellukset", "Admin" => "Ylläpitäjä", "Help" => "Ohje", +"Error loading tags" => "Virhe tunnisteita ladattaessa", +"Tag already exists" => "Tunniste on jo olemassa", "Access forbidden" => "Pääsy estetty", "Cloud not found" => "Pilveä ei löydy", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei sinä!\n\n%s jakoi kohteen %s kanssasi.\nTutustu siihen: %s\n\n", "The share will expire on %s.\n\n" => "Jakaminen päättyy %s.\n\n", -"Edit categories" => "Muokkaa luokkia", -"Add" => "Lisää", "Security Warning" => "Turvallisuusvaroitus", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP-asennuksesi on haavoittuvainen NULL Byte -hyökkäykselle (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Päivitä PHP-asennus varmistaaksesi, että %s on turvallinen käyttää.", @@ -146,6 +141,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Automaattinen sisäänkirjautuminen hylättiin!", "If you did not change your password recently, your account may be compromised!" => "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu.", "Please change your password to secure your account again." => "Vaihda salasanasi suojataksesi tilisi uudelleen.", +"Server side authentication failed!" => "Palvelimen puoleinen tunnistautuminen epäonnistui!", +"Please contact your administrator." => "Ota yhteys ylläpitäjään.", "Lost your password?" => "Unohditko salasanasi?", "remember" => "muista", "Log in" => "Kirjaudu sisään", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 83460f4334..82b93172a1 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -1,6 +1,7 @@ "%s partagé »%s« avec vous", +"Couldn't send mail to following users: %s " => "Impossible d'envoyer un mail aux utilisateurs suivant : %s", "group" => "groupe", "Turned on maintenance mode" => "Basculé en mode maintenance", "Turned off maintenance mode" => "Basculé en mode production (non maintenance)", @@ -8,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "En cours de mise à jour de cache de fichiers. Cette opération peut être très longue...", "Updated filecache" => "Cache de fichier mis à jour", "... %d%% done ..." => "... %d%% effectué ...", -"Category type not provided." => "Type de catégorie non spécifié.", -"No category to add?" => "Pas de catégorie à ajouter ?", -"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.", -"No categories selected for deletion." => "Pas de catégorie sélectionnée pour la suppression.", -"Error removing %s from favorites." => "Erreur lors de la suppression de %s des favoris.", "No image or file provided" => "Aucune image ou fichier fourni", "Unknown filetype" => "Type de fichier inconnu", "Invalid image" => "Image invalide", @@ -67,12 +60,9 @@ $TRANSLATIONS = array( "(all selected)" => "(tous sélectionnés)", "({count} selected)" => "({count} sélectionnés)", "Error loading file exists template" => "Erreur de chargement du modèle de fichier existant", -"The object type is not specified." => "Le type d'objet n'est pas spécifié.", -"Error" => "Erreur", -"The app name is not specified." => "Le nom de l'application n'est pas spécifié.", -"The required file {file} is not installed!" => "Le fichier requis {file} n'est pas installé !", "Shared" => "Partagé", "Share" => "Partager", +"Error" => "Erreur", "Error while sharing" => "Erreur lors de la mise en partage", "Error while unsharing" => "Erreur lors de l'annulation du partage", "Error while changing permissions" => "Erreur lors du changement des permissions", @@ -92,6 +82,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Le repartage n'est pas autorisé", "Shared in {item} with {user}" => "Partagé dans {item} avec {user}", "Unshare" => "Ne plus partager", +"notify user by email" => "Prévenir l'utilisateur par couriel", "can edit" => "édition autorisée", "access control" => "contrôle des accès", "create" => "créer", @@ -104,6 +95,9 @@ $TRANSLATIONS = array( "Sending ..." => "En cours d'envoi ...", "Email sent" => "Email envoyé", "Warning" => "Attention", +"The object type is not specified." => "Le type d'objet n'est pas spécifié.", +"Delete" => "Supprimer", +"Add" => "Ajouter", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La mise à jour a échoué. Veuillez signaler ce problème à la communauté ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La mise à jour a réussi. Vous êtes redirigé maintenant vers ownCloud.", "%s password reset" => "Réinitialisation de votre mot de passe %s", @@ -126,8 +120,9 @@ $TRANSLATIONS = array( "Help" => "Aide", "Access forbidden" => "Accès interdit", "Cloud not found" => "Introuvable", -"Edit categories" => "Editer les catégories", -"Add" => "Ajouter", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Bonjour,\n\nJuste pour vous signaler que %s a partagé %s avec vous.\nConsultez-le : %s\n", +"The share will expire on %s.\n\n" => "Le partage expire le %s.\n\n", +"Cheers!" => "Salutations!", "Security Warning" => "Avertissement de sécurité", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Votre version de PHP est vulnérable à l'attaque par caractère NULL (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Veuillez mettre à jour votre installation PHP pour utiliser %s de façon sécurisée.", @@ -146,15 +141,20 @@ $TRANSLATIONS = array( "Database tablespace" => "Tablespaces de la base de données", "Database host" => "Serveur de la base de données", "Finish setup" => "Terminer l'installation", +"Finishing …" => "En cours de finalisation...", "%s is available. Get more information on how to update." => "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour.", "Log out" => "Se déconnecter", "Automatic logon rejected!" => "Connexion automatique rejetée !", "If you did not change your password recently, your account may be compromised!" => "Si vous n'avez pas changé votre mot de passe récemment, votre compte risque d'être compromis !", "Please change your password to secure your account again." => "Veuillez changer votre mot de passe pour sécuriser à nouveau votre compte.", +"Server side authentication failed!" => "L'authentification côté serveur a échoué !", +"Please contact your administrator." => "Veuillez contacter votre administrateur.", "Lost your password?" => "Mot de passe perdu ?", "remember" => "se souvenir de moi", "Log in" => "Connexion", "Alternative Logins" => "Logins alternatifs", +"Hey there,

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

    " => "Bonjour,

    Juste pour vous informer que %s a partagé »%s« avec vous.
    Consultez-le !

    ", +"The share will expire on %s.

    " => "Le partage expirera le %s.

    ", "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." ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 3325a894f4..b864294d59 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -9,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Actualizando o ficheiro da caché, isto pode levar bastante tempo...", "Updated filecache" => "Ficheiro da caché actualizado", "... %d%% done ..." => "... %d%% feito ...", -"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: %s" => "Esta categoría xa existe: %s", -"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.", -"No categories selected for deletion." => "Non se seleccionaron categorías para eliminación.", -"Error removing %s from favorites." => "Produciuse un erro ao eliminar %s dos favoritos.", "No image or file provided" => "Non forneceu ningunha imaxe ou ficheiro", "Unknown filetype" => "Tipo de ficheiro descoñecido", "Invalid image" => "Imaxe incorrecta", @@ -68,12 +60,9 @@ $TRANSLATIONS = array( "(all selected)" => "(todo o seleccionado)", "({count} selected)" => "({count} seleccionados)", "Error loading file exists template" => "Produciuse un erro ao cargar o modelo de ficheiro existente", -"The object type is not specified." => "Non se especificou o tipo de obxecto.", -"Error" => "Erro", -"The app name is not specified." => "Non se especificou o nome do aplicativo.", -"The required file {file} is not installed!" => "Non está instalado o ficheiro {file} que se precisa", "Shared" => "Compartir", "Share" => "Compartir", +"Error" => "Erro", "Error while sharing" => "Produciuse un erro ao compartir", "Error while unsharing" => "Produciuse un erro ao deixar de compartir", "Error while changing permissions" => "Produciuse un erro ao cambiar os permisos", @@ -106,6 +95,12 @@ $TRANSLATIONS = array( "Sending ..." => "Enviando...", "Email sent" => "Correo enviado", "Warning" => "Aviso", +"The object type is not specified." => "Non se especificou o tipo de obxecto.", +"Delete" => "Eliminar", +"Add" => "Engadir", +"Edit tags" => "Editar etiquetas", +"Error loading dialog template: {error}" => "Produciuse un erro ao cargar o modelo do dialogo: {error}", +"No tags selected for deletion." => "Non se seleccionaron etiquetas para borrado.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A actualización non foi satisfactoria, informe deste problema á comunidade de ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "A actualización realizouse correctamente. Redirixíndoo agora á ownCloud.", "%s password reset" => "Restabelecer o contrasinal %s", @@ -126,13 +121,14 @@ $TRANSLATIONS = array( "Apps" => "Aplicativos", "Admin" => "Administración", "Help" => "Axuda", +"Error loading tags" => "Produciuse un erro ao cargar as etiquetas", +"Tag already exists" => "Xa existe a etiqueta", +"Error deleting tag(s)" => "Produciuse un erro ao eliminar a(s) etiqueta(s)", "Access forbidden" => "Acceso denegado", "Cloud not found" => "Nube non atopada", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\n", "The share will expire on %s.\n\n" => "Esta compartición caduca o %s.\n\n", "Cheers!" => "Saúdos!", -"Edit categories" => "Editar as categorías", -"Add" => "Engadir", "Security Warning" => "Aviso de seguranza", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "A súa versión de PHP é vulnerábel a un ataque de byte nulo (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Actualice a instalación de PHP para empregar %s de xeito seguro.", @@ -157,6 +153,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Rexeitouse a entrada automática", "If you did not change your password recently, your account may be compromised!" => "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!", "Please change your password to secure your account again." => "Cambie de novo o seu contrasinal para asegurar a súa conta.", +"Server side authentication failed!" => "A autenticación fracasou do lado do servidor!", +"Please contact your administrator." => "Contacte co administrador.", "Lost your password?" => "Perdeu o contrasinal?", "remember" => "lembrar", "Log in" => "Conectar", diff --git a/core/l10n/he.php b/core/l10n/he.php index 30ef27664e..5b81ec547d 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -2,14 +2,6 @@ $TRANSLATIONS = array( "%s shared »%s« with you" => "%s שיתף/שיתפה איתך את »%s«", "group" => "קבוצה", -"Category type not provided." => "סוג הקטגוריה לא סופק.", -"No category to add?" => "אין קטגוריה להוספה?", -"This category already exists: %s" => "הקטגוריה הבאה כבר קיימת: %s", -"Object type not provided." => "סוג הפריט לא סופק.", -"%s ID not provided." => "מזהה %s לא סופק.", -"Error adding %s to favorites." => "אירעה שגיאה בעת הוספת %s למועדפים.", -"No categories selected for deletion." => "לא נבחרו קטגוריות למחיקה", -"Error removing %s from favorites." => "שגיאה בהסרת %s מהמועדפים.", "Sunday" => "יום ראשון", "Monday" => "יום שני", "Tuesday" => "יום שלישי", @@ -47,12 +39,9 @@ $TRANSLATIONS = array( "Ok" => "בסדר", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "ביטול", -"The object type is not specified." => "סוג הפריט לא צוין.", -"Error" => "שגיאה", -"The app name is not specified." => "שם היישום לא צוין.", -"The required file {file} is not installed!" => "הקובץ הנדרש {file} אינו מותקן!", "Shared" => "שותף", "Share" => "שתף", +"Error" => "שגיאה", "Error while sharing" => "שגיאה במהלך השיתוף", "Error while unsharing" => "שגיאה במהלך ביטול השיתוף", "Error while changing permissions" => "שגיאה במהלך שינוי ההגדרות", @@ -83,6 +72,9 @@ $TRANSLATIONS = array( "Sending ..." => "מתבצעת שליחה ...", "Email sent" => "הודעת הדוא״ל נשלחה", "Warning" => "אזהרה", +"The object type is not specified." => "סוג הפריט לא צוין.", +"Delete" => "מחיקה", +"Add" => "הוספה", "The update was unsuccessful. Please report this issue to the ownCloud community." => "תהליך העדכון לא הושלם בהצלחה. נא דווח את הבעיה בקהילת ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "תהליך העדכון הסתיים בהצלחה. עכשיו מנתב אותך אל ownCloud.", "Use the following link to reset your password: {link}" => "יש להשתמש בקישור הבא כדי לאפס את הססמה שלך: {link}", @@ -103,8 +95,6 @@ $TRANSLATIONS = array( "Help" => "עזרה", "Access forbidden" => "הגישה נחסמה", "Cloud not found" => "ענן לא נמצא", -"Edit categories" => "ערוך קטגוריות", -"Add" => "הוספה", "Security Warning" => "אזהרת אבטחה", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "גרסת ה־PHP פגיעה בפני התקפת בית NULL/ריק (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "נא לעדכן את התקנת ה-PHP שלך כדי להשתמש ב-%s בצורה מאובטחת.", diff --git a/core/l10n/hi.php b/core/l10n/hi.php index ec9381c787..c8bfaac926 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -1,8 +1,5 @@ "कैटेगरी प्रकार उपलब्ध नहीं है", -"This category already exists: %s" => "यह कैटेगरी पहले से ही मौजूद है: %s", -"Object type not provided." => "ऑब्जेक्ट प्रकार नहीं दिया हुआ", "Sunday" => "रविवार", "Monday" => "सोमवार", "Tuesday" => "मंगलवार", @@ -28,8 +25,8 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), -"Error" => "त्रुटि", "Share" => "साझा करें", +"Error" => "त्रुटि", "Share with" => "के साथ साझा", "Password" => "पासवर्ड", "Send" => "भेजें", @@ -37,6 +34,7 @@ $TRANSLATIONS = array( "Sending ..." => "भेजा जा रहा है", "Email sent" => "ईमेल भेज दिया गया है ", "Warning" => "चेतावनी ", +"Add" => "डाले", "Use the following link to reset your password: {link}" => "आगे दिये गये लिंक का उपयोग पासवर्ड बदलने के लिये किजीये: {link}", "You will receive a link to reset your password via Email." => "पासवर्ड बदलने कि लिंक आपको ई-मेल द्वारा भेजी जायेगी|", "Username" => "प्रयोक्ता का नाम", @@ -47,7 +45,6 @@ $TRANSLATIONS = array( "Apps" => "Apps", "Help" => "सहयोग", "Cloud not found" => "क्लौड नहीं मिला ", -"Add" => "डाले", "Security Warning" => "सुरक्षा चेतावनी ", "Create an admin account" => "व्यवस्थापक खाता बनाएँ", "Advanced" => "उन्नत", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 7fa81db8a2..4278dfa7b0 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -1,7 +1,5 @@ "Nemate kategorija koje možete dodati?", -"No categories selected for deletion." => "Niti jedna kategorija nije odabrana za brisanje.", "Sunday" => "nedelja", "Monday" => "ponedeljak", "Tuesday" => "utorak", @@ -39,8 +37,8 @@ $TRANSLATIONS = array( "Ok" => "U redu", "_{count} file conflict_::_{count} file conflicts_" => array("","",""), "Cancel" => "Odustani", -"Error" => "Greška", "Share" => "Podijeli", +"Error" => "Greška", "Error while sharing" => "Greška prilikom djeljenja", "Error while unsharing" => "Greška prilikom isključivanja djeljenja", "Error while changing permissions" => "Greška prilikom promjena prava", @@ -63,6 +61,8 @@ $TRANSLATIONS = array( "Password protected" => "Zaštita lozinkom", "Error unsetting expiration date" => "Greška prilikom brisanja datuma isteka", "Error setting expiration date" => "Greška prilikom postavljanja datuma isteka", +"Delete" => "Obriši", +"Add" => "Dodaj", "Use the following link to reset your password: {link}" => "Koristite ovaj link da biste poništili lozinku: {link}", "You will receive a link to reset your password via Email." => "Primit ćete link kako biste poništili zaporku putem e-maila.", "Username" => "Korisničko ime", @@ -78,8 +78,6 @@ $TRANSLATIONS = array( "Help" => "Pomoć", "Access forbidden" => "Pristup zabranjen", "Cloud not found" => "Cloud nije pronađen", -"Edit categories" => "Uredi kategorije", -"Add" => "Dodaj", "Create an admin account" => "Stvori administratorski račun", "Advanced" => "Napredno", "Data folder" => "Mapa baze podataka", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 2cc473a9c0..f2d9d1ba22 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -8,14 +8,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "A filecache frissítése folyamatban, ez a folyamat hosszabb ideig is eltarthat...", "Updated filecache" => "Filecache frissítve", "... %d%% done ..." => "... %d%% kész ...", -"Category type not provided." => "Nincs megadva a kategória típusa.", -"No category to add?" => "Nincs hozzáadandó kategória?", -"This category already exists: %s" => "Ez a kategória már létezik: %s", -"Object type not provided." => "Az objektum típusa nincs megadva.", -"%s ID not provided." => "%s ID nincs megadva.", -"Error adding %s to favorites." => "Nem sikerült a kedvencekhez adni ezt: %s", -"No categories selected for deletion." => "Nincs törlésre jelölt kategória", -"Error removing %s from favorites." => "Nem sikerült a kedvencekből törölni ezt: %s", "No image or file provided" => "Nincs kép vagy file megadva", "Unknown filetype" => "Ismeretlen file tipús", "Invalid image" => "Hibás kép", @@ -67,12 +59,9 @@ $TRANSLATIONS = array( "(all selected)" => "(all selected)", "({count} selected)" => "({count} kiválasztva)", "Error loading file exists template" => "Hiba a létező sablon betöltésekor", -"The object type is not specified." => "Az objektum típusa nincs megadva.", -"Error" => "Hiba", -"The app name is not specified." => "Az alkalmazás neve nincs megadva.", -"The required file {file} is not installed!" => "A szükséges fájl: {file} nincs telepítve!", "Shared" => "Megosztott", "Share" => "Megosztás", +"Error" => "Hiba", "Error while sharing" => "Nem sikerült létrehozni a megosztást", "Error while unsharing" => "Nem sikerült visszavonni a megosztást", "Error while changing permissions" => "Nem sikerült módosítani a jogosultságokat", @@ -104,6 +93,9 @@ $TRANSLATIONS = array( "Sending ..." => "Küldés ...", "Email sent" => "Az emailt elküldtük", "Warning" => "Figyelmeztetés", +"The object type is not specified." => "Az objektum típusa nincs megadva.", +"Delete" => "Törlés", +"Add" => "Hozzáadás", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A frissítés nem sikerült. Kérem értesítse erről a problémáról az ownCloud közösséget.", "The update was successful. Redirecting you to ownCloud now." => "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz.", "%s password reset" => "%s jelszó visszaállítás", @@ -126,8 +118,6 @@ $TRANSLATIONS = array( "Help" => "Súgó", "Access forbidden" => "A hozzáférés nem engedélyezett", "Cloud not found" => "A felhő nem található", -"Edit categories" => "Kategóriák szerkesztése", -"Add" => "Hozzáadás", "Security Warning" => "Biztonsági figyelmeztetés", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Az Ön PHP verziója sebezhető a NULL bájtos támadással szemben (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Kérjük frissítse a telepített PHP csomagjait, hogy biztonságos legyen az %s szolgáltatása.", diff --git a/core/l10n/hy.php b/core/l10n/hy.php index d2b68819c7..29df048fd9 100644 --- a/core/l10n/hy.php +++ b/core/l10n/hy.php @@ -23,6 +23,7 @@ $TRANSLATIONS = array( "_%n hour ago_::_%n hours ago_" => array("",""), "_%n day ago_::_%n days ago_" => array("",""), "_%n month ago_::_%n months ago_" => array("",""), -"_{count} file conflict_::_{count} file conflicts_" => array("","") +"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Delete" => "Ջնջել" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ia.php b/core/l10n/ia.php index 48d2588c00..fce101939e 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -26,10 +26,12 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Cancellar", -"Error" => "Error", "Share" => "Compartir", +"Error" => "Error", "Password" => "Contrasigno", "Send" => "Invia", +"Delete" => "Deler", +"Add" => "Adder", "Username" => "Nomine de usator", "Request reset" => "Requestar reinitialisation", "Your password was reset" => "Tu contrasigno esseva reinitialisate", @@ -43,8 +45,6 @@ $TRANSLATIONS = array( "Help" => "Adjuta", "Access forbidden" => "Accesso prohibite", "Cloud not found" => "Nube non trovate", -"Edit categories" => "Modificar categorias", -"Add" => "Adder", "Create an admin account" => "Crear un conto de administration", "Advanced" => "Avantiate", "Data folder" => "Dossier de datos", diff --git a/core/l10n/id.php b/core/l10n/id.php index 2b987eecd8..d6ec5f0191 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -1,14 +1,6 @@ "grup", -"Category type not provided." => "Tipe kategori tidak diberikan.", -"No category to add?" => "Tidak ada kategori yang akan ditambahkan?", -"This category already exists: %s" => "Kategori ini sudah ada: %s", -"Object type not provided." => "Tipe objek tidak diberikan.", -"%s ID not provided." => "ID %s tidak diberikan.", -"Error adding %s to favorites." => "Galat ketika menambah %s ke favorit", -"No categories selected for deletion." => "Tidak ada kategori terpilih untuk dihapus.", -"Error removing %s from favorites." => "Galat ketika menghapus %s dari favorit", "Sunday" => "Minggu", "Monday" => "Senin", "Tuesday" => "Selasa", @@ -46,12 +38,9 @@ $TRANSLATIONS = array( "Ok" => "Oke", "_{count} file conflict_::_{count} file conflicts_" => array(""), "Cancel" => "Batal", -"The object type is not specified." => "Tipe objek tidak ditentukan.", -"Error" => "Galat", -"The app name is not specified." => "Nama aplikasi tidak ditentukan.", -"The required file {file} is not installed!" => "Berkas {file} yang dibutuhkan tidak terpasang!", "Shared" => "Dibagikan", "Share" => "Bagikan", +"Error" => "Galat", "Error while sharing" => "Galat ketika membagikan", "Error while unsharing" => "Galat ketika membatalkan pembagian", "Error while changing permissions" => "Galat ketika mengubah izin", @@ -82,6 +71,9 @@ $TRANSLATIONS = array( "Sending ..." => "Mengirim ...", "Email sent" => "Email terkirim", "Warning" => "Peringatan", +"The object type is not specified." => "Tipe objek tidak ditentukan.", +"Delete" => "Hapus", +"Add" => "Tambah", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Pembaruan gagal. Silakan laporkan masalah ini ke komunitas ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud.", "Use the following link to reset your password: {link}" => "Gunakan tautan berikut untuk menyetel ulang sandi Anda: {link}", @@ -99,8 +91,6 @@ $TRANSLATIONS = array( "Help" => "Bantuan", "Access forbidden" => "Akses ditolak", "Cloud not found" => "Cloud tidak ditemukan", -"Edit categories" => "Edit kategori", -"Add" => "Tambah", "Security Warning" => "Peringatan Keamanan", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Versi PHP Anda rentan terhadap serangan NULL Byte (CVE-2006-7243)", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Generator acak yang aman tidak tersedia, silakan aktifkan ekstensi OpenSSL pada PHP.", diff --git a/core/l10n/is.php b/core/l10n/is.php index f72b7290b8..0de5568aa1 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -1,12 +1,5 @@ "Flokkur ekki gefin", -"No category to add?" => "Enginn flokkur til að bæta við?", -"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.", -"No categories selected for deletion." => "Enginn flokkur valinn til eyðingar.", -"Error removing %s from favorites." => "Villa við að fjarlægja %s úr eftirlæti.", "Sunday" => "Sunnudagur", "Monday" => "Mánudagur", "Tuesday" => "Þriðjudagur", @@ -44,12 +37,9 @@ $TRANSLATIONS = array( "Ok" => "Í lagi", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Hætta við", -"The object type is not specified." => "Tegund ekki tilgreind", -"Error" => "Villa", -"The app name is not specified." => "Nafn forrits ekki tilgreint", -"The required file {file} is not installed!" => "Umbeðina skráin {file} ekki tiltæk!", "Shared" => "Deilt", "Share" => "Deila", +"Error" => "Villa", "Error while sharing" => "Villa við deilingu", "Error while unsharing" => "Villa við að hætta deilingu", "Error while changing permissions" => "Villa við að breyta aðgangsheimildum", @@ -80,6 +70,9 @@ $TRANSLATIONS = array( "Sending ..." => "Sendi ...", "Email sent" => "Tölvupóstur sendur", "Warning" => "Aðvörun", +"The object type is not specified." => "Tegund ekki tilgreind", +"Delete" => "Eyða", +"Add" => "Bæta við", "The update was successful. Redirecting you to ownCloud now." => "Uppfærslan heppnaðist. Beini þér til ownCloud nú.", "Use the following link to reset your password: {link}" => "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}", "You will receive a link to reset your password via Email." => "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið.", @@ -96,8 +89,6 @@ $TRANSLATIONS = array( "Help" => "Hjálp", "Access forbidden" => "Aðgangur bannaður", "Cloud not found" => "Ský finnst ekki", -"Edit categories" => "Breyta flokkum", -"Add" => "Bæta við", "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.", diff --git a/core/l10n/it.php b/core/l10n/it.php index 0b2d3768b0..1cb1a39c74 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -9,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Aggiornamento della cache dei file in corso, potrebbe richiedere molto tempo...", "Updated filecache" => "Cache dei file aggiornata", "... %d%% done ..." => "... %d%% completato ...", -"Category type not provided." => "Tipo di categoria non fornito.", -"No category to add?" => "Nessuna categoria da aggiungere?", -"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.", -"No categories selected for deletion." => "Nessuna categoria selezionata per l'eliminazione.", -"Error removing %s from favorites." => "Errore durante la rimozione di %s dai preferiti.", "No image or file provided" => "Non è stata fornita alcun immagine o file", "Unknown filetype" => "Tipo di file sconosciuto", "Invalid image" => "Immagine non valida", @@ -68,12 +60,9 @@ $TRANSLATIONS = array( "(all selected)" => "(tutti i selezionati)", "({count} selected)" => "({count} selezionati)", "Error loading file exists template" => "Errore durante il caricamento del modello del file esistente", -"The object type is not specified." => "Il tipo di oggetto non è specificato.", -"Error" => "Errore", -"The app name is not specified." => "Il nome dell'applicazione non è specificato.", -"The required file {file} is not installed!" => "Il file richiesto {file} non è installato!", "Shared" => "Condivisi", "Share" => "Condividi", +"Error" => "Errore", "Error while sharing" => "Errore durante la condivisione", "Error while unsharing" => "Errore durante la rimozione della condivisione", "Error while changing permissions" => "Errore durante la modifica dei permessi", @@ -106,6 +95,9 @@ $TRANSLATIONS = array( "Sending ..." => "Invio in corso...", "Email sent" => "Messaggio inviato", "Warning" => "Avviso", +"The object type is not specified." => "Il tipo di oggetto non è specificato.", +"Delete" => "Elimina", +"Add" => "Aggiungi", "The update was unsuccessful. Please report this issue to the ownCloud community." => "L'aggiornamento non è riuscito. Segnala il problema alla comunità di ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "L'aggiornamento è stato effettuato correttamente. Stai per essere reindirizzato a ownCloud.", "%s password reset" => "Ripristino password di %s", @@ -131,8 +123,6 @@ $TRANSLATIONS = array( "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ciao,\n\nvolevo informarti che %s ha condiviso %s con te.\nVedi: %s\n\n", "The share will expire on %s.\n\n" => "La condivisione scadrà il %s.\n\n", "Cheers!" => "Saluti!", -"Edit categories" => "Modifica categorie", -"Add" => "Aggiungi", "Security Warning" => "Avviso di sicurezza", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La tua versione di PHP è vulnerabile all'attacco NULL Byte (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Aggiorna la tua installazione di PHP per utilizzare %s in sicurezza.", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index bf8313f717..b0c519e3a1 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -1,6 +1,7 @@ "%sが あなたと »%s«を共有しました", +"Couldn't send mail to following users: %s " => "次のユーザにメールを送信できませんでした: %s", "group" => "グループ", "Turned on maintenance mode" => "メンテナンスモードがオンになりました", "Turned off maintenance mode" => "メンテナンスモードがオフになりました", @@ -8,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "ファイルキャッシュを更新しています、しばらく掛かる恐れがあります...", "Updated filecache" => "ファイルキャッシュ更新完了", "... %d%% done ..." => "... %d%% 完了 ...", -"Category type not provided." => "カテゴリタイプは提供されていません。", -"No category to add?" => "追加するカテゴリはありませんか?", -"This category already exists: %s" => "このカテゴリはすでに存在します: %s", -"Object type not provided." => "オブジェクトタイプは提供されていません。", -"%s ID not provided." => "%s ID は提供されていません。", -"Error adding %s to favorites." => "お気に入りに %s を追加エラー", -"No categories selected for deletion." => "削除するカテゴリが選択されていません。", -"Error removing %s from favorites." => "お気に入りから %s の削除エラー", "No image or file provided" => "画像もしくはファイルが提供されていません", "Unknown filetype" => "不明なファイルタイプ", "Invalid image" => "無効な画像", @@ -67,12 +60,9 @@ $TRANSLATIONS = array( "(all selected)" => "(全て選択)", "({count} selected)" => "({count} 選択)", "Error loading file exists template" => "既存ファイルのテンプレートの読み込みエラー", -"The object type is not specified." => "オブジェクタイプが指定されていません。", -"Error" => "エラー", -"The app name is not specified." => "アプリ名がしていされていません。", -"The required file {file} is not installed!" => "必要なファイル {file} がインストールされていません!", "Shared" => "共有中", "Share" => "共有", +"Error" => "エラー", "Error while sharing" => "共有でエラー発生", "Error while unsharing" => "共有解除でエラー発生", "Error while changing permissions" => "権限変更でエラー発生", @@ -92,6 +82,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "再共有は許可されていません", "Shared in {item} with {user}" => "{item} 内で {user} と共有中", "Unshare" => "共有解除", +"notify user by email" => "ユーザにメールで通知", "can edit" => "編集可能", "access control" => "アクセス権限", "create" => "作成", @@ -104,6 +95,12 @@ $TRANSLATIONS = array( "Sending ..." => "送信中...", "Email sent" => "メールを送信しました", "Warning" => "警告", +"The object type is not specified." => "オブジェクタイプが指定されていません。", +"Enter new" => "新規に入力", +"Delete" => "削除", +"Add" => "追加", +"Edit tags" => "タグを編集", +"No tags selected for deletion." => "削除するタグが選択されていません。", "The update was unsuccessful. Please report this issue to the ownCloud community." => "更新に成功しました。この問題を ownCloud community にレポートしてください。", "The update was successful. Redirecting you to ownCloud now." => "更新に成功しました。今すぐownCloudにリダイレクトします。", "%s password reset" => "%s パスワードリセット", @@ -124,10 +121,14 @@ $TRANSLATIONS = array( "Apps" => "アプリ", "Admin" => "管理", "Help" => "ヘルプ", +"Error loading tags" => "タグの読み込みエラー", +"Tag already exists" => "タグはすでに存在します", +"Error deleting tag(s)" => "タグの削除エラー", +"Error tagging" => "タグの付与エラー", +"Error untagging" => "タグの解除エラー", "Access forbidden" => "アクセスが禁止されています", "Cloud not found" => "見つかりません", -"Edit categories" => "カテゴリを編集", -"Add" => "追加", +"The share will expire on %s.\n\n" => "共有は %s で有効期限が切れます。\n\n", "Security Warning" => "セキュリティ警告", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。", "Please update your PHP installation to use %s securely." => "%s を安全に利用する為に インストールされているPHPをアップデートしてください。", @@ -146,15 +147,19 @@ $TRANSLATIONS = array( "Database tablespace" => "データベースの表領域", "Database host" => "データベースのホスト名", "Finish setup" => "セットアップを完了します", +"Finishing …" => "終了しています ...", "%s is available. Get more information on how to update." => "%s が利用可能です。更新方法に関してさらに情報を取得して下さい。", "Log out" => "ログアウト", "Automatic logon rejected!" => "自動ログインは拒否されました!", "If you did not change your password recently, your account may be compromised!" => "最近パスワードを変更していない場合、あなたのアカウントは危険にさらされているかもしれません。", "Please change your password to secure your account again." => "アカウント保護の為、パスワードを再度の変更をお願いいたします。", +"Server side authentication failed!" => "サーバサイドの認証に失敗しました!", +"Please contact your administrator." => "管理者に問い合わせてください。", "Lost your password?" => "パスワードを忘れましたか?", "remember" => "パスワードを記憶する", "Log in" => "ログイン", "Alternative Logins" => "代替ログイン", +"The share will expire on %s.

    " => "共有は %s で有効期限が切れます。

    ", "Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index a32960e1a2..4e38aeede1 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -1,14 +1,6 @@ "ჯგუფი", -"Category type not provided." => "კატეგორიის ტიპი არ არის განხილული.", -"No category to add?" => "არ არის კატეგორია დასამატებლად?", -"This category already exists: %s" => "კატეგორია უკვე არსებობს: %s", -"Object type not provided." => "ობიექტის ტიპი არ არის განხილული.", -"%s ID not provided." => "%s ID არ არის განხილული", -"Error adding %s to favorites." => "შეცდომა %s–ის ფევორიტებში დამატების დროს.", -"No categories selected for deletion." => "სარედაქტირებელი კატეგორია არ არის არჩეული ", -"Error removing %s from favorites." => "შეცდომა %s–ის ფევორიტებიდან წაშლის დროს.", "Sunday" => "კვირა", "Monday" => "ორშაბათი", "Tuesday" => "სამშაბათი", @@ -46,12 +38,9 @@ $TRANSLATIONS = array( "Ok" => "დიახ", "_{count} file conflict_::_{count} file conflicts_" => array(""), "Cancel" => "უარყოფა", -"The object type is not specified." => "ობიექტის ტიპი არ არის მითითებული.", -"Error" => "შეცდომა", -"The app name is not specified." => "აპლიკაციის სახელი არ არის მითითებული.", -"The required file {file} is not installed!" => "მოთხოვნილი ფაილი {file} არ არის დაინსტალირებული.", "Shared" => "გაზიარებული", "Share" => "გაზიარება", +"Error" => "შეცდომა", "Error while sharing" => "შეცდომა გაზიარების დროს", "Error while unsharing" => "შეცდომა გაზიარების გაუქმების დროს", "Error while changing permissions" => "შეცდომა დაშვების ცვლილების დროს", @@ -82,6 +71,9 @@ $TRANSLATIONS = array( "Sending ..." => "გაგზავნა ....", "Email sent" => "იმეილი გაიგზავნა", "Warning" => "გაფრთხილება", +"The object type is not specified." => "ობიექტის ტიპი არ არის მითითებული.", +"Delete" => "წაშლა", +"Add" => "დამატება", "The update was unsuccessful. Please report this issue to the ownCloud community." => "განახლება ვერ განხორციელდა. გთხოვთ შეგვატყობინოთ ამ პრობლემის შესახებ აქ: ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე.", "Use the following link to reset your password: {link}" => "გამოიყენე შემდეგი ლინკი პაროლის შესაცვლელად: {link}", @@ -99,8 +91,6 @@ $TRANSLATIONS = array( "Help" => "დახმარება", "Access forbidden" => "წვდომა აკრძალულია", "Cloud not found" => "ღრუბელი არ არსებობს", -"Edit categories" => "კატეგორიების რედაქტირება", -"Add" => "დამატება", "Security Warning" => "უსაფრთხოების გაფრთხილება", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "თქვენი PHP ვერსია შეიცავს საფრთხეს NULL Byte შეტევებისთვის (CVE-2006-7243)", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "შემთხვევითი სიმბოლოების გენერატორი არ არსებობს, გთხოვთ ჩართოთ PHP OpenSSL გაფართოება.", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 92c7b96f01..9eccf12d08 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -1,14 +1,6 @@ "그룹", -"Category type not provided." => "분류 형식이 제공되지 않았습니다.", -"No category to add?" => "추가할 분류가 없습니까?", -"This category already exists: %s" => "분류가 이미 존재합니다: %s", -"Object type not provided." => "객체 형식이 제공되지 않았습니다.", -"%s ID not provided." => "%s ID가 제공되지 않았습니다.", -"Error adding %s to favorites." => "책갈피에 %s을(를) 추가할 수 없었습니다.", -"No categories selected for deletion." => "삭제할 분류를 선택하지 않았습니다. ", -"Error removing %s from favorites." => "책갈피에서 %s을(를) 삭제할 수 없었습니다.", "Sunday" => "일요일", "Monday" => "월요일", "Tuesday" => "화요일", @@ -46,12 +38,9 @@ $TRANSLATIONS = array( "Ok" => "승락", "_{count} file conflict_::_{count} file conflicts_" => array(""), "Cancel" => "취소", -"The object type is not specified." => "객체 유형이 지정되지 않았습니다.", -"Error" => "오류", -"The app name is not specified." => "앱 이름이 지정되지 않았습니다.", -"The required file {file} is not installed!" => "필요한 파일 {file}이(가) 설치되지 않았습니다!", "Shared" => "공유됨", "Share" => "공유", +"Error" => "오류", "Error while sharing" => "공유하는 중 오류 발생", "Error while unsharing" => "공유 해제하는 중 오류 발생", "Error while changing permissions" => "권한 변경하는 중 오류 발생", @@ -83,6 +72,9 @@ $TRANSLATIONS = array( "Sending ..." => "전송 중...", "Email sent" => "이메일 발송됨", "Warning" => "경고", +"The object type is not specified." => "객체 유형이 지정되지 않았습니다.", +"Delete" => "삭제", +"Add" => "추가", "The update was unsuccessful. Please report this issue to the ownCloud community." => "업데이트가 실패하였습니다. 이 문제를 ownCloud 커뮤니티에 보고해 주십시오.", "The update was successful. Redirecting you to ownCloud now." => "업데이트가 성공하였습니다. ownCloud로 돌아갑니다.", "Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}", @@ -102,8 +94,6 @@ $TRANSLATIONS = array( "Help" => "도움말", "Access forbidden" => "접근 금지됨", "Cloud not found" => "클라우드를 찾을 수 없습니다", -"Edit categories" => "분류 수정", -"Add" => "추가", "Security Warning" => "보안 경고", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "사용 중인 PHP 버전이 NULL 바이트 공격에 취약합니다 (CVE-2006-7243)", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "안전한 난수 생성기를 사용할 수 없습니다. PHP의 OpenSSL 확장을 활성화해 주십시오.", diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php index e11cf0b5a9..b809c64317 100644 --- a/core/l10n/ku_IQ.php +++ b/core/l10n/ku_IQ.php @@ -6,10 +6,11 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), -"Error" => "هه‌ڵه", "Share" => "هاوبەشی کردن", +"Error" => "هه‌ڵه", "Password" => "وشەی تێپەربو", "Warning" => "ئاگاداری", +"Add" => "زیادکردن", "Username" => "ناوی به‌کارهێنه‌ر", "New password" => "وشەی نهێنی نوێ", "Reset password" => "دووباره‌ كردنه‌وه‌ی وشه‌ی نهێنی", @@ -18,7 +19,6 @@ $TRANSLATIONS = array( "Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی", "Help" => "یارمەتی", "Cloud not found" => "هیچ نه‌دۆزرایه‌وه‌", -"Add" => "زیادکردن", "Advanced" => "هه‌ڵبژاردنی پیشكه‌وتوو", "Data folder" => "زانیاری فۆڵده‌ر", "Database user" => "به‌كارهێنه‌ری داتابه‌یس", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 17e4345ad5..faebdda63d 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -2,14 +2,6 @@ $TRANSLATIONS = array( "%s shared »%s« with you" => "Den/D' %s huet »%s« mat dir gedeelt", "group" => "Grupp", -"Category type not provided." => "Typ vun der Kategorie net uginn.", -"No category to add?" => "Keng Kategorie fir bäizesetzen?", -"This category already exists: %s" => "Dës Kategorie existéiert schon: %s", -"Object type not provided." => "Typ vum Objet net uginn.", -"%s ID not provided." => "%s ID net uginn.", -"Error adding %s to favorites." => "Feeler beim dobäisetze vun %s bei d'Favoritten.", -"No categories selected for deletion." => "Keng Kategorien ausgewielt fir ze läschen.", -"Error removing %s from favorites." => "Feeler beim läsche vun %s aus de Favoritten.", "Sunday" => "Sonndeg", "Monday" => "Méindeg", "Tuesday" => "Dënschdeg", @@ -47,12 +39,9 @@ $TRANSLATIONS = array( "Ok" => "OK", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Ofbriechen", -"The object type is not specified." => "Den Typ vum Object ass net uginn.", -"Error" => "Feeler", -"The app name is not specified." => "Den Numm vun der App ass net uginn.", -"The required file {file} is not installed!" => "De benéidegte Fichier {file} ass net installéiert!", "Shared" => "Gedeelt", "Share" => "Deelen", +"Error" => "Feeler", "Error while sharing" => "Feeler beim Deelen", "Error while unsharing" => "Feeler beim Annuléiere vum Deelen", "Error while changing permissions" => "Feeler beim Ännere vun de Rechter", @@ -84,6 +73,9 @@ $TRANSLATIONS = array( "Sending ..." => "Gëtt geschéckt...", "Email sent" => "Email geschéckt", "Warning" => "Warnung", +"The object type is not specified." => "Den Typ vum Object ass net uginn.", +"Delete" => "Läschen", +"Add" => "Dobäisetzen", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Den Update war net erfollegräich. Mell dëse Problem w.e.gl derownCloud-Community.", "The update was successful. Redirecting you to ownCloud now." => "Den Update war erfollegräich. Du gëss elo bei d'ownCloud ëmgeleet.", "Use the following link to reset your password: {link}" => "Benotz folgende Link fir däi Passwuert zréckzesetzen: {link}", @@ -105,8 +97,6 @@ $TRANSLATIONS = array( "Help" => "Hëllef", "Access forbidden" => "Zougrëff net erlaabt", "Cloud not found" => "Cloud net fonnt", -"Edit categories" => "Kategorien editéieren", -"Add" => "Dobäisetzen", "Security Warning" => "Sécherheets-Warnung", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Deng PHP-Versioun ass verwonnbar duerch d'NULL-Byte-Attack (CVE-2006-7243)", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Et ass kee sécheren Zoufallsgenerator verfügbar. Aktivéier w.e.gl d'OpenSSL-Erweiderung vu PHP.", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index f25b8ab762..81e3be95e0 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -9,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Atnaujinama failų talpykla, tai gali užtrukti labai ilgai...", "Updated filecache" => "Atnaujinta failų talpykla", "... %d%% done ..." => "... %d%% atlikta ...", -"Category type not provided." => "Kategorija nenurodyta.", -"No category to add?" => "Nepridėsite jokios kategorijos?", -"This category already exists: %s" => "Ši kategorija jau egzistuoja: %s", -"Object type not provided." => "Objekto tipas nenurodytas.", -"%s ID not provided." => "%s ID nenurodytas.", -"Error adding %s to favorites." => "Klaida perkeliant %s į jūsų mėgstamiausius.", -"No categories selected for deletion." => "Trynimui nepasirinkta jokia kategorija.", -"Error removing %s from favorites." => "Klaida ištrinant %s iš jūsų mėgstamiausius.", "No image or file provided" => "Nenurodytas paveikslėlis ar failas", "Unknown filetype" => "Nežinomas failo tipas", "Invalid image" => "Netinkamas paveikslėlis", @@ -68,12 +60,9 @@ $TRANSLATIONS = array( "(all selected)" => "(visi pažymėti)", "({count} selected)" => "({count} pažymėtų)", "Error loading file exists template" => "Klaida įkeliant esančių failų ruošinį", -"The object type is not specified." => "Objekto tipas nenurodytas.", -"Error" => "Klaida", -"The app name is not specified." => "Nenurodytas programos pavadinimas.", -"The required file {file} is not installed!" => "Reikalingas {file} failas nėra įrašytas!", "Shared" => "Dalinamasi", "Share" => "Dalintis", +"Error" => "Klaida", "Error while sharing" => "Klaida, dalijimosi metu", "Error while unsharing" => "Klaida, kai atšaukiamas dalijimasis", "Error while changing permissions" => "Klaida, keičiant privilegijas", @@ -106,6 +95,9 @@ $TRANSLATIONS = array( "Sending ..." => "Siunčiama...", "Email sent" => "Laiškas išsiųstas", "Warning" => "Įspėjimas", +"The object type is not specified." => "Objekto tipas nenurodytas.", +"Delete" => "Ištrinti", +"Add" => "Pridėti", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the ownCloud bendruomenei.", "The update was successful. Redirecting you to ownCloud now." => "Atnaujinimas buvo sėkmingas. Nukreipiame į jūsų ownCloud.", "%s password reset" => "%s slaptažodžio atnaujinimas", @@ -131,8 +123,6 @@ $TRANSLATIONS = array( "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėti tai: %s\n", "The share will expire on %s.\n\n" => "Bendrinimo laikas baigsis %s.\n", "Cheers!" => "Sveikinimai!", -"Edit categories" => "Redaguoti kategorijas", -"Add" => "Pridėti", "Security Warning" => "Saugumo pranešimas", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Jūsų PHP versija yra pažeidžiama prieš NULL Byte ataką (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Prašome atnaujinti savo PHP, kad saugiai naudoti %s.", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 998a03c5dd..647ad2bca3 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -2,14 +2,6 @@ $TRANSLATIONS = array( "%s shared »%s« with you" => "%s kopīgots »%s« ar jums", "group" => "grupa", -"Category type not provided." => "Kategorijas tips nav norādīts.", -"No category to add?" => "Nav kategoriju, ko pievienot?", -"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.", -"No categories selected for deletion." => "Neviena kategorija nav izvēlēta dzēšanai.", -"Error removing %s from favorites." => "Kļūda, izņemot %s no izlases.", "Sunday" => "Svētdiena", "Monday" => "Pirmdiena", "Tuesday" => "Otrdiena", @@ -47,12 +39,9 @@ $TRANSLATIONS = array( "Ok" => "Labi", "_{count} file conflict_::_{count} file conflicts_" => array("","",""), "Cancel" => "Atcelt", -"The object type is not specified." => "Nav norādīts objekta tips.", -"Error" => "Kļūda", -"The app name is not specified." => "Nav norādīts lietotnes nosaukums.", -"The required file {file} is not installed!" => "Pieprasītā datne {file} nav instalēta!", "Shared" => "Kopīgs", "Share" => "Dalīties", +"Error" => "Kļūda", "Error while sharing" => "Kļūda, daloties", "Error while unsharing" => "Kļūda, beidzot dalīties", "Error while changing permissions" => "Kļūda, mainot atļaujas", @@ -84,6 +73,9 @@ $TRANSLATIONS = array( "Sending ..." => "Sūta...", "Email sent" => "Vēstule nosūtīta", "Warning" => "Brīdinājums", +"The object type is not specified." => "Nav norādīts objekta tips.", +"Delete" => "Dzēst", +"Add" => "Pievienot", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Atjaunināšana beidzās nesekmīgi. Lūdzu, ziņojiet par šo problēmu ownCloud kopienai.", "The update was successful. Redirecting you to ownCloud now." => "Atjaunināšana beidzās sekmīgi. Tagad pārsūta jūs uz ownCloud.", "%s password reset" => "%s paroles maiņa", @@ -106,8 +98,6 @@ $TRANSLATIONS = array( "Help" => "Palīdzība", "Access forbidden" => "Pieeja ir liegta", "Cloud not found" => "Mākonis netika atrasts", -"Edit categories" => "Rediģēt kategoriju", -"Add" => "Pievienot", "Security Warning" => "Brīdinājums par drošību", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Jūsu PHP ir ievainojamība pret NULL Byte uzbrukumiem (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Lūdzu atjauniniet PHP instalāciju lai varētu droši izmantot %s.", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index dffd20ab3b..35815d145b 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -1,13 +1,9 @@ "група", -"Category type not provided." => "Не беше доставен тип на категорија.", -"No category to add?" => "Нема категорија да се додаде?", -"Object type not provided." => "Не беше доставен тип на објект.", -"%s ID not provided." => "%s ID не беше доставено.", -"Error adding %s to favorites." => "Грешка при додавање %s во омилени.", -"No categories selected for deletion." => "Не е одбрана категорија за бришење.", -"Error removing %s from favorites." => "Грешка при бришење на %s од омилени.", +"Updated database" => "Базата е надградена", +"Updated filecache" => "Кешот е надграден", +"Invalid image" => "Невалидна фотографија", "Sunday" => "Недела", "Monday" => "Понеделник", "Tuesday" => "Вторник", @@ -45,11 +41,13 @@ $TRANSLATIONS = array( "Ok" => "Во ред", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Откажи", -"The object type is not specified." => "Не е специфициран типот на објект.", -"Error" => "Грешка", -"The app name is not specified." => "Името на апликацијата не е специфицирано.", -"The required file {file} is not installed!" => "Задолжителната датотека {file} не е инсталирана!", +"Continue" => "Продолжи", +"(all selected)" => "(сите одбрани)", +"({count} selected)" => "({count} одбраните)", +"Error loading file exists template" => "Грешка при вчитување на датотеката, шаблонот постои ", +"Shared" => "Споделен", "Share" => "Сподели", +"Error" => "Грешка", "Error while sharing" => "Грешка при споделување", "Error while unsharing" => "Грешка при прекин на споделување", "Error while changing permissions" => "Грешка при промена на привилегии", @@ -59,6 +57,7 @@ $TRANSLATIONS = array( "Share with link" => "Сподели со врска", "Password protect" => "Заштити со лозинка", "Password" => "Лозинка", +"Allow Public Upload" => "Дозволи јавен аплоуд", "Email link to person" => "Прати врска по е-пошта на личност", "Send" => "Прати", "Set expiration date" => "Постави рок на траење", @@ -68,6 +67,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Повторно споделување не е дозволено", "Shared in {item} with {user}" => "Споделено во {item} со {user}", "Unshare" => "Не споделувај", +"notify user by email" => "извести го корисникот преку електронска пошта", "can edit" => "може да се измени", "access control" => "контрола на пристап", "create" => "креирај", @@ -80,9 +80,16 @@ $TRANSLATIONS = array( "Sending ..." => "Праќање...", "Email sent" => "Е-порака пратена", "Warning" => "Предупредување", +"The object type is not specified." => "Не е специфициран типот на објект.", +"Delete" => "Избриши", +"Add" => "Додади", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Надградбата беше неуспешна. Ве молиме пријавете го овој проблем на ownCloud community.", +"The update was successful. Redirecting you to ownCloud now." => "Надградбата беше успешна. Веднаш ве префрлам на вашиот ownCloud.", +"%s password reset" => "%s ресетирање на лозинката", "Use the following link to reset your password: {link}" => "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}", "You will receive a link to reset your password via Email." => "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка.", "Username" => "Корисничко име", +"Yes, I really want to reset my password now" => "Да, јас сега навистина сакам да ја поништам својата лозинка", "Request reset" => "Побарајте ресетирање", "Your password was reset" => "Вашата лозинка беше ресетирана", "To login page" => "Кон страницата за најава", @@ -95,11 +102,14 @@ $TRANSLATIONS = array( "Help" => "Помош", "Access forbidden" => "Забранет пристап", "Cloud not found" => "Облакот не е најден", -"Edit categories" => "Уреди категории", -"Add" => "Додади", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Здраво,\n\nСамо да ве известам дека %s shared %s with you.\nView it: %s\n\n", +"The share will expire on %s.\n\n" => "Споделувањето ќе заврши на %s.\n\n", +"Cheers!" => "Поздрав!", "Security Warning" => "Безбедносно предупредување", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Вашата верзија на PHP е ранлива на NULL Byte attack (CVE-2006-7243)", "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 files are probably accessible from the internet because the .htaccess file does not work." => "Вашиот директориум со податоци и датотеки се веројатно достапни преку интенернт поради што .htaccess датотеката не функционира.", "Create an admin account" => "Направете администраторска сметка", "Advanced" => "Напредно", "Data folder" => "Фолдер со податоци", @@ -111,12 +121,16 @@ $TRANSLATIONS = array( "Database tablespace" => "Табела во базата на податоци", "Database host" => "Сервер со база", "Finish setup" => "Заврши го подесувањето", +"Finishing …" => "Завршувам ...", "Log out" => "Одјава", "Automatic logon rejected!" => "Одбиена автоматска најава!", "If you did not change your password recently, your account may be compromised!" => "Ако не сте ја промениле лозинката во скоро време, вашата сметка може да е компромитирана", "Please change your password to secure your account again." => "Ве молам сменете ја лозинката да ја обезбедите вашата сметка повторно.", +"Please contact your administrator." => "Ве молиме контактирајте го вашиот администратор.", "Lost your password?" => "Ја заборавивте лозинката?", "remember" => "запамти", -"Log in" => "Најава" +"Log in" => "Најава", +"Alternative Logins" => "Алтернативни најавувања", +"Updating ownCloud to version %s, this may take a while." => "Надградбата на ownCloud на верзијата %s, може да потрае." ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index cac2dbff2a..9d30010e6c 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -1,7 +1,5 @@ "Tiada kategori untuk di tambah?", -"No categories selected for deletion." => "Tiada kategori dipilih untuk dibuang.", "Sunday" => "Ahad", "Monday" => "Isnin", "Tuesday" => "Selasa", @@ -31,10 +29,12 @@ $TRANSLATIONS = array( "Ok" => "Ok", "_{count} file conflict_::_{count} file conflicts_" => array(""), "Cancel" => "Batal", -"Error" => "Ralat", "Share" => "Kongsi", +"Error" => "Ralat", "Password" => "Kata laluan", "Warning" => "Amaran", +"Delete" => "Padam", +"Add" => "Tambah", "Use the following link to reset your password: {link}" => "Guna pautan berikut untuk menetapkan semula kata laluan anda: {link}", "You will receive a link to reset your password via Email." => "Anda akan menerima pautan untuk menetapkan semula kata laluan anda melalui emel", "Username" => "Nama pengguna", @@ -50,8 +50,6 @@ $TRANSLATIONS = array( "Help" => "Bantuan", "Access forbidden" => "Larangan akses", "Cloud not found" => "Awan tidak dijumpai", -"Edit categories" => "Ubah kategori", -"Add" => "Tambah", "Security Warning" => "Amaran keselamatan", "Create an admin account" => "buat akaun admin", "Advanced" => "Maju", diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index 0a07d15118..464e52d6d1 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -1,7 +1,5 @@ "ထည့်ရန်ခေါင်းစဉ်မရှိဘူးလား", -"No categories selected for deletion." => "ဖျက်ရန်အတွက်ခေါင်းစဉ်မရွေးထားပါ", "January" => "ဇန်နဝါရီ", "February" => "ဖေဖော်ဝါရီ", "March" => "မတ်", @@ -40,6 +38,7 @@ $TRANSLATIONS = array( "delete" => "ဖျက်မည်", "share" => "ဝေမျှမည်", "Password protected" => "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်", +"Add" => "ပေါင်းထည့်", "You will receive a link to reset your password via Email." => "အီးမေးလ်မှတစ်ဆင့် သင်၏စကားဝှက်ကို ပြန်ဖော်ရန်အတွက် Link တစ်ခုလက်ခံရရှိပါလိမ့်မယ်။", "Username" => "သုံးစွဲသူအမည်", "Your password was reset" => "သင်၏စကားဝှက်ကိုပြန်ဖော်ပြီးပါပြီ။", @@ -50,7 +49,6 @@ $TRANSLATIONS = array( "Admin" => "အက်ဒမင်", "Help" => "အကူအညီ", "Cloud not found" => "မတွေ့ရှိမိပါ", -"Add" => "ပေါင်းထည့်", "Security Warning" => "လုံခြုံရေးသတိပေးချက်", "Create an admin account" => "အက်ဒမင်အကောင့်တစ်ခုဖန်တီးမည်", "Advanced" => "အဆင့်မြင့်", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index a252642678..7240b8f318 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -2,9 +2,6 @@ $TRANSLATIONS = array( "%s shared »%s« with you" => "%s delte »%s« med deg", "group" => "gruppe", -"No category to add?" => "Ingen kategorier å legge til?", -"This category already exists: %s" => "Denne kategorien finnes allerede: %s", -"No categories selected for deletion." => "Ingen kategorier merket for sletting.", "Sunday" => "Søndag", "Monday" => "Mandag", "Tuesday" => "Tirsdag", @@ -42,9 +39,9 @@ $TRANSLATIONS = array( "Ok" => "Ok", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Avbryt", -"Error" => "Feil", "Shared" => "Delt", "Share" => "Del", +"Error" => "Feil", "Error while sharing" => "Feil under deling", "Shared with you by {owner}" => "Delt med deg av {owner}", "Share with" => "Del med", @@ -68,6 +65,8 @@ $TRANSLATIONS = array( "Sending ..." => "Sender...", "Email sent" => "E-post sendt", "Warning" => "Advarsel", +"Delete" => "Slett", +"Add" => "Legg til", "Use the following link to reset your password: {link}" => "Bruk følgende lenke for å tilbakestille passordet ditt: {link}", "You will receive a link to reset your password via Email." => "Du burde motta detaljer om å tilbakestille passordet ditt via epost.", "Username" => "Brukernavn", @@ -83,8 +82,6 @@ $TRANSLATIONS = array( "Help" => "Hjelp", "Access forbidden" => "Tilgang nektet", "Cloud not found" => "Sky ikke funnet", -"Edit categories" => "Rediger kategorier", -"Add" => "Legg til", "Security Warning" => "Sikkerhetsadvarsel", "Create an admin account" => "opprett en administrator-konto", "Advanced" => "Avansert", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index fe8ec482e3..675471f88e 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -1,6 +1,7 @@ "%s deelde »%s« met jou", +"Couldn't send mail to following users: %s " => "Kon geen e-mail sturen aan de volgende gebruikers: %s", "group" => "groep", "Turned on maintenance mode" => "Onderhoudsmodus ingeschakeld", "Turned off maintenance mode" => "Onderhoudsmodus uitgeschakeld", @@ -8,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Bijwerken bestandscache. Dit kan even duren...", "Updated filecache" => "Bestandscache bijgewerkt", "... %d%% done ..." => "... %d%% gereed ...", -"Category type not provided." => "Categorie type niet opgegeven.", -"No category to add?" => "Geen categorie om toe te voegen?", -"This category already exists: %s" => "Deze categorie bestaat al: %s", -"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.", -"No categories selected for deletion." => "Geen categorie geselecteerd voor verwijdering.", -"Error removing %s from favorites." => "Verwijderen %s van favorieten is mislukt.", "No image or file provided" => "Geen afbeelding of bestand opgegeven", "Unknown filetype" => "Onbekend bestandsformaat", "Invalid image" => "Ongeldige afbeelding", @@ -58,14 +51,18 @@ $TRANSLATIONS = array( "No" => "Nee", "Ok" => "Ok", "Error loading message template: {error}" => "Fout bij laden berichtensjabloon: {error}", -"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("{count} bestandsconflict","{count} bestandsconflicten"), +"One file conflict" => "Een bestandsconflict", +"Which files do you want to keep?" => "Welke bestanden wilt u bewaren?", +"If you select both versions, the copied file will have a number added to its name." => "Als u beide versies selecteerde, zal het gekopieerde bestand een nummer aan de naam toegevoegd krijgen.", "Cancel" => "Annuleer", -"The object type is not specified." => "Het object type is niet gespecificeerd.", -"Error" => "Fout", -"The app name is not specified." => "De app naam is niet gespecificeerd.", -"The required file {file} is not installed!" => "Het vereiste bestand {file} is niet geïnstalleerd!", +"Continue" => "Verder", +"(all selected)" => "(alles geselecteerd)", +"({count} selected)" => "({count} geselecteerd)", +"Error loading file exists template" => "Fout bij laden bestand bestaat al sjabloon", "Shared" => "Gedeeld", "Share" => "Delen", +"Error" => "Fout", "Error while sharing" => "Fout tijdens het delen", "Error while unsharing" => "Fout tijdens het stoppen met delen", "Error while changing permissions" => "Fout tijdens het veranderen van permissies", @@ -85,6 +82,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Verder delen is niet toegestaan", "Shared in {item} with {user}" => "Gedeeld in {item} met {user}", "Unshare" => "Stop met delen", +"notify user by email" => "Gebruiker via e-mail notificeren", "can edit" => "kan wijzigen", "access control" => "toegangscontrole", "create" => "creëer", @@ -97,6 +95,9 @@ $TRANSLATIONS = array( "Sending ..." => "Versturen ...", "Email sent" => "E-mail verzonden", "Warning" => "Waarschuwing", +"The object type is not specified." => "Het object type is niet gespecificeerd.", +"Delete" => "Verwijder", +"Add" => "Toevoegen", "The update was unsuccessful. Please report this issue to the ownCloud community." => "De update is niet geslaagd. Meld dit probleem aan bij de ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "De update is geslaagd. Je wordt teruggeleid naar je eigen ownCloud.", "%s password reset" => "%s wachtwoord reset", @@ -119,8 +120,9 @@ $TRANSLATIONS = array( "Help" => "Help", "Access forbidden" => "Toegang verboden", "Cloud not found" => "Cloud niet gevonden", -"Edit categories" => "Wijzig categorieën", -"Add" => "Toevoegen", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo daar,\n\neven een berichtje dat %s %s met u deelde.\nBekijk het: %s\n\n", +"The share will expire on %s.\n\n" => "De Share vervalt op %s.\n\n\n\n", +"Cheers!" => "Proficiat!", "Security Warning" => "Beveiligingswaarschuwing", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Je PHP-versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Werk uw PHP installatie bij om %s veilig te kunnen gebruiken.", @@ -139,15 +141,20 @@ $TRANSLATIONS = array( "Database tablespace" => "Database tablespace", "Database host" => "Databaseserver", "Finish setup" => "Installatie afronden", +"Finishing …" => "Afronden ...", "%s is available. Get more information on how to update." => "%s is beschikbaar. Verkrijg meer informatie over het bijwerken.", "Log out" => "Afmelden", "Automatic logon rejected!" => "Automatische aanmelding geweigerd!", "If you did not change your password recently, your account may be compromised!" => "Als je je wachtwoord niet onlangs heeft aangepast, kan je account overgenomen zijn!", "Please change your password to secure your account again." => "Wijzig je wachtwoord zodat je account weer beveiligd is.", +"Server side authentication failed!" => "Authenticatie bij de server mislukte!", +"Please contact your administrator." => "Neem contact op met uw systeembeheerder.", "Lost your password?" => "Wachtwoord vergeten?", "remember" => "onthoud gegevens", "Log in" => "Meld je aan", "Alternative Logins" => "Alternatieve inlogs", +"Hey there,

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

    " => "Hallo daar,

    even een berichtje dat %s »%s« met u deelde.
    Bekijk hier!

    ", +"The share will expire on %s.

    " => "Het delen stopt op %s.

    ", "Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren..." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 6dff2e6374..3ac3a6ea69 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -8,14 +8,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Oppdaterer mellomlager; dette kan ta ei god stund …", "Updated filecache" => "Mellomlager oppdatert", "... %d%% done ..." => "… %d %% ferdig …", -"Category type not provided." => "Ingen kategoritype.", -"No category to add?" => "Ingen kategori å leggja til?", -"This category already exists: %s" => "Denne kategorien finst alt: %s", -"Object type not provided." => "Ingen objekttype.", -"%s ID not provided." => "Ingen %s-ID.", -"Error adding %s to favorites." => "Klarte ikkje leggja til %s i favorittar.", -"No categories selected for deletion." => "Ingen kategoriar valt for sletting.", -"Error removing %s from favorites." => "Klarte ikkje fjerna %s frå favorittar.", "No image or file provided" => "Inga bilete eller fil gitt", "Unknown filetype" => "Ukjend filtype", "Invalid image" => "Ugyldig bilete", @@ -67,12 +59,9 @@ $TRANSLATIONS = array( "(all selected)" => "(alle valte)", "({count} selected)" => "({count} valte)", "Error loading file exists template" => "Klarte ikkje å lasta fil-finst-mal", -"The object type is not specified." => "Objekttypen er ikkje spesifisert.", -"Error" => "Feil", -"The app name is not specified." => "Programnamnet er ikkje spesifisert.", -"The required file {file} is not installed!" => "Den kravde fila {file} er ikkje installert!", "Shared" => "Delt", "Share" => "Del", +"Error" => "Feil", "Error while sharing" => "Feil ved deling", "Error while unsharing" => "Feil ved udeling", "Error while changing permissions" => "Feil ved endring av tillatingar", @@ -104,6 +93,9 @@ $TRANSLATIONS = array( "Sending ..." => "Sender …", "Email sent" => "E-post sendt", "Warning" => "Åtvaring", +"The object type is not specified." => "Objekttypen er ikkje spesifisert.", +"Delete" => "Slett", +"Add" => "Legg til", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Oppdateringa feila. Ver venleg og rapporter feilen til ownCloud-fellesskapet.", "The update was successful. Redirecting you to ownCloud now." => "Oppdateringa er fullført. Sender deg vidare til ownCloud no.", "%s password reset" => "%s passordnullstilling", @@ -126,8 +118,6 @@ $TRANSLATIONS = array( "Help" => "Hjelp", "Access forbidden" => "Tilgang forbudt", "Cloud not found" => "Fann ikkje skyen", -"Edit categories" => "Endra kategoriar", -"Add" => "Legg til", "Security Warning" => "Tryggleiksåtvaring", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP-utgåva di er sårbar for NULL-byteåtaket (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Ver venleg og oppdater PHP-installasjonen din til å brukar %s trygt.", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index fd84d0b2e3..c6472b1c17 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -1,8 +1,6 @@ "grop", -"No category to add?" => "Pas de categoria d'ajustar ?", -"No categories selected for deletion." => "Pas de categorias seleccionadas per escafar.", "Sunday" => "Dimenge", "Monday" => "Diluns", "Tuesday" => "Dimarç", @@ -40,8 +38,8 @@ $TRANSLATIONS = array( "Ok" => "D'accòrdi", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Annula", -"Error" => "Error", "Share" => "Parteja", +"Error" => "Error", "Error while sharing" => "Error al partejar", "Error while unsharing" => "Error al non partejar", "Error while changing permissions" => "Error al cambiar permissions", @@ -64,6 +62,8 @@ $TRANSLATIONS = array( "Password protected" => "Parat per senhal", "Error unsetting expiration date" => "Error al metre de la data d'expiracion", "Error setting expiration date" => "Error setting expiration date", +"Delete" => "Escafa", +"Add" => "Ajusta", "Use the following link to reset your password: {link}" => "Utiliza lo ligam seguent per tornar botar lo senhal : {link}", "You will receive a link to reset your password via Email." => "Reçaupràs un ligam per tornar botar ton senhal via corrièl.", "Username" => "Non d'usancièr", @@ -79,8 +79,6 @@ $TRANSLATIONS = array( "Help" => "Ajuda", "Access forbidden" => "Acces enebit", "Cloud not found" => "Nívol pas trobada", -"Edit categories" => "Edita categorias", -"Add" => "Ajusta", "Security Warning" => "Avertiment de securitat", "Create an admin account" => "Crea un compte admin", "Advanced" => "Avançat", diff --git a/core/l10n/pa.php b/core/l10n/pa.php index 156c6dbac1..b637c429a6 100644 --- a/core/l10n/pa.php +++ b/core/l10n/pa.php @@ -37,11 +37,12 @@ $TRANSLATIONS = array( "Ok" => "ਠੀਕ ਹੈ", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "ਰੱਦ ਕਰੋ", -"Error" => "ਗਲ", "Share" => "ਸਾਂਝਾ ਕਰੋ", +"Error" => "ਗਲ", "Password" => "ਪਾਸਵਰ", "Send" => "ਭੇਜੋ", "Warning" => "ਚੇਤਾਵਨੀ", +"Delete" => "ਹਟਾਓ", "Username" => "ਯੂਜ਼ਰ-ਨਾਂ", "Security Warning" => "ਸੁਰੱਖਿਆ ਚੇਤਾਵਨੀ" ); diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 5d60f5d3aa..60476b5aad 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -8,14 +8,7 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Aktualizowanie filecache, to może potrwać bardzo długo...", "Updated filecache" => "Zaktualizuj filecache", "... %d%% done ..." => "... %d%% udane ...", -"Category type not provided." => "Nie podano typu kategorii.", -"No category to add?" => "Brak kategorii do dodania?", -"This category already exists: %s" => "Ta kategoria już istnieje: %s", -"Object type not provided." => "Nie podano typu obiektu.", -"%s ID not provided." => "Nie podano ID %s.", -"Error adding %s to favorites." => "Błąd podczas dodawania %s do ulubionych.", -"No categories selected for deletion." => "Nie zaznaczono kategorii do usunięcia.", -"Error removing %s from favorites." => "Błąd podczas usuwania %s z ulubionych.", +"No image or file provided" => "Brak obrazu lub pliku dostarczonego", "Unknown filetype" => "Nieznany typ pliku", "Invalid image" => "Nieprawidłowe zdjęcie", "Sunday" => "Niedziela", @@ -59,12 +52,9 @@ $TRANSLATIONS = array( "Continue" => "Kontynuuj ", "(all selected)" => "(wszystkie zaznaczone)", "({count} selected)" => "({count} zaznaczonych)", -"The object type is not specified." => "Nie określono typu obiektu.", -"Error" => "Błąd", -"The app name is not specified." => "Nie określono nazwy aplikacji.", -"The required file {file} is not installed!" => "Wymagany plik {file} nie jest zainstalowany!", "Shared" => "Udostępniono", "Share" => "Udostępnij", +"Error" => "Błąd", "Error while sharing" => "Błąd podczas współdzielenia", "Error while unsharing" => "Błąd podczas zatrzymywania współdzielenia", "Error while changing permissions" => "Błąd przy zmianie uprawnień", @@ -84,6 +74,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Współdzielenie nie jest możliwe", "Shared in {item} with {user}" => "Współdzielone w {item} z {user}", "Unshare" => "Zatrzymaj współdzielenie", +"notify user by email" => "powiadom użytkownika przez email", "can edit" => "może edytować", "access control" => "kontrola dostępu", "create" => "utwórz", @@ -96,6 +87,9 @@ $TRANSLATIONS = array( "Sending ..." => "Wysyłanie...", "Email sent" => "E-mail wysłany", "Warning" => "Ostrzeżenie", +"The object type is not specified." => "Nie określono typu obiektu.", +"Delete" => "Usuń", +"Add" => "Dodaj", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem spoleczności ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Aktualizacji zakończyła się powodzeniem. Przekierowuję do ownCloud.", "%s password reset" => "%s reset hasła", @@ -118,8 +112,8 @@ $TRANSLATIONS = array( "Help" => "Pomoc", "Access forbidden" => "Dostęp zabroniony", "Cloud not found" => "Nie odnaleziono chmury", -"Edit categories" => "Edytuj kategorie", -"Add" => "Dodaj", +"The share will expire on %s.\n\n" => "Udostępnienie wygaśnie w dniu %s.\n\n", +"Cheers!" => "Pozdrawiam!", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Twója wersja PHP jest narażona na NULL Byte attack (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Proszę uaktualnij swoją instalacje PHP aby używać %s bezpiecznie.", @@ -138,15 +132,20 @@ $TRANSLATIONS = array( "Database tablespace" => "Obszar tabel bazy danych", "Database host" => "Komputer bazy danych", "Finish setup" => "Zakończ konfigurowanie", +"Finishing …" => "Kończę ...", "%s is available. Get more information on how to update." => "%s jest dostępna. Dowiedz się więcej na temat aktualizacji.", "Log out" => "Wyloguj", "Automatic logon rejected!" => "Automatyczne logowanie odrzucone!", "If you did not change your password recently, your account may be compromised!" => "Jeśli hasło było dawno niezmieniane, twoje konto może być zagrożone!", "Please change your password to secure your account again." => "Zmień swoje hasło, aby ponownie zabezpieczyć swoje konto.", +"Server side authentication failed!" => "Uwierzytelnianie po stronie serwera nie powiodło się!", +"Please contact your administrator." => "Skontaktuj się z administratorem", "Lost your password?" => "Nie pamiętasz hasła?", "remember" => "pamiętaj", "Log in" => "Zaloguj", "Alternative Logins" => "Alternatywne loginy", +"Hey there,

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

    " => "Cześć,

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

    ", +"The share will expire on %s.

    " => "Udostępnienie wygaśnie w dniu %s.

    ", "Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać." ); $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index fc43814ae0..8c000d523d 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -9,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Atualizar cahe de arquivos, isto pode levar algum tempo...", "Updated filecache" => "Atualizar cache de arquivo", "... %d%% done ..." => "... %d%% concluído ...", -"Category type not provided." => "Tipo de categoria não fornecido.", -"No category to add?" => "Nenhuma categoria a adicionar?", -"This category already exists: %s" => "Esta categoria já existe: %s", -"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.", -"No categories selected for deletion." => "Nenhuma categoria selecionada para remoção.", -"Error removing %s from favorites." => "Erro ao remover %s dos favoritos.", "No image or file provided" => "Nenhuma imagem ou arquivo fornecido", "Unknown filetype" => "Tipo de arquivo desconhecido", "Invalid image" => "Imagem inválida", @@ -68,12 +60,9 @@ $TRANSLATIONS = array( "(all selected)" => "(todos os selecionados)", "({count} selected)" => "({count} selecionados)", "Error loading file exists template" => "Erro ao carregar arquivo existe modelo", -"The object type is not specified." => "O tipo de objeto não foi especificado.", -"Error" => "Erro", -"The app name is not specified." => "O nome do app não foi especificado.", -"The required file {file} is not installed!" => "O arquivo {file} necessário não está instalado!", "Shared" => "Compartilhados", "Share" => "Compartilhar", +"Error" => "Erro", "Error while sharing" => "Erro ao compartilhar", "Error while unsharing" => "Erro ao descompartilhar", "Error while changing permissions" => "Erro ao mudar permissões", @@ -106,6 +95,13 @@ $TRANSLATIONS = array( "Sending ..." => "Enviando ...", "Email sent" => "E-mail enviado", "Warning" => "Aviso", +"The object type is not specified." => "O tipo de objeto não foi especificado.", +"Enter new" => "Entrar uma nova", +"Delete" => "Eliminar", +"Add" => "Adicionar", +"Edit tags" => "Editar etiqueta", +"Error loading dialog template: {error}" => "Erro carregando diálogo de formatação:{error}", +"No tags selected for deletion." => "Nenhuma etiqueta selecionada para deleção.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A atualização falhou. Por favor, relate este problema para a comunidade ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "A atualização teve êxito. Você será redirecionado ao ownCloud agora.", "%s password reset" => "%s redefinir senha", @@ -126,13 +122,18 @@ $TRANSLATIONS = array( "Apps" => "Aplicações", "Admin" => "Admin", "Help" => "Ajuda", +"Error loading tags" => " Erro carregando etiqueta", +"Tag already exists" => "tiqueta já existe", +"Error deleting tag(s)" => "Erro deletando etiqueta(s)", +"Error tagging" => "Erro etiquetando", +"Error untagging" => "Erro retirando etiquetando", +"Error favoriting" => "Erro colocando no favoritos", +"Error unfavoriting" => "Erro retirando do favoritos", "Access forbidden" => "Acesso proibido", "Cloud not found" => "Cloud não encontrado", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Olá,\n\ngostaria que você soubesse que %s compartilhou %s com vecê.\nVeja isto: %s\n\n", "The share will expire on %s.\n\n" => "O compartilhamento irá expirer em %s.\n\n", "Cheers!" => "Saúde!", -"Edit categories" => "Editar categorias", -"Add" => "Adicionar", "Security Warning" => "Aviso de Segurança", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Sua versão do PHP está vulnerável ao ataque NULL Byte (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Por favor, atualize sua instalação PHP para usar %s segurança.", @@ -157,6 +158,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Entrada Automática no Sistema Rejeitada!", "If you did not change your password recently, your account may be compromised!" => "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!", "Please change your password to secure your account again." => "Por favor troque sua senha para tornar sua conta segura novamente.", +"Server side authentication failed!" => "Autenticação do servidor falhou!", +"Please contact your administrator." => "Por favor, contate o administrador.", "Lost your password?" => "Esqueceu sua senha?", "remember" => "lembrar", "Log in" => "Fazer login", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index fd50442119..c14cb71874 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -8,14 +8,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "A actualizar o cache dos ficheiros, poderá demorar algum tempo...", "Updated filecache" => "Actualizado o cache dos ficheiros", "... %d%% done ..." => "... %d%% feito ...", -"Category type not provided." => "Tipo de categoria não fornecido", -"No category to add?" => "Nenhuma categoria para adicionar?", -"This category already exists: %s" => "A categoria já existe: %s", -"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", -"No categories selected for deletion." => "Nenhuma categoria seleccionada para eliminar.", -"Error removing %s from favorites." => "Erro a remover %s dos favoritos.", "No image or file provided" => "Não foi selecionado nenhum ficheiro para importar", "Unknown filetype" => "Ficheiro desconhecido", "Invalid image" => "Imagem inválida", @@ -58,12 +50,9 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Erro ao carregar o template: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Cancelar", -"The object type is not specified." => "O tipo de objecto não foi especificado", -"Error" => "Erro", -"The app name is not specified." => "O nome da aplicação não foi especificado", -"The required file {file} is not installed!" => "O ficheiro necessário {file} não está instalado!", "Shared" => "Partilhado", "Share" => "Partilhar", +"Error" => "Erro", "Error while sharing" => "Erro ao partilhar", "Error while unsharing" => "Erro ao deixar de partilhar", "Error while changing permissions" => "Erro ao mudar permissões", @@ -95,6 +84,9 @@ $TRANSLATIONS = array( "Sending ..." => "A Enviar...", "Email sent" => "E-mail enviado", "Warning" => "Aviso", +"The object type is not specified." => "O tipo de objecto não foi especificado", +"Delete" => "Eliminar", +"Add" => "Adicionar", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A actualização falhou. Por favor reporte este incidente seguindo este link ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora.", "%s password reset" => "%s reposição da password", @@ -117,8 +109,6 @@ $TRANSLATIONS = array( "Help" => "Ajuda", "Access forbidden" => "Acesso interdito", "Cloud not found" => "Cloud nao encontrada", -"Edit categories" => "Editar categorias", -"Add" => "Adicionar", "Security Warning" => "Aviso de Segurança", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "A sua versão do PHP é vulnerável ao ataque Byte Null (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Por favor atualize a sua versão PHP instalada para usar o %s com segurança.", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 73350011f1..1224dcfd33 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -3,14 +3,6 @@ $TRANSLATIONS = array( "%s shared »%s« with you" => "%s Partajat »%s« cu tine de", "group" => "grup", "Updated database" => "Bază de date actualizată", -"Category type not provided." => "Tipul de categorie nu a fost specificat.", -"No category to add?" => "Nici o categorie de adăugat?", -"This category already exists: %s" => "Această categorie deja există: %s", -"Object type not provided." => "Tipul obiectului nu este prevăzut", -"%s ID not provided." => "ID-ul %s nu a fost introdus", -"Error adding %s to favorites." => "Eroare la adăugarea %s la favorite.", -"No categories selected for deletion." => "Nicio categorie selectată pentru ștergere.", -"Error removing %s from favorites." => "Eroare la ștergerea %s din favorite.", "Unknown filetype" => "Tip fișier necunoscut", "Invalid image" => "Imagine invalidă", "Sunday" => "Duminică", @@ -54,12 +46,9 @@ $TRANSLATIONS = array( "If you select both versions, the copied file will have a number added to its name." => "Dacă alegi ambele versiuni, fișierul copiat va avea un număr atașat la denumirea sa.", "Cancel" => "Anulare", "Continue" => "Continuă", -"The object type is not specified." => "Tipul obiectului nu este specificat.", -"Error" => "Eroare", -"The app name is not specified." => "Numele aplicației nu este specificat.", -"The required file {file} is not installed!" => "Fișierul obligatoriu {file} nu este instalat!", "Shared" => "Partajat", "Share" => "Partajează", +"Error" => "Eroare", "Error while sharing" => "Eroare la partajare", "Error while unsharing" => "Eroare la anularea partajării", "Error while changing permissions" => "Eroare la modificarea permisiunilor", @@ -91,6 +80,9 @@ $TRANSLATIONS = array( "Sending ..." => "Se expediază...", "Email sent" => "Mesajul a fost expediat", "Warning" => "Atenție", +"The object type is not specified." => "Tipul obiectului nu este specificat.", +"Delete" => "Șterge", +"Add" => "Adaugă", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Actualizarea a eșuat! Raportați problema către comunitatea ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Actualizare reușită. Ești redirecționat către ownCloud.", "Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}", @@ -112,8 +104,6 @@ $TRANSLATIONS = array( "Help" => "Ajutor", "Access forbidden" => "Acces restricționat", "Cloud not found" => "Nu s-a găsit", -"Edit categories" => "Editează categorii", -"Add" => "Adaugă", "Security Warning" => "Avertisment de securitate", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Versiunea dvs. PHP este vulnerabilă la un atac cu un octet NULL (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Te rog actualizează versiunea PHP pentru a utiliza %s în mod securizat.", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 5cfd013850..25ba4f680b 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -8,14 +8,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Обновление файлового кэша, это может занять некоторое время...", "Updated filecache" => "Обновлен файловый кэш", "... %d%% done ..." => "... %d%% завершено ...", -"Category type not provided." => "Тип категории не предоставлен", -"No category to add?" => "Нет категорий для добавления?", -"This category already exists: %s" => "Эта категория уже существует: %s", -"Object type not provided." => "Тип объекта не предоставлен", -"%s ID not provided." => "ID %s не предоставлен", -"Error adding %s to favorites." => "Ошибка добавления %s в избранное", -"No categories selected for deletion." => "Нет категорий для удаления.", -"Error removing %s from favorites." => "Ошибка удаления %s из избранного", "No image or file provided" => "Не указано изображение или файл", "Unknown filetype" => "Неизвестный тип файла", "Invalid image" => "Изображение повреждено", @@ -67,12 +59,9 @@ $TRANSLATIONS = array( "(all selected)" => "(выбраны все)", "({count} selected)" => "({count} выбрано)", "Error loading file exists template" => "Ошибка при загрузке шаблона существующего файла", -"The object type is not specified." => "Тип объекта не указан", -"Error" => "Ошибка", -"The app name is not specified." => "Имя приложения не указано", -"The required file {file} is not installed!" => "Необходимый файл {file} не установлен!", "Shared" => "Общие", "Share" => "Открыть доступ", +"Error" => "Ошибка", "Error while sharing" => "Ошибка при открытии доступа", "Error while unsharing" => "Ошибка при закрытии доступа", "Error while changing permissions" => "Ошибка при смене разрешений", @@ -104,6 +93,9 @@ $TRANSLATIONS = array( "Sending ..." => "Отправляется ...", "Email sent" => "Письмо отправлено", "Warning" => "Предупреждение", +"The object type is not specified." => "Тип объекта не указан", +"Delete" => "Удалить", +"Add" => "Добавить", "The update was unsuccessful. Please report this issue to the ownCloud community." => "При обновлении произошла ошибка. Пожалуйста сообщите об этом в ownCloud сообщество.", "The update was successful. Redirecting you to ownCloud now." => "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud...", "%s password reset" => "%s сброс пароля", @@ -126,8 +118,6 @@ $TRANSLATIONS = array( "Help" => "Помощь", "Access forbidden" => "Доступ запрещён", "Cloud not found" => "Облако не найдено", -"Edit categories" => "Редактировать категрии", -"Add" => "Добавить", "Security Warning" => "Предупреждение безопасности", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версия PHP уязвима к атаке NULL Byte (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Пожалуйста обновите Вашу PHP конфигурацию для безопасного использования %s.", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index 065604425b..ecff370528 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -1,7 +1,6 @@ "කණ්ඩායම", -"No categories selected for deletion." => "මකා දැමීම සඳහා ප්‍රවර්ගයන් තෝරා නොමැත.", "Sunday" => "ඉරිදා", "Monday" => "සඳුදා", "Tuesday" => "අඟහරුවාදා", @@ -39,8 +38,8 @@ $TRANSLATIONS = array( "Ok" => "හරි", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "එපා", -"Error" => "දෝෂයක්", "Share" => "බෙදා හදා ගන්න", +"Error" => "දෝෂයක්", "Share with" => "බෙදාගන්න", "Share with link" => "යොමුවක් මඟින් බෙදාගන්න", "Password protect" => "මුර පදයකින් ආරක්ශාකරන්න", @@ -59,6 +58,8 @@ $TRANSLATIONS = array( "Error unsetting expiration date" => "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්", "Error setting expiration date" => "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්", "Warning" => "අවවාදය", +"Delete" => "මකා දමන්න", +"Add" => "එකතු කරන්න", "You will receive a link to reset your password via Email." => "ඔබගේ මුරපදය ප්‍රත්‍යාරම්භ කිරීම සඳහා යොමුව විද්‍යුත් තැපෑලෙන් ලැබෙනු ඇත", "Username" => "පරිශීලක නම", "Your password was reset" => "ඔබේ මුරපදය ප්‍රත්‍යාරම්භ කරන ලදී", @@ -72,8 +73,6 @@ $TRANSLATIONS = array( "Help" => "උදව්", "Access forbidden" => "ඇතුල් වීම තහනම්", "Cloud not found" => "සොයා ගත නොහැක", -"Edit categories" => "ප්‍රභේදයන් සංස්කරණය", -"Add" => "එකතු කරන්න", "Security Warning" => "ආරක්ෂක නිවේදනයක්", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ආරක්ෂිත අහඹු සංඛ්‍යා උත්පාදකයක් නොමැති නම් ඔබගේ ගිණුමට පහරදෙන අයකුට එහි මුරපද යළි පිහිටුවීමට අවශ්‍ය ටෝකන පහසුවෙන් සොයාගෙන ඔබගේ ගිණුම පැහැරගත හැක.", "Advanced" => "දියුණු/උසස්", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index b4bcaac8ae..db29395a7f 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -8,14 +8,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Aktualizácia \"filecache\", toto môže trvať dlhšie...", "Updated filecache" => "\"Filecache\" aktualizovaná", "... %d%% done ..." => "... %d%% dokončených ...", -"Category type not provided." => "Neposkytnutý typ kategórie.", -"No category to add?" => "Žiadna kategória pre pridanie?", -"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.", -"No categories selected for deletion." => "Neboli vybrané žiadne kategórie pre odstránenie.", -"Error removing %s from favorites." => "Chyba pri odstraňovaní %s z obľúbených položiek.", "Sunday" => "Nedeľa", "Monday" => "Pondelok", "Tuesday" => "Utorok", @@ -53,12 +45,9 @@ $TRANSLATIONS = array( "Ok" => "Ok", "_{count} file conflict_::_{count} file conflicts_" => array("","",""), "Cancel" => "Zrušiť", -"The object type is not specified." => "Nešpecifikovaný typ objektu.", -"Error" => "Chyba", -"The app name is not specified." => "Nešpecifikované meno aplikácie.", -"The required file {file} is not installed!" => "Požadovaný súbor {file} nie je nainštalovaný!", "Shared" => "Zdieľané", "Share" => "Zdieľať", +"Error" => "Chyba", "Error while sharing" => "Chyba počas zdieľania", "Error while unsharing" => "Chyba počas ukončenia zdieľania", "Error while changing permissions" => "Chyba počas zmeny oprávnení", @@ -90,6 +79,9 @@ $TRANSLATIONS = array( "Sending ..." => "Odosielam ...", "Email sent" => "Email odoslaný", "Warning" => "Varovanie", +"The object type is not specified." => "Nešpecifikovaný typ objektu.", +"Delete" => "Zmazať", +"Add" => "Pridať", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizácia nebola úspešná. Problém nahláste na ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "Aktualizácia bola úspešná. Presmerovávam na prihlasovaciu stránku.", "%s password reset" => "reset hesla %s", @@ -112,8 +104,6 @@ $TRANSLATIONS = array( "Help" => "Pomoc", "Access forbidden" => "Prístup odmietnutý", "Cloud not found" => "Nenájdené", -"Edit categories" => "Upraviť kategórie", -"Add" => "Pridať", "Security Warning" => "Bezpečnostné varovanie", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Verzia Vášho PHP je napadnuteľná pomocou techniky \"NULL Byte\" (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Aktualizujte prosím vašu inštanciu PHP pre bezpečné používanie %s.", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index e858284de5..46c7b7b245 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -2,14 +2,6 @@ $TRANSLATIONS = array( "%s shared »%s« with you" => "%s je delil »%s« z vami", "group" => "skupina", -"Category type not provided." => "Vrsta kategorije ni podana.", -"No category to add?" => "Ali ni kategorije za dodajanje?", -"This category already exists: %s" => "Kategorija že obstaja: %s", -"Object type not provided." => "Vrsta predmeta ni podana.", -"%s ID not provided." => "ID %s ni podan.", -"Error adding %s to favorites." => "Napaka dodajanja %s med priljubljene predmete.", -"No categories selected for deletion." => "Za izbris ni izbrana nobena kategorija.", -"Error removing %s from favorites." => "Napaka odstranjevanja %s iz priljubljenih predmetov.", "Sunday" => "nedelja", "Monday" => "ponedeljek", "Tuesday" => "torek", @@ -47,12 +39,9 @@ $TRANSLATIONS = array( "Ok" => "V redu", "_{count} file conflict_::_{count} file conflicts_" => array("","","",""), "Cancel" => "Prekliči", -"The object type is not specified." => "Vrsta predmeta ni podana.", -"Error" => "Napaka", -"The app name is not specified." => "Ime programa ni podano.", -"The required file {file} is not installed!" => "Zahtevana datoteka {file} ni nameščena!", "Shared" => "V souporabi", "Share" => "Souporaba", +"Error" => "Napaka", "Error while sharing" => "Napaka med souporabo", "Error while unsharing" => "Napaka med odstranjevanjem souporabe", "Error while changing permissions" => "Napaka med spreminjanjem dovoljenj", @@ -84,6 +73,9 @@ $TRANSLATIONS = array( "Sending ..." => "Pošiljanje ...", "Email sent" => "Elektronska pošta je poslana", "Warning" => "Opozorilo", +"The object type is not specified." => "Vrsta predmeta ni podana.", +"Delete" => "Izbriši", +"Add" => "Dodaj", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud.", "Use the following link to reset your password: {link}" => "Za ponastavitev gesla uporabite povezavo: {link}", @@ -105,8 +97,6 @@ $TRANSLATIONS = array( "Help" => "Pomoč", "Access forbidden" => "Dostop je prepovedan", "Cloud not found" => "Oblaka ni mogoče najti", -"Edit categories" => "Uredi kategorije", -"Add" => "Dodaj", "Security Warning" => "Varnostno opozorilo", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Uporabljena različica PHP je ranljiva za napad NULL Byte (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Za varno uporabo storitve %s posodobite PHP", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index 2d9649a648..c0bfee5241 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -8,14 +8,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Po azhurnoj memorjen e skedarëve, mund të zgjasi pak...", "Updated filecache" => "Memorja e skedarëve u azhornua", "... %d%% done ..." => "... %d%% u krye ...", -"Category type not provided." => "Mungon tipi i kategorisë.", -"No category to add?" => "Asnjë kategori për të shtuar?", -"This category already exists: %s" => "Kjo kategori tashmë ekziston: %s", -"Object type not provided." => "Mungon tipi i objektit.", -"%s ID not provided." => "Mungon ID-ja e %s.", -"Error adding %s to favorites." => "Veprim i gabuar gjatë shtimit të %s tek të parapëlqyerat.", -"No categories selected for deletion." => "Nuk selektuar për tu eliminuar asnjë kategori.", -"Error removing %s from favorites." => "Veprim i gabuar gjatë heqjes së %s nga të parapëlqyerat.", "Sunday" => "E djelë", "Monday" => "E hënë", "Tuesday" => "E martë", @@ -53,12 +45,9 @@ $TRANSLATIONS = array( "Ok" => "Në rregull", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Anulo", -"The object type is not specified." => "Nuk është specifikuar tipi i objektit.", -"Error" => "Veprim i gabuar", -"The app name is not specified." => "Nuk është specifikuar emri i app-it.", -"The required file {file} is not installed!" => "Skedari i nevojshëm {file} nuk është i instaluar!", "Shared" => "Ndarë", "Share" => "Nda", +"Error" => "Veprim i gabuar", "Error while sharing" => "Veprim i gabuar gjatë ndarjes", "Error while unsharing" => "Veprim i gabuar gjatë heqjes së ndarjes", "Error while changing permissions" => "Veprim i gabuar gjatë ndryshimit të lejeve", @@ -89,6 +78,9 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Veprim i gabuar gjatë caktimit të datës së përfundimit", "Sending ..." => "Duke dërguar...", "Email sent" => "Email-i u dërgua", +"The object type is not specified." => "Nuk është specifikuar tipi i objektit.", +"Delete" => "Elimino", +"Add" => "Shto", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem komunitetin ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Azhurnimi u krye. Tani do t'ju kaloj tek ownCloud-i.", "%s password reset" => "Kodi i %s -it u rivendos", @@ -111,8 +103,6 @@ $TRANSLATIONS = array( "Help" => "Ndihmë", "Access forbidden" => "Ndalohet hyrja", "Cloud not found" => "Cloud-i nuk u gjet", -"Edit categories" => "Ndrysho kategoritë", -"Add" => "Shto", "Security Warning" => "Paralajmërim sigurie", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Versioni juaj i PHP-së është i cënueshëm nga sulmi NULL Byte (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Ju lutem azhurnoni instalimin tuaj të PHP-së që të përdorni %s -in në mënyrë të sigurt.", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 666223c6cb..4b1d41f289 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -1,13 +1,6 @@ "група", -"Category type not provided." => "Врста категорије није унет.", -"No category to add?" => "Додати још неку категорију?", -"Object type not provided." => "Врста објекта није унета.", -"%s ID not provided." => "%s ИД нису унети.", -"Error adding %s to favorites." => "Грешка приликом додавања %s у омиљене.", -"No categories selected for deletion." => "Ни једна категорија није означена за брисање.", -"Error removing %s from favorites." => "Грешка приликом уклањања %s из омиљених", "Sunday" => "Недеља", "Monday" => "Понедељак", "Tuesday" => "Уторак", @@ -45,11 +38,8 @@ $TRANSLATIONS = array( "Ok" => "У реду", "_{count} file conflict_::_{count} file conflicts_" => array("","",""), "Cancel" => "Откажи", -"The object type is not specified." => "Врста објекта није подешена.", -"Error" => "Грешка", -"The app name is not specified." => "Име програма није унето.", -"The required file {file} is not installed!" => "Потребна датотека {file} није инсталирана.", "Share" => "Дели", +"Error" => "Грешка", "Error while sharing" => "Грешка у дељењу", "Error while unsharing" => "Грешка код искључења дељења", "Error while changing permissions" => "Грешка код промене дозвола", @@ -79,6 +69,9 @@ $TRANSLATIONS = array( "Sending ..." => "Шаљем...", "Email sent" => "Порука је послата", "Warning" => "Упозорење", +"The object type is not specified." => "Врста објекта није подешена.", +"Delete" => "Обриши", +"Add" => "Додај", "Use the following link to reset your password: {link}" => "Овом везом ресетујте своју лозинку: {link}", "You will receive a link to reset your password via Email." => "Добићете везу за ресетовање лозинке путем е-поште.", "Username" => "Корисничко име", @@ -94,8 +87,6 @@ $TRANSLATIONS = array( "Help" => "Помоћ", "Access forbidden" => "Забрањен приступ", "Cloud not found" => "Облак није нађен", -"Edit categories" => "Измени категорије", -"Add" => "Додај", "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." => "Без поузданог генератора случајнох бројева нападач лако може предвидети лозинку за поништавање кључа шифровања и отети вам налог.", diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index 8c0d28ef1c..04a4b758bb 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -1,13 +1,5 @@ "Tip kategorije nije zadan.", -"No category to add?" => "Bez dodavanja kategorije?", -"This category already exists: %s" => "Kategorija već postoji: %s", -"Object type not provided." => "Tip objekta nije zadan.", -"%s ID not provided." => "%s ID nije zadan.", -"Error adding %s to favorites." => "Greška u dodavanju %s u omiljeno.", -"No categories selected for deletion." => "Kategorije za brisanje nisu izabrane.", -"Error removing %s from favorites." => "Greška u uklanjanju %s iz omiljeno.", "Sunday" => "Nedelja", "Monday" => "Ponedeljak", "Tuesday" => "Utorak", @@ -45,12 +37,9 @@ $TRANSLATIONS = array( "Ok" => "Ok", "_{count} file conflict_::_{count} file conflicts_" => array("","",""), "Cancel" => "Otkaži", -"The object type is not specified." => "Tip objekta nije zadan.", -"Error" => "Greška", -"The app name is not specified." => "Ime aplikacije nije precizirano.", -"The required file {file} is not installed!" => "Potreban fajl {file} nije instaliran!", "Shared" => "Deljeno", "Share" => "Podeli", +"Error" => "Greška", "Error while sharing" => "Greška pri deljenju", "Error while unsharing" => "Greška u uklanjanju deljenja", "Error while changing permissions" => "Greška u promeni dozvola", @@ -80,6 +69,9 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Greška u postavljanju datuma isteka", "Sending ..." => "Slanje...", "Email sent" => "Email poslat", +"The object type is not specified." => "Tip objekta nije zadan.", +"Delete" => "Obriši", +"Add" => "Dodaj", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Ažuriranje nije uspelo. Molimo obavestite ownCloud zajednicu.", "The update was successful. Redirecting you to ownCloud now." => "Ažuriranje je uspelo. Prosleđivanje na ownCloud.", "Use the following link to reset your password: {link}" => "Koristite sledeći link za reset lozinke: {link}", @@ -97,8 +89,6 @@ $TRANSLATIONS = array( "Help" => "Pomoć", "Access forbidden" => "Pristup zabranjen", "Cloud not found" => "Oblak nije nađen", -"Edit categories" => "Izmena kategorija", -"Add" => "Dodaj", "Security Warning" => "Bezbednosno upozorenje", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Vaša PHP verzija je ranjiva na ", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nije dostupan generator slučajnog broja, molimo omogućite PHP OpenSSL ekstenziju.", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 2993653741..239b9495ef 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -1,6 +1,7 @@ "%s delade »%s« med dig", +"Couldn't send mail to following users: %s " => "Gick inte att skicka e-post till följande användare: %s", "group" => "Grupp", "Turned on maintenance mode" => "Aktiverade underhållsläge", "Turned off maintenance mode" => "Deaktiverade underhållsläge", @@ -8,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Uppdaterar filcache, det kan ta lång tid...", "Updated filecache" => "Uppdaterade filcache", "... %d%% done ..." => "... %d%% klart ...", -"Category type not provided." => "Kategorityp inte angiven.", -"No category to add?" => "Ingen kategori att lägga till?", -"This category already exists: %s" => "Denna kategori finns redan: %s", -"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.", -"No categories selected for deletion." => "Inga kategorier valda för radering.", -"Error removing %s from favorites." => "Fel vid borttagning av %s från favoriter.", "No image or file provided" => "Ingen bild eller fil har tillhandahållits", "Unknown filetype" => "Okänd filtyp", "Invalid image" => "Ogiltig bild", @@ -67,12 +60,9 @@ $TRANSLATIONS = array( "(all selected)" => "(Alla valda)", "({count} selected)" => "({count} valda)", "Error loading file exists template" => "Fel uppstod filmall existerar", -"The object type is not specified." => "Objekttypen är inte specificerad.", -"Error" => "Fel", -"The app name is not specified." => " Namnet på appen är inte specificerad.", -"The required file {file} is not installed!" => "Den nödvändiga filen {file} är inte installerad!", "Shared" => "Delad", "Share" => "Dela", +"Error" => "Fel", "Error while sharing" => "Fel vid delning", "Error while unsharing" => "Fel när delning skulle avslutas", "Error while changing permissions" => "Fel vid ändring av rättigheter", @@ -92,6 +82,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Dela vidare är inte tillåtet", "Shared in {item} with {user}" => "Delad i {item} med {user}", "Unshare" => "Sluta dela", +"notify user by email" => "notifiera användare via e-post", "can edit" => "kan redigera", "access control" => "åtkomstkontroll", "create" => "skapa", @@ -104,6 +95,9 @@ $TRANSLATIONS = array( "Sending ..." => "Skickar ...", "Email sent" => "E-post skickat", "Warning" => "Varning", +"The object type is not specified." => "Objekttypen är inte specificerad.", +"Delete" => "Radera", +"Add" => "Lägg till", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Uppdateringen misslyckades. Rapportera detta problem till ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Uppdateringen lyckades. Du omdirigeras nu till OwnCloud.", "%s password reset" => "%s återställ lösenord", @@ -126,8 +120,9 @@ $TRANSLATIONS = array( "Help" => "Hjälp", "Access forbidden" => "Åtkomst förbjuden", "Cloud not found" => "Hittade inget moln", -"Edit categories" => "Editera kategorier", -"Add" => "Lägg till", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\n", +"The share will expire on %s.\n\n" => "Utdelningen kommer att upphöra %s.⏎\n⏎\n", +"Cheers!" => "Vi höres!", "Security Warning" => "Säkerhetsvarning", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Var god uppdatera din PHP-installation för att använda %s säkert.", @@ -146,15 +141,20 @@ $TRANSLATIONS = array( "Database tablespace" => "Databas tabellutrymme", "Database host" => "Databasserver", "Finish setup" => "Avsluta installation", +"Finishing …" => "Avslutar ...", "%s is available. Get more information on how to update." => "%s är tillgänglig. Få mer information om hur du går tillväga för att uppdatera.", "Log out" => "Logga ut", "Automatic logon rejected!" => "Automatisk inloggning inte tillåten!", "If you did not change your password recently, your account may be compromised!" => "Om du inte har ändrat ditt lösenord nyligen så kan ditt konto vara manipulerat!", "Please change your password to secure your account again." => "Ändra genast lösenord för att säkra ditt konto.", +"Server side authentication failed!" => "Servern misslyckades med autentisering!", +"Please contact your administrator." => "Kontakta din administratör.", "Lost your password?" => "Glömt ditt lösenord?", "remember" => "kom ihåg", "Log in" => "Logga in", "Alternative Logins" => "Alternativa inloggningar", +"Hey there,

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

    " => "Hej där,

    ville bara informera dig om att %s delade »%s« med dig.
    Titta på den!

    ", +"The share will expire on %s.

    " => "Utdelningen kommer att upphöra %s.

    ", "Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 1756d22c78..7dba820066 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -1,13 +1,6 @@ "குழு", -"Category type not provided." => "பிரிவு வகைகள் வழங்கப்படவில்லை", -"No category to add?" => "சேர்ப்பதற்கான வகைகள் இல்லையா?", -"Object type not provided." => "பொருள் வகை வழங்கப்படவில்லை", -"%s ID not provided." => "%s ID வழங்கப்படவில்லை", -"Error adding %s to favorites." => "விருப்பங்களுக்கு %s ஐ சேர்ப்பதில் வழு", -"No categories selected for deletion." => "நீக்குவதற்கு எந்தப் பிரிவும் தெரிவுசெய்யப்படவில்லை.", -"Error removing %s from favorites." => "விருப்பத்திலிருந்து %s ஐ அகற்றுவதில் வழு.உஇஇ", "Sunday" => "ஞாயிற்றுக்கிழமை", "Monday" => "திங்கட்கிழமை", "Tuesday" => "செவ்வாய்க்கிழமை", @@ -45,11 +38,8 @@ $TRANSLATIONS = array( "Ok" => "சரி", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "இரத்து செய்க", -"The object type is not specified." => "பொருள் வகை குறிப்பிடப்படவில்லை.", -"Error" => "வழு", -"The app name is not specified." => "செயலி பெயர் குறிப்பிடப்படவில்லை.", -"The required file {file} is not installed!" => "தேவைப்பட்ட கோப்பு {கோப்பு} நிறுவப்படவில்லை!", "Share" => "பகிர்வு", +"Error" => "வழு", "Error while sharing" => "பகிரும் போதான வழு", "Error while unsharing" => "பகிராமல் உள்ளப்போதான வழு", "Error while changing permissions" => "அனுமதிகள் மாறும்போதான வழு", @@ -76,6 +66,9 @@ $TRANSLATIONS = array( "Error unsetting expiration date" => "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு", "Error setting expiration date" => "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு", "Warning" => "எச்சரிக்கை", +"The object type is not specified." => "பொருள் வகை குறிப்பிடப்படவில்லை.", +"Delete" => "நீக்குக", +"Add" => "சேர்க்க", "Use the following link to reset your password: {link}" => "உங்கள் கடவுச்சொல்லை மீளமைக்க பின்வரும் இணைப்பை பயன்படுத்தவும் : {இணைப்பு}", "You will receive a link to reset your password via Email." => "நீங்கள் மின்னஞ்சல் மூலம் உங்களுடைய கடவுச்சொல்லை மீளமைப்பதற்கான இணைப்பை பெறுவீர்கள். ", "Username" => "பயனாளர் பெயர்", @@ -91,8 +84,6 @@ $TRANSLATIONS = array( "Help" => "உதவி", "Access forbidden" => "அணுக தடை", "Cloud not found" => "Cloud காணப்படவில்லை", -"Edit categories" => "வகைகளை தொகுக்க", -"Add" => "சேர்க்க", "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." => "பாதுகாப்பான சீரற்ற எண்ணிக்கையான புறப்பாக்கி இல்லையெனின், தாக்குனரால் கடவுச்சொல் மீளமைப்பு அடையாளவில்லைகள் முன்மொழியப்பட்டு உங்களுடைய கணக்கை கைப்பற்றலாம்.", diff --git a/core/l10n/te.php b/core/l10n/te.php index d54eeabb69..0754429351 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -1,6 +1,5 @@ "ఈ వర్గం ఇప్పటికే ఉంది: %s", "Sunday" => "ఆదివారం", "Monday" => "సోమవారం", "Tuesday" => "మంగళవారం", @@ -42,11 +41,12 @@ $TRANSLATIONS = array( "Send" => "పంపించు", "Expiration date" => "కాలం చెల్లు తేదీ", "delete" => "తొలగించు", +"Delete" => "తొలగించు", +"Add" => "చేర్చు", "Username" => "వాడుకరి పేరు", "New password" => "కొత్త సంకేతపదం", "Users" => "వాడుకరులు", "Help" => "సహాయం", -"Add" => "చేర్చు", "Log out" => "నిష్క్రమించు", "Lost your password?" => "మీ సంకేతపదం పోయిందా?" ); diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index c6c0e94a32..8deb3ef20d 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -1,13 +1,6 @@ "กลุ่มผู้ใช้งาน", -"Category type not provided." => "ยังไม่ได้ระบุชนิดของหมวดหมู่", -"No category to add?" => "ไม่มีหมวดหมู่ที่ต้องการเพิ่ม?", -"Object type not provided." => "ชนิดของวัตถุยังไม่ได้ถูกระบุ", -"%s ID not provided." => "ยังไม่ได้ระบุรหัส %s", -"Error adding %s to favorites." => "เกิดข้อผิดพลาดในการเพิ่ม %s เข้าไปยังรายการโปรด", -"No categories selected for deletion." => "ยังไม่ได้เลือกหมวดหมู่ที่ต้องการลบ", -"Error removing %s from favorites." => "เกิดข้อผิดพลาดในการลบ %s ออกจากรายการโปรด", "Sunday" => "วันอาทิตย์", "Monday" => "วันจันทร์", "Tuesday" => "วันอังคาร", @@ -45,12 +38,9 @@ $TRANSLATIONS = array( "Ok" => "ตกลง", "_{count} file conflict_::_{count} file conflicts_" => array(""), "Cancel" => "ยกเลิก", -"The object type is not specified." => "ชนิดของวัตถุยังไม่ได้รับการระบุ", -"Error" => "ข้อผิดพลาด", -"The app name is not specified." => "ชื่อของแอปยังไม่ได้รับการระบุชื่อ", -"The required file {file} is not installed!" => "ไฟล์ {file} ซึ่งเป็นไฟล์ที่จำเป็นต้องได้รับการติดตั้งไว้ก่อน ยังไม่ได้ถูกติดตั้ง", "Shared" => "แชร์แล้ว", "Share" => "แชร์", +"Error" => "ข้อผิดพลาด", "Error while sharing" => "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล", "Error while unsharing" => "เกิดข้อผิดพลาดในการยกเลิกการแชร์ข้อมูล", "Error while changing permissions" => "เกิดข้อผิดพลาดในการเปลี่ยนสิทธิ์การเข้าใช้งาน", @@ -81,6 +71,9 @@ $TRANSLATIONS = array( "Sending ..." => "กำลังส่ง...", "Email sent" => "ส่งอีเมล์แล้ว", "Warning" => "คำเตือน", +"The object type is not specified." => "ชนิดของวัตถุยังไม่ได้รับการระบุ", +"Delete" => "ลบ", +"Add" => "เพิ่ม", "The update was unsuccessful. Please report this issue to the ownCloud community." => "การอัพเดทไม่เป็นผลสำเร็จ กรุณาแจ้งปัญหาที่เกิดขึ้นไปยัง คอมมูนิตี้ผู้ใช้งาน ownCloud", "The update was successful. Redirecting you to ownCloud now." => "การอัพเดทเสร็จเรียบร้อยแล้ว กำลังเปลี่ยนเส้นทางไปที่ ownCloud อยู่ในขณะนี้", "Use the following link to reset your password: {link}" => "ใช้ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่านของคุณใหม่: {link}", @@ -98,8 +91,6 @@ $TRANSLATIONS = array( "Help" => "ช่วยเหลือ", "Access forbidden" => "การเข้าถึงถูกหวงห้าม", "Cloud not found" => "ไม่พบ Cloud", -"Edit categories" => "แก้ไขหมวดหมู่", -"Add" => "เพิ่ม", "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." => "หากปราศจากตัวสร้างหมายเลขแบบสุ่มที่ช่วยป้องกันความปลอดภัย ผู้บุกรุกอาจสามารถที่จะคาดคะเนรหัสยืนยันการเข้าถึงเพื่อรีเซ็ตรหัสผ่าน และเอาบัญชีของคุณไปเป็นของตนเองได้", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 57603895c9..f10f3cf25b 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -1,6 +1,7 @@ "%s sizinle »%s« paylaşımında bulundu", +"Couldn't send mail to following users: %s " => "Şu kullanıcılara posta gönderilemedi: %s", "group" => "grup", "Turned on maintenance mode" => "Bakım kipi etkinleştirildi", "Turned off maintenance mode" => "Bakım kipi kapatıldı", @@ -8,14 +9,11 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "Dosya önbelleği güncelleniyor. Bu, gerçekten uzun sürebilir.", "Updated filecache" => "Dosya önbelleği güncellendi", "... %d%% done ..." => "%%%d tamamlandı ...", -"Category type not provided." => "Kategori türü girilmedi.", -"No category to add?" => "Eklenecek kategori yok?", -"This category already exists: %s" => "Bu kategori zaten mevcut: %s", -"Object type not provided." => "Nesne türü desteklenmemektedir.", -"%s ID not provided." => "%s ID belirtilmedi.", -"Error adding %s to favorites." => "%s favorilere eklenirken hata oluştu", -"No categories selected for deletion." => "Silmek için bir kategori seçilmedi", -"Error removing %s from favorites." => "%s favorilere çıkarılırken hata oluştu", +"No image or file provided" => "Resim veya dosya belirtilmedi", +"Unknown filetype" => "Bilinmeyen dosya türü", +"Invalid image" => "Geçersiz resim", +"No temporary profile picture available, try again" => "Kullanılabilir geçici profil resmi yok, tekrar deneyin", +"No crop data provided" => "Kesme verisi sağlanmamış", "Sunday" => "Pazar", "Monday" => "Pazartesi", "Tuesday" => "Salı", @@ -48,17 +46,23 @@ $TRANSLATIONS = array( "last year" => "geçen yıl", "years ago" => "yıl önce", "Choose" => "seç", +"Error loading file picker template: {error}" => "Dosya seçici şablonu yüklenirken hata: {error}", "Yes" => "Evet", "No" => "Hayır", "Ok" => "Tamam", -"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Error loading message template: {error}" => "İleti şablonu yüklenirken hata: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} dosya çakışması","{count} dosya çakışması"), +"One file conflict" => "Bir dosya çakışması", +"Which files do you want to keep?" => "Hangi dosyaları saklamak istiyorsunuz?", +"If you select both versions, the copied file will have a number added to its name." => "Eğer iki sürümü de seçerseniz, kopyalanan dosya ismine eklenmiş bir sayı içerecektir.", "Cancel" => "İptal", -"The object type is not specified." => "Nesne türü belirtilmemiş.", -"Error" => "Hata", -"The app name is not specified." => "uygulama adı belirtilmedi.", -"The required file {file} is not installed!" => "İhtiyaç duyulan {file} dosyası kurulu değil.", +"Continue" => "Devam et", +"(all selected)" => "(tümü seçildi)", +"({count} selected)" => "({count} seçildi)", +"Error loading file exists template" => "Dosya mevcut şablonu yüklenirken hata", "Shared" => "Paylaşılan", "Share" => "Paylaş", +"Error" => "Hata", "Error while sharing" => "Paylaşım sırasında hata ", "Error while unsharing" => "Paylaşım iptal ediliyorken hata", "Error while changing permissions" => "İzinleri değiştirirken hata oluştu", @@ -78,6 +82,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Tekrar paylaşmaya izin verilmiyor", "Shared in {item} with {user}" => " {item} içinde {user} ile paylaşılanlarlar", "Unshare" => "Paylaşılmayan", +"notify user by email" => "kullanıcıyı e-posta ile bildir", "can edit" => "düzenleyebilir", "access control" => "erişim kontrolü", "create" => "oluştur", @@ -90,6 +95,13 @@ $TRANSLATIONS = array( "Sending ..." => "Gönderiliyor...", "Email sent" => "Eposta gönderildi", "Warning" => "Uyarı", +"The object type is not specified." => "Nesne türü belirtilmemiş.", +"Enter new" => "Yeni girin", +"Delete" => "Sil", +"Add" => "Ekle", +"Edit tags" => "Etiketleri düzenle", +"Error loading dialog template: {error}" => "İletişim şablonu yüklenirken hata: {error}", +"No tags selected for deletion." => "Silmek için bir etiket seçilmedi.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "Güncelleme başarılı. ownCloud'a yönlendiriliyor.", "%s password reset" => "%s parola sıfırlama", @@ -110,10 +122,18 @@ $TRANSLATIONS = array( "Apps" => "Uygulamalar", "Admin" => "Yönetici", "Help" => "Yardım", +"Error loading tags" => "Etiketler yüklenirken hata", +"Tag already exists" => "Etiket zaten mevcut", +"Error deleting tag(s)" => "Etiket(ler) silinirken hata", +"Error tagging" => "Etiketleme hatası", +"Error untagging" => "Etiket kaldırılırken hata", +"Error favoriting" => "Beğenilirken hata", +"Error unfavoriting" => "Beğeniden kaldırılırken hata", "Access forbidden" => "Erişim yasaklı", "Cloud not found" => "Bulut bulunamadı", -"Edit categories" => "Kategorileri düzenle", -"Add" => "Ekle", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Merhaba,\n\nSadece %s sizinle %s paylaşımını yaptığını bildiriyoruz.\nBuradan bakabilirsiniz: %s\n\n", +"The share will expire on %s.\n\n" => "Paylaşım %s tarihinde bitecektir.\n\n", +"Cheers!" => "Şerefe!", "Security Warning" => "Güvenlik Uyarisi", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP sürümünüz NULL Byte saldırısına açık (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "%s güvenli olarak kullanmak için, lütfen PHP kurulumunuzu güncelleyin.", @@ -132,15 +152,20 @@ $TRANSLATIONS = array( "Database tablespace" => "Veritabanı tablo alanı", "Database host" => "Veritabanı sunucusu", "Finish setup" => "Kurulumu tamamla", +"Finishing …" => "Tamamlanıyor ..", "%s is available. Get more information on how to update." => "%s mevcuttur. Güncelleştirme hakkında daha fazla bilgi alın.", "Log out" => "Çıkış yap", "Automatic logon rejected!" => "Otomatik oturum açma reddedildi!", "If you did not change your password recently, your account may be compromised!" => "Yakın zamanda parolanızı değiştirmedi iseniz hesabınız riske girebilir.", "Please change your password to secure your account again." => "Hesabınızı korumak için lütfen parolanızı değiştirin.", +"Server side authentication failed!" => "Sunucu taraflı yetkilendirme başarısız!", +"Please contact your administrator." => "Lütfen sistem yöneticisi ile iletişime geçin.", "Lost your password?" => "Parolanızı mı unuttunuz?", "remember" => "hatırla", "Log in" => "Giriş yap", "Alternative Logins" => "Alternatif Girişler", +"Hey there,

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

    " => "Merhaba,

    %s sizinle »%s« paylaşımında bulundu.
    Paylaşımı gör!

    İyi günler!", +"The share will expire on %s.

    " => "Bu paylaşım %s tarihinde dolacaktır.

    ", "Updating ownCloud to version %s, this may take a while." => "Owncloud %s versiyonuna güncelleniyor. Biraz zaman alabilir." ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/ug.php b/core/l10n/ug.php index 621c45d4d0..3d9d39c854 100644 --- a/core/l10n/ug.php +++ b/core/l10n/ug.php @@ -32,8 +32,8 @@ $TRANSLATIONS = array( "Ok" => "جەزملە", "_{count} file conflict_::_{count} file conflicts_" => array(""), "Cancel" => "ۋاز كەچ", -"Error" => "خاتالىق", "Share" => "ھەمبەھىر", +"Error" => "خاتالىق", "Share with" => "ھەمبەھىر", "Password" => "ئىم", "Send" => "يوللا", @@ -41,14 +41,14 @@ $TRANSLATIONS = array( "delete" => "ئۆچۈر", "share" => "ھەمبەھىر", "Warning" => "ئاگاھلاندۇرۇش", +"Delete" => "ئۆچۈر", +"Add" => "قوش", "Username" => "ئىشلەتكۈچى ئاتى", "New password" => "يېڭى ئىم", "Personal" => "شەخسىي", "Users" => "ئىشلەتكۈچىلەر", "Apps" => "ئەپلەر", "Help" => "ياردەم", -"Edit categories" => "تۈر تەھرىر", -"Add" => "قوش", "Security Warning" => "بىخەتەرلىك ئاگاھلاندۇرۇش", "Advanced" => "ئالىي", "Finish setup" => "تەڭشەك تامام", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 6bd6901815..64e79abcdd 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -1,14 +1,6 @@ "група", -"Category type not provided." => "Не вказано тип категорії.", -"No category to add?" => "Відсутні категорії для додавання?", -"This category already exists: %s" => "Ця категорія вже існує: %s", -"Object type not provided." => "Не вказано тип об'єкту.", -"%s ID not provided." => "%s ID не вказано.", -"Error adding %s to favorites." => "Помилка при додаванні %s до обраного.", -"No categories selected for deletion." => "Жодної категорії не обрано для видалення.", -"Error removing %s from favorites." => "Помилка при видалені %s із обраного.", "Sunday" => "Неділя", "Monday" => "Понеділок", "Tuesday" => "Вівторок", @@ -46,12 +38,9 @@ $TRANSLATIONS = array( "Ok" => "Ok", "_{count} file conflict_::_{count} file conflicts_" => array("","",""), "Cancel" => "Відмінити", -"The object type is not specified." => "Не визначено тип об'єкту.", -"Error" => "Помилка", -"The app name is not specified." => "Не визначено ім'я програми.", -"The required file {file} is not installed!" => "Необхідний файл {file} не встановлено!", "Shared" => "Опубліковано", "Share" => "Поділитися", +"Error" => "Помилка", "Error while sharing" => "Помилка під час публікації", "Error while unsharing" => "Помилка під час відміни публікації", "Error while changing permissions" => "Помилка при зміні повноважень", @@ -82,6 +71,9 @@ $TRANSLATIONS = array( "Sending ..." => "Надсилання...", "Email sent" => "Ел. пошта надіслана", "Warning" => "Попередження", +"The object type is not specified." => "Не визначено тип об'єкту.", +"Delete" => "Видалити", +"Add" => "Додати", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Оновлення виконалось неуспішно. Будь ласка, повідомте про цю проблему в спільноті ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Оновлення виконалось успішно. Перенаправляємо вас на ownCloud.", "Use the following link to reset your password: {link}" => "Використовуйте наступне посилання для скидання пароля: {link}", @@ -99,8 +91,6 @@ $TRANSLATIONS = array( "Help" => "Допомога", "Access forbidden" => "Доступ заборонено", "Cloud not found" => "Cloud не знайдено", -"Edit categories" => "Редагувати категорії", -"Add" => "Додати", "Security Warning" => "Попередження про небезпеку", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версія PHP вразлива для атак NULL Byte (CVE-2006-7243)", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Не доступний безпечний генератор випадкових чисел, будь ласка, активуйте PHP OpenSSL додаток.", diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index fc73677912..9d40392c08 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -1,7 +1,5 @@ "شامل کرنے کے لیے کوئی زمرہ نہیں؟", -"No categories selected for deletion." => "ختم کرنے کے لیے کسی زمرہ جات کا انتخاب نہیں کیا گیا۔", "January" => "جنوری", "February" => "فرورئ", "March" => "مارچ", @@ -45,6 +43,7 @@ $TRANSLATIONS = array( "delete" => "ختم کریں", "share" => "شئیر کریں", "Password protected" => "پاسورڈ سے محفوظ کیا گیا ہے", +"Add" => "شامل کریں", "Use the following link to reset your password: {link}" => "اپنا پاسورڈ ری سیٹ کرنے کے لیے اس لنک پر کلک کریں۔ {link}", "You will receive a link to reset your password via Email." => "آپ ای میل کے ذریعے اپنے پاسورڈ ری سیٹ کا لنک موصول کریں گے", "Username" => "یوزر نیم", @@ -60,8 +59,6 @@ $TRANSLATIONS = array( "Help" => "مدد", "Access forbidden" => "پہنچ کی اجازت نہیں", "Cloud not found" => "نہیں مل سکا", -"Edit categories" => "زمرہ جات کی تدوین کریں", -"Add" => "شامل کریں", "Create an admin account" => "ایک ایڈمن اکاؤنٹ بنائیں", "Advanced" => "ایڈوانسڈ", "Data folder" => "ڈیٹا فولڈر", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 2e3d956935..9d335e4427 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -1,14 +1,6 @@ "nhóm", -"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: %s" => "Danh mục này đã tồn tại: %s", -"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.", -"No categories selected for deletion." => "Bạn chưa chọn mục để xóa", -"Error removing %s from favorites." => "Lỗi xóa %s từ mục yêu thích.", "Sunday" => "Chủ nhật", "Monday" => "Thứ 2", "Tuesday" => "Thứ 3", @@ -46,12 +38,9 @@ $TRANSLATIONS = array( "Ok" => "Đồng ý", "_{count} file conflict_::_{count} file conflicts_" => array(""), "Cancel" => "Hủy", -"The object type is not specified." => "Loại đối tượng không được chỉ định.", -"Error" => "Lỗi", -"The app name is not specified." => "Tên ứng dụng không được chỉ định.", -"The required file {file} is not installed!" => "Tập tin cần thiết {file} không được cài đặt!", "Shared" => "Được chia sẻ", "Share" => "Chia sẻ", +"Error" => "Lỗi", "Error while sharing" => "Lỗi trong quá trình chia sẻ", "Error while unsharing" => "Lỗi trong quá trình gỡ chia sẻ", "Error while changing permissions" => "Lỗi trong quá trình phân quyền", @@ -82,6 +71,9 @@ $TRANSLATIONS = array( "Sending ..." => "Đang gởi ...", "Email sent" => "Email đã được gửi", "Warning" => "Cảnh báo", +"The object type is not specified." => "Loại đối tượng không được chỉ định.", +"Delete" => "Xóa", +"Add" => "Thêm", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Cập nhật không thành công . Vui lòng thông báo đến Cộng đồng ownCloud .", "The update was successful. Redirecting you to ownCloud now." => "Cập nhật thành công .Hệ thống sẽ đưa bạn tới ownCloud.", "Use the following link to reset your password: {link}" => "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}", @@ -101,8 +93,6 @@ $TRANSLATIONS = array( "Help" => "Giúp đỡ", "Access forbidden" => "Truy cập bị cấm", "Cloud not found" => "Không tìm thấy Clound", -"Edit categories" => "Sửa chuyên mục", -"Add" => "Thêm", "Security Warning" => "Cảnh bảo bảo mật", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Phiên bản PHP của bạn có lỗ hổng NULL Byte attack (CVE-2006-7243)", "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.", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 6a5dcb50a9..727daccad0 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -8,14 +8,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "正在更新文件缓存,这可能需要较长时间...", "Updated filecache" => "文件缓存已更新", "... %d%% done ..." => "...已完成 %d%% ...", -"Category type not provided." => "未提供分类类型。", -"No category to add?" => "没有可添加分类?", -"This category already exists: %s" => "此分类已存在:%s", -"Object type not provided." => "未提供对象类型。", -"%s ID not provided." => "%s ID未提供。", -"Error adding %s to favorites." => "向收藏夹中新增%s时出错。", -"No categories selected for deletion." => "没有选择要删除的类别", -"Error removing %s from favorites." => "从收藏夹中移除%s时出错。", "Sunday" => "星期日", "Monday" => "星期一", "Tuesday" => "星期二", @@ -53,12 +45,9 @@ $TRANSLATIONS = array( "Ok" => "好", "_{count} file conflict_::_{count} file conflicts_" => array(""), "Cancel" => "取消", -"The object type is not specified." => "未指定对象类型。", -"Error" => "错误", -"The app name is not specified." => "未指定应用名称。", -"The required file {file} is not installed!" => "所需文件{file}未安装!", "Shared" => "已共享", "Share" => "分享", +"Error" => "错误", "Error while sharing" => "共享时出错", "Error while unsharing" => "取消共享时出错", "Error while changing permissions" => "修改权限时出错", @@ -90,6 +79,9 @@ $TRANSLATIONS = array( "Sending ..." => "正在发送...", "Email sent" => "邮件已发送", "Warning" => "警告", +"The object type is not specified." => "未指定对象类型。", +"Delete" => "删除", +"Add" => "增加", "The update was unsuccessful. Please report this issue to the ownCloud community." => "更新不成功。请汇报将此问题汇报给 ownCloud 社区。", "The update was successful. Redirecting you to ownCloud now." => "更新成功。正在重定向至 ownCloud。", "%s password reset" => "重置 %s 的密码", @@ -112,8 +104,6 @@ $TRANSLATIONS = array( "Help" => "帮助", "Access forbidden" => "访问禁止", "Cloud not found" => "未找到云", -"Edit categories" => "编辑分类", -"Add" => "增加", "Security Warning" => "安全警告", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "你的PHP版本容易受到空字节攻击 (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "为保证安全使用 %s 请更新您的PHP。", diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index f6c4003af6..50caa86a2f 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -33,9 +33,9 @@ $TRANSLATIONS = array( "Ok" => "OK", "_{count} file conflict_::_{count} file conflicts_" => array(""), "Cancel" => "取消", -"Error" => "錯誤", "Shared" => "已分享", "Share" => "分享", +"Error" => "錯誤", "Error while sharing" => "分享時發生錯誤", "Error while unsharing" => "取消分享時發生錯誤", "Error while changing permissions" => "更改權限時發生錯誤", @@ -58,6 +58,8 @@ $TRANSLATIONS = array( "Password protected" => "密碼保護", "Sending ..." => "傳送中", "Email sent" => "郵件已傳", +"Delete" => "刪除", +"Add" => "加入", "The update was successful. Redirecting you to ownCloud now." => "更新成功, 正", "Use the following link to reset your password: {link}" => "請用以下連結重設你的密碼: {link}", "You will receive a link to reset your password via Email." => "你將收到一封電郵", @@ -73,7 +75,6 @@ $TRANSLATIONS = array( "Admin" => "管理", "Help" => "幫助", "Cloud not found" => "未找到Cloud", -"Add" => "加入", "Create an admin account" => "建立管理員帳戶", "Advanced" => "進階", "Configure the database" => "設定資料庫", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 1483329bbf..0cb4967b2b 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -9,14 +9,6 @@ $TRANSLATIONS = array( "Updating filecache, this may take really long..." => "更新檔案快取,這可能要很久…", "Updated filecache" => "已更新檔案快取", "... %d%% done ..." => "已完成 %d%%", -"Category type not provided." => "未提供分類類型。", -"No category to add?" => "沒有可增加的分類?", -"This category already exists: %s" => "分類已經存在:%s", -"Object type not provided." => "未指定物件類型", -"%s ID not provided." => "未提供 %s ID 。", -"Error adding %s to favorites." => "加入 %s 到最愛時發生錯誤。", -"No categories selected for deletion." => "沒有選擇要刪除的分類。", -"Error removing %s from favorites." => "從最愛移除 %s 時發生錯誤。", "No image or file provided" => "未提供圖片或檔案", "Unknown filetype" => "未知的檔案類型", "Invalid image" => "無效的圖片", @@ -68,12 +60,9 @@ $TRANSLATIONS = array( "(all selected)" => "(已全選)", "({count} selected)" => "(已選 {count} 項)", "Error loading file exists template" => "載入檔案存在樣板出錯", -"The object type is not specified." => "未指定物件類型。", -"Error" => "錯誤", -"The app name is not specified." => "沒有指定 app 名稱。", -"The required file {file} is not installed!" => "沒有安裝所需的檔案 {file} !", "Shared" => "已分享", "Share" => "分享", +"Error" => "錯誤", "Error while sharing" => "分享時發生錯誤", "Error while unsharing" => "取消分享時發生錯誤", "Error while changing permissions" => "修改權限時發生錯誤", @@ -106,6 +95,9 @@ $TRANSLATIONS = array( "Sending ..." => "正在傳送…", "Email sent" => "Email 已寄出", "Warning" => "警告", +"The object type is not specified." => "未指定物件類型。", +"Delete" => "刪除", +"Add" => "增加", "The update was unsuccessful. Please report this issue to the ownCloud community." => "升級失敗,請將此問題回報 ownCloud 社群。", "The update was successful. Redirecting you to ownCloud now." => "升級成功,正將您重新導向至 ownCloud 。", "%s password reset" => "%s 密碼重設", @@ -131,8 +123,6 @@ $TRANSLATIONS = array( "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "嗨,\n\n%s 和你分享了 %s ,到這裡看它:%s\n", "The share will expire on %s.\n\n" => "分享將於 %s 過期\n", "Cheers!" => "太棒了!", -"Edit categories" => "編輯分類", -"Add" => "增加", "Security Warning" => "安全性警告", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "請更新 PHP 以安全地使用 %s。", diff --git a/core/routes.php b/core/routes.php index 57e25c0f1f..5009243d59 100644 --- a/core/routes.php +++ b/core/routes.php @@ -23,19 +23,43 @@ $this->create('core_ajax_share', '/core/ajax/share.php') // Translations $this->create('core_ajax_translations', '/core/ajax/translations.php') ->actionInclude('core/ajax/translations.php'); -// VCategories -$this->create('core_ajax_vcategories_add', '/core/ajax/vcategories/add.php') - ->actionInclude('core/ajax/vcategories/add.php'); -$this->create('core_ajax_vcategories_delete', '/core/ajax/vcategories/delete.php') - ->actionInclude('core/ajax/vcategories/delete.php'); -$this->create('core_ajax_vcategories_addtofavorites', '/core/ajax/vcategories/addToFavorites.php') - ->actionInclude('core/ajax/vcategories/addToFavorites.php'); -$this->create('core_ajax_vcategories_removefromfavorites', '/core/ajax/vcategories/removeFromFavorites.php') - ->actionInclude('core/ajax/vcategories/removeFromFavorites.php'); -$this->create('core_ajax_vcategories_favorites', '/core/ajax/vcategories/favorites.php') - ->actionInclude('core/ajax/vcategories/favorites.php'); -$this->create('core_ajax_vcategories_edit', '/core/ajax/vcategories/edit.php') - ->actionInclude('core/ajax/vcategories/edit.php'); +// Tags +$this->create('core_tags_tags', '/tags/{type}') + ->get() + ->action('OC\Core\Tags\Controller', 'getTags') + ->requirements(array('type')); +$this->create('core_tags_favorites', '/tags/{type}/favorites') + ->get() + ->action('OC\Core\Tags\Controller', 'getFavorites') + ->requirements(array('type')); +$this->create('core_tags_ids_for_tag', '/tags/{type}/ids') + ->get() + ->action('OC\Core\Tags\Controller', 'getIdsForTag') + ->requirements(array('type')); +$this->create('core_tags_favorite', '/tags/{type}/favorite/{id}/') + ->post() + ->action('OC\Core\Tags\Controller', 'favorite') + ->requirements(array('type', 'id')); +$this->create('core_tags_unfavorite', '/tags/{type}/unfavorite/{id}/') + ->post() + ->action('OC\Core\Tags\Controller', 'unFavorite') + ->requirements(array('type', 'id')); +$this->create('core_tags_tag', '/tags/{type}/tag/{id}/') + ->post() + ->action('OC\Core\Tags\Controller', 'tagAs') + ->requirements(array('type', 'id')); +$this->create('core_tags_untag', '/tags/{type}/untag/{id}/') + ->post() + ->action('OC\Core\Tags\Controller', 'unTag') + ->requirements(array('type', 'id')); +$this->create('core_tags_add', '/tags/{type}/add') + ->post() + ->action('OC\Core\Tags\Controller', 'addTag') + ->requirements(array('type')); +$this->create('core_tags_delete', '/tags/{type}/delete') + ->post() + ->action('OC\Core\Tags\Controller', 'deleteTags') + ->requirements(array('type')); // oC JS config $this->create('js_config', '/core/js/config.js') ->actionInclude('core/js/config.php'); diff --git a/core/tags/controller.php b/core/tags/controller.php new file mode 100644 index 0000000000..c790d43345 --- /dev/null +++ b/core/tags/controller.php @@ -0,0 +1,114 @@ +getTagManager()->load($type); + return $tagger; + } catch(\Exception $e) { + \OCP\Util::writeLog('core', __METHOD__ . ' Exception: ' . $e->getMessage(), \OCP\Util::ERROR); + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Error loading tags'))); + exit; + } + } + + public static function getTags($args) { + $tagger = self::getTagger($args['type']); + \OC_JSON::success(array('tags'=> $tagger->getTags())); + } + + public static function getFavorites($args) { + $tagger = self::getTagger($args['type']); + \OC_JSON::success(array('ids'=> $tagger->getFavorites())); + } + + public static function getIdsForTag($args) { + $tagger = self::getTagger($args['type']); + \OC_JSON::success(array('ids'=> $tagger->getIdsForTag($_GET['tag']))); + } + + public static function addTag($args) { + $tagger = self::getTagger($args['type']); + + $id = $tagger->add(strip_tags($_POST['tag'])); + if($id === false) { + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Tag already exists'))); + } else { + \OC_JSON::success(array('id'=> $id)); + } + } + + public static function deleteTags($args) { + $tags = $_POST['tags']; + if(!is_array($tags)) { + $tags = array($tags); + } + + $tagger = self::getTagger($args['type']); + + if(!$tagger->delete($tags)) { + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Error deleting tag(s)'))); + } else { + \OC_JSON::success(); + } + } + + public static function tagAs($args) { + $tagger = self::getTagger($args['type']); + + if(!$tagger->tagAs($args['id'], $_POST['tag'])) { + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Error tagging'))); + } else { + \OC_JSON::success(); + } + } + + public static function unTag($args) { + $tagger = self::getTagger($args['type']); + + if(!$tagger->unTag($args['id'], $_POST['tag'])) { + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Error untagging'))); + } else { + \OC_JSON::success(); + } + } + + public static function favorite($args) { + $tagger = self::getTagger($args['type']); + + if(!$tagger->addToFavorites($args['id'])) { + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Error favoriting'))); + } else { + \OC_JSON::success(); + } + } + + public static function unFavorite($args) { + $tagger = self::getTagger($args['type']); + + if(!$tagger->removeFromFavorites($args['id'])) { + $l = new \OC_L10n('core'); + \OC_JSON::error(array('message'=> $l->t('Error unfavoriting'))); + } else { + \OC_JSON::success(); + } + } + +} diff --git a/core/templates/edit_categories_dialog.php b/core/templates/edit_categories_dialog.php deleted file mode 100644 index ea155bdf0b..0000000000 --- a/core/templates/edit_categories_dialog.php +++ /dev/null @@ -1,19 +0,0 @@ - -
    - -
    -
    -
      - -
    • - -
    -
    -
    - - -
    -
    -
    diff --git a/core/templates/installation.php b/core/templates/installation.php index 5a10376226..a6f55cb0e2 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -61,13 +61,13 @@

    - + 0): ?>
    t( 'Advanced' )); ?>
    - + 0): ?>
    @@ -78,7 +78,7 @@
    - + 0): ?>
    diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index ea10c3042b..8cd237deea 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -11,6 +11,7 @@ getTitle()); ?> + diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 9c9eb63382..47ca5903da 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -11,6 +11,7 @@ getTitle()); ?> + diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index fcca43624f..d30313a67c 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -14,6 +14,7 @@ + diff --git a/core/templates/tags.html b/core/templates/tags.html new file mode 100644 index 0000000000..ae3d072b38 --- /dev/null +++ b/core/templates/tags.html @@ -0,0 +1,14 @@ +
    +
    +
    +
      +
    • + +
    • +
    +
    +
    + +
    +
    +
    diff --git a/l10n/ach/core.po b/l10n/ach/core.po index 701d593aca..aeeb726515 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ach/files_sharing.po b/l10n/ach/files_sharing.po index a6aa642bca..aeebd1b020 100644 --- a/l10n/ach/files_sharing.po +++ b/l10n/ach/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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ach/files_trashbin.po b/l10n/ach/files_trashbin.po index 327f892ea0..1eeccfe967 100644 --- a/l10n/ach/files_trashbin.po +++ b/l10n/ach/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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ach/user_ldap.po b/l10n/ach/user_ldap.po index 8c2514234b..3c13f155ee 100644 --- a/l10n/ach/user_ldap.po +++ b/l10n/ach/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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/ady/core.po b/l10n/ady/core.po index 1754aa785e..9fbbc62f1a 100644 --- a/l10n/ady/core.po +++ b/l10n/ady/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ady/files_sharing.po b/l10n/ady/files_sharing.po index aa1df900ca..b243c28faa 100644 --- a/l10n/ady/files_sharing.po +++ b/l10n/ady/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:16 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:19 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:27 templates/public.php:93 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:44 templates/public.php:47 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:57 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:90 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ady/files_trashbin.po b/l10n/ady/files_trashbin.po index 1b92cb7f60..c8916178f7 100644 --- a/l10n/ady/files_trashbin.po +++ b/l10n/ady/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ady/user_ldap.po b/l10n/ady/user_ldap.po index de9ce044f3..2548c7e3ea 100644 --- a/l10n/ady/user_ldap.po +++ b/l10n/ady/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index b5188e5a89..1ddd721194 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index 1aa1c35c8b..4b54e1192c 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Wagwoord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index 020abe02dd..4d4d4b186e 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index 77d655e8a7..5d6c979971 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hulp" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 296a28042f..066dc5e2c4 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -57,45 +57,6 @@ msgstr "" msgid "... %d%% done ..." 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 "هذا التصنيف موجود مسبقا : %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "نوع العنصر لم يدخل" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "رقم %s لم يدخل" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "خطأ في اضافة %s الى المفضلة" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "لم يتم اختيار فئة للحذف" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "خطأ في حذف %s من المفضلة" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -196,11 +157,11 @@ msgstr "كانون الاول" msgid "Settings" msgstr "إعدادات" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -210,7 +171,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -220,15 +181,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "اليوم" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -238,11 +199,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -252,15 +213,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "سنة مضت" @@ -332,27 +293,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "نوع العنصر غير محدد." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "خطأ" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "اسم التطبيق غير محدد." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "الملف المطلوب {file} غير منصّب." - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "مشارك" @@ -361,6 +301,11 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "خطأ" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -489,6 +434,34 @@ msgstr "تم ارسال البريد الالكتروني" msgid "Warning" msgstr "تحذير" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "نوع العنصر غير محدد." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "إلغاء" + +#: js/tags.js:31 +msgid "Add" +msgstr "اضف" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -76,15 +76,15 @@ msgstr "خطأ في الكتابة على القرص الصلب" msgid "Not enough storage available" msgstr "لا يوجد مساحة تخزينية كافية" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "فشلت عملية الرفع. تعذر الحصول على معلومات الملف." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله." -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "مسار غير صحيح." @@ -92,36 +92,36 @@ msgstr "مسار غير صحيح." msgid "Files" msgstr "الملفات" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "تعذر رفع الملف {filename} إما لأنه مجلد أو لان حجم الملف 0 بايت" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "لا توجد مساحة كافية" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "تم إلغاء عملية رفع الملفات ." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "تعذر الحصول على نتيجة من الخادم" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "عنوان ال URL لا يجوز أن يكون فارغا." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "تسمية ملف غير صالحة. استخدام الاسم \"shared\" محجوز بواسطة ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "خطأ" @@ -133,11 +133,11 @@ msgstr "شارك" msgid "Delete permanently" msgstr "حذف بشكل دائم" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "قيد الانتظار" @@ -165,7 +165,7 @@ msgstr "استبدل {new_name} بـ {old_name}" msgid "undo" msgstr "تراجع" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "لا يوجد مجلدات %n" @@ -175,7 +175,7 @@ msgstr[3] "عدد قليل من مجلدات %n" msgstr[4] "عدد كبير من مجلدات %n" msgstr[5] "مجلدات %n" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "لا يوجد ملفات %n" @@ -189,7 +189,7 @@ msgstr[5] " ملفات %n" msgid "{dirs} and {files}" msgstr "{dirs} و {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "لا يوجد ملفات %n لتحميلها" @@ -240,25 +240,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "تم تعطيل التشفير لكن ملفاتك لا تزال مشفرة. فضلا اذهب إلى الإعدادات الشخصية لإزالة التشفير عن ملفاتك." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "حدث خطأ أثناء نقل الملف" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "اسم" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "حجم" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "معدل" @@ -267,7 +267,7 @@ msgstr "معدل" msgid "%s could not be renamed" msgstr "%s لا يمكن إعادة تسميته. " -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "رفع" @@ -303,65 +303,65 @@ msgstr "الحد الأقصى المسموح به لملفات ZIP" msgid "Save" msgstr "حفظ" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "جديد" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "ملف" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "مجلد" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "من رابط" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "حذف الملفات" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "لا تملك صلاحيات الكتابة هنا." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "تحميل" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "إلغاء مشاركة" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "إلغاء" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "يرجى الانتظار , جاري فحص الملفات ." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "الفحص الحالي" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index ead512918b..75459ab8ed 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "التشفير" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index b931dc9eae..2480f78e0d 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Meesh , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: Meesh \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,7 +64,7 @@ msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "اسم المجلد" #: templates/settings.php:10 msgid "External storage" @@ -91,7 +92,7 @@ msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "" +msgstr "كل المستخدمين" #: templates/settings.php:92 msgid "Groups" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index df2684b93d..a0c36d0049 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "كلمة المرور" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "تطبيق" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s شارك المجلد %s معك" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s شارك الملف %s معك" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "تحميل" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "رفع" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "لا يوجد عرض مسبق لـ" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 9edd1eb64d..eb3bd65b79 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 19:20+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -27,63 +27,31 @@ msgstr "تعذّر حذف%s بشكل دائم" msgid "Couldn't restore %s" msgstr "تعذّر استرجاع %s " -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "إبدء عملية الإستعادة" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "خطأ" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "حذف بشكل دائم" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "حذف بشكل دائم" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "اسم" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "تم الحذف" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "مجلدات %n" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] " ملفات %n" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "لا يوجد شيء هنا. سلة المهملات خاليه." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "اسم" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "استعيد" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "تم الحذف" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "إلغاء" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 3f8379851c..0260283e0e 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 22:20+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "حدث" msgid "Updated" msgstr "تم التحديث بنجاح" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "جاري الحفظ..." @@ -181,32 +181,32 @@ msgstr "تراجع" msgid "Unable to remove user" msgstr "تعذر حذف المستخدم" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "مجموعات" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "مدير المجموعة" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "إلغاء" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "اضافة مجموعة" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "يجب ادخال اسم مستخدم صحيح" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "حصل خطأ اثناء انشاء مستخدم" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "يجب ادخال كلمة مرور صحيحة" @@ -384,11 +384,11 @@ msgstr "المزيد" msgid "Less" msgstr "أقل" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "إصدار" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "التشفير" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 7044e64401..3f48a29c48 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "المساعدة" diff --git a/l10n/be/core.po b/l10n/be/core.po index 4af6a1a1c6..1e8e9ca8b4 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -321,27 +282,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -350,6 +290,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -478,6 +423,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index d8ea6184ff..0a51f46b08 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index 770cceb542..d784d5ddc5 100644 --- a/l10n/be/files_trashbin.po +++ b/l10n/be/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -27,47 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -75,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index f2cad633ff..5f5d2303a8 100644 --- a/l10n/be/user_ldap.po +++ b/l10n/be/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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 599f5e79e2..64538986e5 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,55 +156,55 @@ msgstr "Декември" msgid "Settings" msgstr "Настройки" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "днес" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "вчера" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "последният месец" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "последната година" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "последните години" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Грешка" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "Споделяне" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Грешка" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "Внимание" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Изтриване" + +#: js/tags.js:31 +msgid "Add" +msgstr "Добавяне" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "Възникна проблем при запис в диска" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Невалидна директория." @@ -90,36 +90,36 @@ msgstr "Невалидна директория." msgid "Files" msgstr "Файлове" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Качването е спряно." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Грешка" @@ -131,11 +131,11 @@ msgstr "Споделяне" msgid "Delete permanently" msgstr "Изтриване завинаги" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Чакащо" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "възтановяване" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,7 +179,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Име" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Размер" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Променено" @@ -253,7 +253,7 @@ msgstr "Променено" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Качване" @@ -289,65 +289,65 @@ msgstr "" msgid "Save" msgstr "Запис" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ново" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Текстов файл" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Папка" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Спри качването" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Няма нищо тук. Качете нещо." -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Изтегляне" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Изтриване" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Файлът който сте избрали за качване е прекалено голям" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Файловете се претърсват, изчакайте." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 8d27a845f1..68702844a5 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Криптиране" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 9909177f6f..327f471d51 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 20f297f9cd..a412adb58f 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Парола" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Потвърждение" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s сподели папката %s с Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s сподели файла %s с Вас" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Изтегляне" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Качване" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Спри качването" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Няма наличен преглед за" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 4808f7ca75..407955aa6c 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -28,55 +28,31 @@ msgstr "Невъзможно перманентното изтриване на msgid "Couldn't restore %s" msgstr "Невъзможно възтановяване на %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "извършване на действие по възстановяване" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Грешка" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "изтриване на файла завинаги" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Изтриване завинаги" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Име" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Изтрито" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Няма нищо. Кофата е празна!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Име" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Възтановяване" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Изтрито" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Изтриване" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index c5b133ff9b..31b3564b5f 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "Обновяване" msgid "Updated" msgstr "Обновено" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Записване..." @@ -181,32 +181,32 @@ msgstr "възтановяване" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Групи" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Изтриване" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "нова група" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "Още" msgid "Less" msgstr "По-малко" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Версия" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Криптиране" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index af4a44396f..d013104d5d 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Помощ" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 0896829247..5645d1e3f4 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "%s ID প্রদান করা হয় নি।" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "মুছে ফেলার জন্য কনো ক্যাটেগরি নির্বাচন করা হয় নি।" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,55 +156,55 @@ msgstr "ডিসেম্বর" msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "আজ" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "গত মাস" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "গত বছর" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "বছর পূর্বে" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "সমস্যা" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "অ্যাপের নামটি সুনির্দিষ্ট নয়।" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "আবশ্যিক {file} টি সংস্থাপিত নেই !" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "ভাগাভাগিকৃত" @@ -340,6 +280,11 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "সমস্যা" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -468,6 +413,34 @@ msgstr "ই-মেইল পাঠানো হয়েছে" msgid "Warning" msgstr "সতর্কবাণী" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "মুছে" + +#: js/tags.js:31 +msgid "Add" +msgstr "যোগ কর" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "ডিস্কে লিখতে ব্যর্থ" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" @@ -90,36 +90,36 @@ msgstr "ভুল ডিরেক্টরি" msgid "Files" msgstr "ফাইল" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "যথেষ্ঠ পরিমাণ স্থান নেই" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে।" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL ফাঁকা রাখা যাবে না।" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "সমস্যা" @@ -131,11 +131,11 @@ msgstr "ভাগাভাগি কর" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "মুলতুবি" @@ -163,13 +163,13 @@ msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপ msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,7 +179,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "রাম" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "আকার" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "পরিবর্তিত" @@ -253,7 +253,7 @@ msgstr "পরিবর্তিত" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "আপলোড" @@ -289,65 +289,65 @@ msgstr "ZIP ফাইলের ইনপুটের সর্বোচ্চ msgid "Save" msgstr "সংরক্ষণ" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "নতুন" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "টেক্সট ফাইল" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "ফোল্ডার" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr " লিংক থেকে" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "এখানে কিছুই নেই। কিছু আপলোড করুন !" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "ডাউনলোড" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "মুছে" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "আপলোডের আকারটি অনেক বড়" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন " -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "বর্তমান স্ক্যানিং" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index e29f584dbb..db4cdedcaf 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "সংকেতায়ন" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index d063009d63..7417506a69 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index f44908ae2c..27111cae91 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "কূটশব্দ" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "জমা দিন" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "ডাউনলোড" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "আপলোড" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 380a02ad7c..a6bf6a3503 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "সমস্যা" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "রাম" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "রাম" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "মুছে" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 3646451dad..7171f7d004 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "পরিবর্ধন" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." @@ -181,32 +181,32 @@ msgstr "ক্রিয়া প্রত্যাহার" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "গোষ্ঠীসমূহ" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "গোষ্ঠী প্রশাসক" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "মুছে" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "বেশী" msgid "Less" msgstr "কম" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "সংকেতায়ন" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index da700cd7af..c2b70b81a0 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "সহায়িকা" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index c468a2de53..6f8c64d63a 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -316,27 +277,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -345,6 +285,11 @@ msgstr "" msgid "Share" msgstr "Podijeli" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -473,6 +418,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "Dodaj" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "" @@ -131,7 +131,7 @@ msgstr "Podijeli" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "" @@ -163,14 +163,14 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -229,25 +229,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Ime" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Veličina" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "" @@ -256,7 +256,7 @@ msgstr "" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -292,65 +292,65 @@ msgstr "" msgid "Save" msgstr "Spasi" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Fasikla" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "" diff --git a/l10n/bs/files_encryption.po b/l10n/bs/files_encryption.po index e7930cc014..4a48ee2fe9 100644 --- a/l10n/bs/files_encryption.po +++ b/l10n/bs/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/bs/files_sharing.po b/l10n/bs/files_sharing.po index 47ff900767..79f667fc33 100644 --- a/l10n/bs/files_sharing.po +++ b/l10n/bs/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 319adc5d23..e2a429d710 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -27,45 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Ime" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -73,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "Ime" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/bs/user_ldap.po b/l10n/bs/user_ldap.po index 6e276fcf03..45a07276bc 100644 --- a/l10n/bs/user_ldap.po +++ b/l10n/bs/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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 1692c2141a..2b5c36a626 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -58,45 +58,6 @@ msgstr "Actualitzada la memòria de cau dels fitxers" msgid "... %d%% done ..." msgstr "... %d%% fet ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "No s'ha especificat el tipus de categoria." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "No voleu afegir cap categoria?" - -#: ajax/vcategories/add.php:37 -#, 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 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "No s'ha proporcionat el tipus d'objecte." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "No s'ha proporcionat la ID %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Error en afegir %s als preferits." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "No hi ha categories per eliminar." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Error en eliminar %s dels preferits." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "No s'han proporcionat imatges o fitxers" @@ -197,55 +158,55 @@ msgstr "Desembre" msgid "Settings" msgstr "Configuració" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fa %n minut" msgstr[1] "fa %n minuts" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fa %n hora" msgstr[1] "fa %n hores" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "avui" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "ahir" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "fa %n dies" msgstr[1] "fa %n dies" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "el mes passat" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fa %n mes" msgstr[1] "fa %n mesos" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "l'any passat" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "anys enrere" @@ -313,27 +274,6 @@ msgstr "({count} seleccionats)" msgid "Error loading file exists template" msgstr "Error en carregar la plantilla de fitxer existent" -#: 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 "No s'ha especificat el tipus d'objecte." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Error" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "No s'ha especificat el nom de l'aplicació." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "El fitxer requerit {file} no està instal·lat!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Compartit" @@ -342,6 +282,11 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Error" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error en compartir" @@ -470,6 +415,34 @@ msgstr "El correu electrónic s'ha enviat" msgid "Warning" msgstr "Avís" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "No s'ha especificat el tipus d'objecte." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Esborra" + +#: js/tags.js:31 +msgid "Add" +msgstr "Afegeix" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -76,15 +76,15 @@ msgstr "Ha fallat en escriure al disc" msgid "Not enough storage available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "La pujada ha fallat. El fitxer pujat no s'ha trobat." -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Directori no vàlid." @@ -92,36 +92,36 @@ msgstr "Directori no vàlid." msgid "Files" msgstr "Fitxers" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "No es pot pujar {filename} perquè és una carpeta o té 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "No hi ha prou espai disponible" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "No hi ha resposta del servidor." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "La URL no pot ser buida" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 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/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Error" @@ -133,11 +133,11 @@ msgstr "Comparteix" msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Pendent" @@ -165,13 +165,13 @@ msgstr "s'ha substituït {old_name} per {new_name}" msgid "undo" msgstr "desfés" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetes" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fitxer" @@ -181,7 +181,7 @@ msgstr[1] "%n fitxers" msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Pujant %n fitxer" @@ -228,25 +228,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "L'encriptació s'ha desactivat però els vostres fitxers segueixen encriptats. Aneu a la vostra configuració personal per desencriptar els vostres fitxers." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Error en moure el fitxer" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nom" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Mida" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modificat" @@ -255,7 +255,7 @@ msgstr "Modificat" msgid "%s could not be renamed" msgstr "%s no es pot canviar el nom" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Puja" @@ -291,65 +291,65 @@ msgstr "Mida màxima d'entrada per fitxers ZIP" msgid "Save" msgstr "Desa" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nou" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Fitxer de text" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Des d'enllaç" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Fitxers esborrats" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "No teniu permisos d'escriptura aquí." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Baixa" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Deixa de compartir" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Esborra" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index e03c0ada38..187c2c2527 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -56,14 +56,14 @@ msgid "" "correct." msgstr "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -71,6 +71,18 @@ msgid "" "files." msgstr "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora del sistema ownCloud (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Manca de requisits." @@ -82,7 +94,7 @@ msgid "" " the encryption app has been disabled." msgstr "Assegureu-vos que teniu instal·lat PHP 5.3.3 o una versió superior i que està activat Open SSL i habilitada i configurada correctament l'extensió de PHP. De moment, l'aplicació d'encriptació s'ha desactivat." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Els usuaris següents no estan configurats per a l'encriptació:" @@ -98,91 +110,91 @@ msgstr "" msgid "personal settings" msgstr "arranjament personal" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Xifrat" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Activa la clau de recuperació (permet recuperar fitxers d'usuaris en cas de pèrdua de contrasenya):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Clau de recuperació de la contrasenya" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Activat" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Desactivat" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Canvia la clau de recuperació de contrasenya:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Antiga clau de recuperació de contrasenya" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nova clau de recuperació de contrasenya" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Canvia la contrasenya" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "La clau privada ja no es correspon amb la contrasenya d'accés:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Establiu la vostra contrasenya clau en funció de la contrasenya actual d'accés." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Si no recordeu la contrasenya anterior podeu demanar a l'administrador que recuperi els vostres fitxers." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Contrasenya anterior d'accés" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Contrasenya d'accés actual" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Actualitza la contrasenya de clau privada" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Habilita la recuperació de contrasenya:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Activar aquesta opció us permetrà obtenir de nou accés als vostres fitxers encriptats en cas de perdre la contrasenya" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "S'han actualitzat els arranjaments de recuperació de fitxers" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "No s'ha pogut actualitzar la recuperació de fitxers" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 66a1a76942..e4391cf531 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "S'ha concedit l'accés" @@ -26,7 +26,7 @@ msgstr "S'ha concedit l'accés" msgid "Error configuring Dropbox storage" msgstr "Error en configurar l'emmagatzemament Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Concedeix accés" @@ -34,24 +34,24 @@ msgstr "Concedeix accés" msgid "Please provide a valid Dropbox app key and secret." msgstr "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Error en configurar l'emmagatzemament Google Drive" -#: lib/config.php:447 +#: lib/config.php:453 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avís: \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Avís: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar la compartició FTP. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 4e4d3419ba..7cd1179aa3 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "la contrasenya és incorrecta. Intenteu-ho de nou." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Contrasenya" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Envia" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Aquest enllaç sembla que no funciona." @@ -54,28 +54,28 @@ msgstr "s'ha desactivat la compartició" msgid "For more info, please ask the person who sent this link." msgstr "Per més informació contacteu amb qui us ha enviat l'enllaç." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha compartit la carpeta %s amb vós" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha compartit el fitxer %s amb vós" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Baixa" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Puja" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "No hi ha vista prèvia disponible per a" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 3f33f7d649..53cf314a0f 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -28,55 +28,31 @@ msgstr "No s'ha pogut esborrar permanentment %s" msgid "Couldn't restore %s" msgstr "No s'ha pogut restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "executa l'operació de restauració" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "esborra el fitxer permanentment" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Esborra permanentment" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nom" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Eliminat" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n carpetes" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n fitxers" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restaurat" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "La paperera està buida!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nom" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Recupera" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Eliminat" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Esborra" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 738583e7b6..2a227d7da2 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/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-10-07 12:17-0400\n" -"PO-Revision-Date: 2013-10-07 10:50+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -159,15 +159,15 @@ msgstr "Actualitza" msgid "Updated" msgstr "Actualitzada" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Seleccioneu una imatge de perfil" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Desencriptant fitxers... Espereu, això pot trigar una estona." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Desant..." @@ -386,11 +386,11 @@ msgstr "Més" msgid "Less" msgstr "Menys" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versió" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Useu aquesta adreça per accedir als fitxers via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Xifrat" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers." -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Contrasenya d'accés" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Desencripta tots els fitxers" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 79d3480d9a..45266ce5e4 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits)." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atribut UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Mapatge d'usuari Nom d'usuari-LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Elimina el mapatge d'usuari Nom d'usuari-LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Elimina el mapatge de grup Nom de grup-LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Comprovació de la configuració" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ajuda" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 0c24c9b204..928dd60760 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 20:10+0000\n" +"Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +31,7 @@ msgstr "%s s vámi sdílí »%s«" #: ajax/share.php:168 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Nebylo možné odeslat e-mail následujícím uživatelům: %s" #: ajax/share.php:327 msgid "group" @@ -62,45 +62,6 @@ msgstr "Aktualizována souborová mezipaměť" msgid "... %d%% done ..." msgstr "... %d%% dokončeno ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Nezadán typ kategorie." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Žádná kategorie k přidání?" - -#: ajax/vcategories/add.php:37 -#, 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 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Nezadán typ objektu." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Nezadáno ID %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Chyba při přidávání %s k oblíbeným." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Žádné kategorie nebyly vybrány ke smazání." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Chyba při odebírání %s z oblíbených." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Soubor nebo obrázek nebyl zadán" @@ -201,59 +162,59 @@ msgstr "Prosinec" msgid "Settings" msgstr "Nastavení" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "před %n minutou" msgstr[1] "před %n minutami" msgstr[2] "před %n minutami" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "před %n hodinou" msgstr[1] "před %n hodinami" msgstr[2] "před %n hodinami" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "dnes" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "včera" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "před %n dnem" msgstr[1] "před %n dny" msgstr[2] "před %n dny" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "před %n měsícem" msgstr[1] "před %n měsíci" msgstr[2] "před %n měsíci" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "před měsíci" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "minulý rok" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "před lety" @@ -284,9 +245,9 @@ msgstr "Chyba při nahrávání šablony zprávy: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "{count} souborový konflikt" +msgstr[1] "{count} souborové konflikty" +msgstr[2] "{count} souborových konfliktů" #: js/oc-dialogs.js:361 msgid "One file conflict" @@ -300,7 +261,7 @@ msgstr "Které soubory chcete ponechat?" msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Pokud zvolíte obě verze, zkopírovaný soubor bude mít název doplněn o číslo." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -312,36 +273,15 @@ msgstr "Pokračovat" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(vybráno vše)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "(vybráno {count})" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -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 "Není určen typ objektu." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Chyba" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Není určen název aplikace." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Požadovaný soubor {file} není nainstalován!" +msgstr "Chyba při nahrávání šablony existence souboru" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -351,6 +291,11 @@ msgstr "Sdílené" msgid "Share" msgstr "Sdílet" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Chyba" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -429,7 +374,7 @@ msgstr "Zrušit sdílení" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "upozornit uživatele e-mailem" #: js/share.js:361 msgid "can edit" @@ -479,6 +424,34 @@ msgstr "E-mail odeslán" msgid "Warning" msgstr "Varování" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Není určen typ objektu." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Zadat nový" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Smazat" + +#: js/tags.js:31 +msgid "Add" +msgstr "Přidat" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Editovat štítky" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Chyba při načítání šablony dialogu: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Žádné štítky nebyly vybrány ke smazání." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the
    just letting you know that %s shared »%s« with you.
    View it!

    " -msgstr "" +msgstr "Hej ty tam,

    jen ti chci dát vědět, že %s sdílel »%s« s tebou.
    Zobrazit!

    " #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.

    " -msgstr "" +msgstr "Sdílení expiruje %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 631ace328f..45c1f8f352 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 20:10+0000\n" +"Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -79,15 +79,15 @@ msgstr "Zápis na disk selhal" msgid "Not enough storage available" msgstr "Nedostatek dostupného úložného prostoru" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Nahrávání selhalo. Nepodařilo se získat informace o souboru." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor." -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Neplatný adresář" @@ -95,36 +95,36 @@ msgstr "Neplatný adresář" msgid "Files" msgstr "Soubory" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Nelze nahrát soubor {filename}, protože je to buď adresář nebo má velikost 0 bytů" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Nedostatek volného místa" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." -msgstr "" +msgstr "Nepodařilo se získat výsledek ze serveru." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL nemůže být prázdná." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Název složky nelze použít. Použití názvu 'Shared' je ownCloudem rezervováno" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Chyba" @@ -136,11 +136,11 @@ msgstr "Sdílet" msgid "Delete permanently" msgstr "Trvale odstranit" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Nevyřízené" @@ -168,14 +168,14 @@ msgstr "nahrazeno {new_name} s {old_name}" msgid "undo" msgstr "vrátit zpět" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n složka" msgstr[1] "%n složky" msgstr[2] "%n složek" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n soubor" @@ -186,7 +186,7 @@ msgstr[2] "%n souborů" msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávám %n soubor" @@ -219,14 +219,14 @@ msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste" #: js/files.js:72 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Chybný soukromý klíč pro šifrovací aplikaci. Aktualizujte prosím heslo svého soukromého klíče ve vašem osobním nastavení, abyste znovu získali přístup k vašim zašifrovaným souborům." #: js/files.js:76 msgid "" @@ -234,25 +234,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Šifrování bylo vypnuto, vaše soubory jsou však stále zašifrované. Běžte prosím do osobního nastavení, kde soubory odšifrujete." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Chyba při přesunu souboru" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Název" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Velikost" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Upraveno" @@ -261,7 +261,7 @@ msgstr "Upraveno" msgid "%s could not be renamed" msgstr "%s nemůže být přejmenován" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Odeslat" @@ -297,65 +297,65 @@ msgstr "Maximální velikost vstupu pro ZIP soubory" msgid "Save" msgstr "Uložit" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nový" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Textový soubor" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Složka" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Z odkazu" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Odstraněné soubory" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Nemáte zde práva zápisu." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Zrušit sdílení" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Smazat" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Odesílaný soubor je příliš velký" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 7f6ac78f5a..ae6017cb25 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 21:35+0000\n" +"Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,14 +58,14 @@ msgid "" "correct." msgstr "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Aplikace pro šifrování není inicializována! Je možné, že aplikace byla znovu aktivována během vašeho přihlášení. Zkuste se prosím odhlásit a znovu přihlásit pro provedení inicializace šifrovací aplikace." -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -73,6 +73,18 @@ msgid "" "files." msgstr "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno vně systému ownCloud (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel." + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Neznámá chyba, zkontrolujte vaše systémová nastavení nebo kontaktujte vašeho správce" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Nesplněné závislosti." @@ -84,7 +96,7 @@ msgid "" " the encryption app has been disabled." msgstr "Ujistěte se prosím, že máte nainstalované PHP 5.3.3 nebo novější a že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Prozatím byla aplikace pro šifrování vypnuta." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Následující uživatelé nemají nastavené šifrování:" @@ -94,97 +106,97 @@ msgstr "Ukládám..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Běžte přímo do vašeho" #: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "osobní nastavení" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Šifrování" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Heslo klíče pro obnovu" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Zopakujte heslo klíče pro obnovu" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Povoleno" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Zakázáno" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Změna hesla klíče pro obnovu:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Původní heslo klíče pro obnovu" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nové heslo klíče pro obnovu" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Zopakujte nové heslo klíče pro obnovu" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Změnit heslo" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašovacím heslem:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Změňte heslo vaše soukromého klíče na stejné jako vaše přihlašovací heslo." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Pokud si nepamatujete vaše původní heslo, můžete požádat správce o obnovu vašich souborů." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Původní přihlašovací heslo" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Aktuální přihlašovací heslo" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Změnit heslo soukromého klíče" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Povolit obnovu hesla:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Možnosti záchrany souborů aktualizovány" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Nelze nastavit záchranu souborů" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index dc83c75b23..2efdf764fc 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 5b180f5c55..9d08a88d23 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 21:35+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Toto sdílení je chráněno heslem" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Heslo není správné. Zkuste to znovu." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Heslo" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Odeslat" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Je nám líto, ale tento odkaz již není funkční." @@ -54,28 +54,28 @@ msgstr "sdílení je zakázané" msgid "For more info, please ask the person who sent this link." msgstr "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s s Vámi sdílí složku %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s s Vámi sdílí soubor %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Stáhnout" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Odeslat" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Náhled není dostupný pro" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 3b54400bc0..3d091b0979 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,57 +29,31 @@ msgstr "Nelze trvale odstranit %s" msgid "Couldn't restore %s" msgstr "Nelze obnovit %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "provést obnovu" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Chyba" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "trvale odstranit soubor" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Trvale odstranit" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Název" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Smazáno" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n adresář" -msgstr[1] "%n adresáře" -msgstr[2] "%n adresářů" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n soubor" -msgstr[1] "%n soubory" -msgstr[2] "%n souborů" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "obnoveno" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Žádný obsah. Váš koš je prázdný." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Název" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Obnovit" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Smazáno" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Smazat" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 56adeee475..af055391e7 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 19:46+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -20,38 +20,38 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: private/app.php:237 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Aplikace \"%s\" nemůže být nainstalována, protože není kompatibilní s touto verzí ownCloud." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Nebyl zadan název aplikace" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Nápověda" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Osobní" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Nastavení" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Uživatelé" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administrace" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Selhala aktualizace verze \"%s\"." diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index b488beb455..6aaddb6b27 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 20:10+0000\n" +"Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,15 +161,15 @@ msgstr "Aktualizovat" msgid "Updated" msgstr "Aktualizováno" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Vyberte profilový obrázek" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Probíhá dešifrování souborů... Čekejte prosím, tato operace může trvat nějakou dobu." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Ukládám..." @@ -185,32 +185,32 @@ msgstr "vrátit zpět" msgid "Unable to remove user" msgstr "Nelze odebrat uživatele" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Skupiny" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Správa skupiny" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Smazat" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "přidat skupinu" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Musíte zadat platné uživatelské jméno" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Chyba při vytváření užiatele" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Musíte zadat platné heslo" @@ -346,11 +346,11 @@ msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Povolit e-mailová upozornění" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" #: templates/admin.php:178 msgid "Security" @@ -388,11 +388,11 @@ msgstr "Více" msgid "Less" msgstr "Méně" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Verze" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Použijte tuto adresu pro přístup k vašim souborům přes WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Šifrování" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Šifrovací aplikace již není zapnuta, odšifrujte všechny své soubory" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Přihlašovací heslo" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Odšifrovat všechny soubory" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 9d29eb9ed8..80a57705dd 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 21:35+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -372,14 +372,18 @@ msgid "" msgstr "Ve výchozím nastavení je UUID atribut nalezen automaticky. UUID atribut je používán pro nezpochybnitelnou identifikaci uživatelů a skupin z LDAP. Navíc je na základě UUID tvořeno také interní uživatelské jméno, pokud není nastaveno jinak. Můžete výchozí nastavení přepsat a použít atribut, který sami zvolíte. Musíte se ale ujistit, že atribut, který vyberete, bude uveden jak u uživatelů, tak i u skupin a je unikátní. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele a skupiny z LDAP." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atribut UUID:" +msgid "UUID Attribute for Users:" +msgstr "UUID atribut pro uživatele:" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "UUID atribut pro skupiny:" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Mapování uživatelských jmen z LDAPu" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -393,18 +397,18 @@ msgid "" "experimental stage." msgstr "Uživatelská jména jsou používány pro uchovávání a přiřazování (meta)dat. Pro správnou identifikaci a rozpoznání uživatelů bude mít každý uživatel z LDAP interní uživatelské jméno. To vyžaduje mapování uživatelských jmen na uživatele LDAP. Vytvořené uživatelské jméno je mapováno na UUID uživatele v LDAP. Navíc je cachována DN pro zmenšení interakce s LDAP, ale není používána pro identifikaci. Pokud se DN změní, bude to správně rozpoznáno. Interní uživatelské jméno se používá celé. Vyčištění mapování zanechá zbytky všude. Vyčištění navíc není specifické konfiguraci, bude mít vliv na všechny LDAP konfigurace! Nikdy nečistěte mapování v produkčním prostředí, jen v testovací nebo experimentální fázi." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Zrušit mapování uživatelských jmen LDAPu" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Zrušit mapování názvů skupin LDAPu" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Vyzkoušet nastavení" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Nápověda" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index c9b8cd1fa7..4f77fd1aed 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -57,45 +57,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Math o gategori heb ei ddarparu." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Dim categori i'w ychwanegu?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Mae'r categori hwn eisoes yn bodoli: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Math o wrthrych heb ei ddarparu." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID heb ei ddarparu." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Gwall wrth ychwanegu %s at ffefrynnau." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Ni ddewiswyd categorïau i'w dileu." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Gwall wrth dynnu %s o ffefrynnau." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -196,11 +157,11 @@ msgstr "Rhagfyr" msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -208,7 +169,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -216,15 +177,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "heddiw" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "ddoe" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -232,11 +193,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -244,15 +205,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "y llynedd" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "blwyddyn yn ôl" @@ -322,27 +283,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Nid yw'r math o wrthrych wedi cael ei nodi." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Gwall" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nid yw enw'r pecyn wedi cael ei nodi." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Nid yw'r ffeil ofynnol {file} wedi ei gosod!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Rhannwyd" @@ -351,6 +291,11 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Gwall" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Gwall wrth rannu" @@ -479,6 +424,34 @@ msgstr "Anfonwyd yr e-bost" msgid "Warning" msgstr "Rhybudd" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Dileu" + +#: js/tags.js:31 +msgid "Add" +msgstr "Ychwanegu" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "Methwyd ysgrifennu i'r ddisg" msgid "Not enough storage available" msgstr "Dim digon o le storio ar gael" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Cyfeiriadur annilys." @@ -90,36 +90,36 @@ msgstr "Cyfeiriadur annilys." msgid "Files" msgstr "Ffeiliau" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Dim digon o le ar gael" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Diddymwyd llwytho i fyny." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Does dim hawl cael URL gwag." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Gwall" @@ -131,11 +131,11 @@ msgstr "Rhannu" msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "I ddod" @@ -163,7 +163,7 @@ msgstr "newidiwyd {new_name} yn lle {old_name}" msgid "undo" msgstr "dadwneud" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -171,7 +171,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -183,7 +183,7 @@ msgstr[3] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -232,25 +232,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Enw" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Maint" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Addaswyd" @@ -259,7 +259,7 @@ msgstr "Addaswyd" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Llwytho i fyny" @@ -295,65 +295,65 @@ msgstr "Maint mewnbynnu mwyaf ffeiliau ZIP" msgid "Save" msgstr "Cadw" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Newydd" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Ffeil destun" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Plygell" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Dolen o" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Ffeiliau ddilewyd" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Nid oes gennych hawliau ysgrifennu fan hyn." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Llwytho i lawr" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Dad-rannu" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Dileu" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Maint llwytho i fyny'n rhy fawr" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Sganio cyfredol" diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po index 77fedfc65e..1b8cbfccfb 100644 --- a/l10n/cy_GB/files_encryption.po +++ b/l10n/cy_GB/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -54,14 +54,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -69,6 +69,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -80,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -96,91 +108,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Amgryptiad" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 6433a79bed..cae86934d2 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 11970a0b13..6cd3991b20 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Cyfrinair" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Cyflwyno" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "Rhannodd %s blygell %s â chi" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "Rhannodd %s ffeil %s â chi" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Llwytho i lawr" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Llwytho i fyny" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Does dim rhagolwg ar gael ar gyfer" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 69f8f97c37..93ee97f20a 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -27,59 +27,31 @@ msgstr "Methwyd dileu %s yn barhaol" msgid "Couldn't restore %s" msgstr "Methwyd adfer %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "gweithrediad adfer" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Gwall" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "dileu ffeil yn barhaol" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Dileu'n barhaol" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Enw" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Wedi dileu" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Does dim byd yma. Mae eich bin sbwriel yn wag!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Enw" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Adfer" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Wedi dileu" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Dileu" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 9c37751137..24476cf9e1 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Yn cadw..." @@ -181,32 +181,32 @@ msgstr "dadwneud" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grwpiau" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Dileu" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Amgryptiad" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 35fee08310..0cceee2963 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Cymorth" diff --git a/l10n/da/core.po b/l10n/da/core.po index 4cada3338a..0486a9f529 100644 --- a/l10n/da/core.po +++ b/l10n/da/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -60,45 +60,6 @@ msgstr "Opdaterede filcache" msgid "... %d%% done ..." msgstr "... %d%% færdig ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategori typen ikke er fastsat." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ingen kategori at tilføje?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kategorien eksisterer allerede: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Object type ikke er fastsat." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID ikke oplyst." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Fejl ved tilføjelse af %s til favoritter." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Ingen kategorier valgt" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Fejl ved fjernelse af %s fra favoritter." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Ingen fil eller billede givet" @@ -199,55 +160,55 @@ msgstr "December" msgid "Settings" msgstr "Indstillinger" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "i dag" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "i går" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "sidste måned" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "måneder siden" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "sidste år" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "år siden" @@ -315,27 +276,6 @@ msgstr "({count} valgt)" msgid "Error loading file exists template" msgstr "Fejl ved inlæsning af; fil eksistere skabelon" -#: 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 "Objekttypen er ikke angivet." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Fejl" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Den app navn er ikke angivet." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Den krævede fil {file} er ikke installeret!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Delt" @@ -344,6 +284,11 @@ msgstr "Delt" msgid "Share" msgstr "Del" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Fejl" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fejl under deling" @@ -472,6 +417,34 @@ msgstr "E-mail afsendt" msgid "Warning" msgstr "Advarsel" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Objekttypen er ikke angivet." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Slet" + +#: js/tags.js:31 +msgid "Add" +msgstr "Tilføj" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -77,15 +77,15 @@ msgstr "Fejl ved skrivning til disk." msgid "Not enough storage available" msgstr "Der er ikke nok plads til rådlighed" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Upload fejlede. Kunne ikke hente filinformation." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Upload fejlede. Kunne ikke finde den uploadede fil." -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -93,36 +93,36 @@ msgstr "Ugyldig mappe." msgid "Files" msgstr "Filer" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Kan ikke upload {filename} da det er enten en mappe eller indholder 0 bytes." -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "ikke nok tilgængelig ledig plads " -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Kunne ikke hente resultat fra server." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URLen kan ikke være tom." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ugyldigt mappenavn. Brug af 'Shared' er forbeholdt af ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Fejl" @@ -134,11 +134,11 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slet permanent" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Afventer" @@ -166,13 +166,13 @@ msgstr "erstattede {new_name} med {old_name}" msgid "undo" msgstr "fortryd" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" @@ -182,7 +182,7 @@ msgstr[1] "%n filer" msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploader %n fil" @@ -229,25 +229,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine filer. " -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Fejl ved flytning af fil" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Navn" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Størrelse" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Ændret" @@ -256,7 +256,7 @@ msgstr "Ændret" msgid "%s could not be renamed" msgstr "%s kunne ikke omdøbes" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Upload" @@ -292,65 +292,65 @@ msgstr "Maksimal størrelse på ZIP filer" msgid "Save" msgstr "Gem" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ny" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Tekstfil" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Mappe" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Fra link" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Slettede filer" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Du har ikke skriverettigheder her." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Download" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Fjern deling" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Slet" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Upload er for stor" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 403f3a3aa6..12e08c2a8f 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -55,14 +55,14 @@ msgid "" "correct." msgstr "Kunne ikke opdatere det private nøgle kodeord-. Måske var det gamle kodeord forkert." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -70,6 +70,18 @@ msgid "" "files." msgstr "Din private nøgle er gyldig! Sandsynligvis blev dit kodeord ændre uden for ownCloud systemet (f.eks. dit firmas register). Du kan opdatere dit private nøgle kodeord under personlige indstillinger, for at generhverve adgang til dine krypterede filer." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Manglende betingelser." @@ -81,7 +93,7 @@ msgid "" " the encryption app has been disabled." msgstr "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Følgende brugere er ikke sat op til kryptering:" @@ -97,91 +109,91 @@ msgstr "" msgid "personal settings" msgstr "Personlige indstillinger" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Kryptering" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfælde af tab af kodeord):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Gendannelsesnøgle kodeord" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Aktiveret" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Deaktiveret" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Skift gendannelsesnøgle kodeord:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Gammel Gendannelsesnøgle kodeord" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Ny Gendannelsesnøgle kodeord" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Skift Kodeord" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Dit private nøgle kodeord stemmer ikke længere overens med dit login kodeord:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Sæt dit gamle private nøgle kodeord til at være dit nuværende login kodeord. " -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Hvis du ikke kan huske dit gamle kodeord kan du bede din administrator om at gendanne dine filer." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Gammelt login kodeord" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Nuvrende login kodeord" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Opdater Privat Nøgle Kodeord" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Aktiver kodeord gendannelse:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Aktivering af denne valgmulighed tillader dig at generhverve adgang til dine krypterede filer i tilfælde af tab af kodeord" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Filgendannelsesindstillinger opdateret" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Kunne ikke opdatere filgendannelse" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 22fc3c7b82..34a1ac95f4 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Adgang godkendt" @@ -25,7 +25,7 @@ msgstr "Adgang godkendt" msgid "Error configuring Dropbox storage" msgstr "Fejl ved konfiguration af Dropbox plads" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Godkend adgang" @@ -33,24 +33,24 @@ msgstr "Godkend adgang" msgid "Please provide a valid Dropbox app key and secret." msgstr "Angiv venligst en valid Dropbox app nøgle og hemmelighed" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Fejl ved konfiguration af Google Drive plads" -#: lib/config.php:447 +#: lib/config.php:453 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr " Advarsel: FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index d5bee700f1..5d390ef79e 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Kodeordet er forkert. Prøv igen." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Kodeord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Send" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Desværre, dette link ser ikke ud til at fungerer længere." @@ -54,28 +54,28 @@ msgstr "deling er deaktiveret" msgid "For more info, please ask the person who sent this link." msgstr "For yderligere information, kontakt venligst personen der sendte linket. " -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med dig" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med dig" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Upload" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgængelig for" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 0e92e10c11..86fb4c032b 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: claus_chr \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,55 +29,31 @@ msgstr "Kunne ikke slette %s permanent" msgid "Couldn't restore %s" msgstr "Kunne ikke gendanne %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "udfør gendannelsesoperation" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fejl" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "slet fil permanent" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Slet permanent" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Navn" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Slettet" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n mappe" -msgstr[1] "%n mapper" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fil" -msgstr[1] "%n filer" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Gendannet" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Intet at se her. Din papirkurv er tom!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Navn" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Gendan" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Slettet" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Slet" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 9a2698240f..a528597744 100644 --- a/l10n/da/settings.po +++ b/l10n/da/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:20+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -160,15 +160,15 @@ msgstr "Opdater" msgid "Updated" msgstr "Opdateret" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Vælg et profilbillede" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekryptere filer... Vent venligst, dette kan tage lang tid. " -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Gemmer..." @@ -184,32 +184,32 @@ msgstr "fortryd" msgid "Unable to remove user" msgstr "Kan ikke fjerne bruger" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupper" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppe Administrator" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Slet" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "Tilføj gruppe" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Et gyldigt brugernavn skal angives" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Fejl ved oprettelse af bruger" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" @@ -387,11 +387,11 @@ msgstr "Mere" msgid "Less" msgstr "Mindre" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Anvend denne adresse til at tilgå dine filer via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Kryptering" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Krypterings app'en er ikke længere aktiv. Dekrypter alle dine filer. " -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Log-in kodeord" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Dekrypter alle Filer " diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index a07b2cbf1c..017dab47c3 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Test Konfiguration" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hjælp" diff --git a/l10n/de/core.po b/l10n/de/core.po index a8c37a2967..023b901010 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -15,10 +15,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: German \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 16:20+0000\n" +"Last-Translator: Mario Siegmann \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -64,45 +64,6 @@ msgstr "Dateicache aktualisiert" msgid "... %d%% done ..." msgstr "... %d%% erledigt ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategorie nicht angegeben." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Keine Kategorie hinzuzufügen?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Die Kategorie '%s' existiert bereits." - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekttyp nicht angegeben." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nicht angegeben." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Fehler beim Hinzufügen von %s zu den Favoriten." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Es wurde keine Kategorien zum Löschen ausgewählt." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Fehler beim Entfernen von %s von den Favoriten." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Kein Bild oder Datei zur Verfügung gestellt" @@ -203,55 +164,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "Heute" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "Gestern" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "Vor Jahren" @@ -319,27 +280,6 @@ msgstr "({count} ausgewählt)" msgid "Error loading file exists template" msgstr "Fehler beim Laden der vorhanden Dateivorlage" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Der Objekttyp ist nicht angegeben." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Fehler" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Der App-Name ist nicht angegeben." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Die benötigte Datei {file} ist nicht installiert." - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Geteilt" @@ -348,6 +288,11 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Fehler" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -476,6 +421,34 @@ msgstr "E-Mail wurde verschickt" msgid "Warning" msgstr "Warnung" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Der Objekttyp ist nicht angegeben." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Unbekannter Fehler, bitte prüfe Deine Systemeinstellungen oder kontaktiere Deinen Administrator" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Löschen" + +#: js/tags.js:31 +msgid "Add" +msgstr "Hinzufügen" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Schlagwörter bearbeiten" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Fehler beim Laden der Gesprächsvorlage: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" -"Language-Team: German \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -80,15 +80,15 @@ msgstr "Fehler beim Schreiben auf die Festplatte" msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -96,36 +96,36 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Nicht genug Speicherplatz verfügbar" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Ergebnis konnte nicht vom Server abgerufen werden." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Der Ordnername ist ungültig. Nur ownCloud kann den Ordner \"Shared\" anlegen" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Fehler" @@ -137,11 +137,11 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Ausstehend" @@ -169,13 +169,13 @@ msgstr "{old_name} ersetzt durch {new_name}" msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" @@ -185,7 +185,7 @@ msgstr[1] "%n Dateien" msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" @@ -232,25 +232,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind deine Dateien nach wie vor verschlüsselt. Bitte gehe zu deinen persönlichen Einstellungen, um deine Dateien zu entschlüsseln." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Fehler beim Verschieben der Datei" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Name" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Größe" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Geändert" @@ -259,7 +259,7 @@ msgstr "Geändert" msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Hochladen" @@ -295,65 +295,65 @@ msgstr "Maximale Größe für ZIP-Dateien" msgid "Save" msgstr "Speichern" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Neu" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Textdatei" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Ordner" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Von einem Link" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Du hast hier keine Schreib-Berechtigung." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Löschen" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 3599eb69e5..f3f5968f63 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -14,10 +14,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: German \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 16:00+0000\n" +"Last-Translator: Mario Siegmann \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -60,14 +60,14 @@ msgid "" "correct." msgstr "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Eventuell war das alte Passwort falsch." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuche Dich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren." -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -75,6 +75,18 @@ msgid "" "files." msgstr "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte frage den Datei-Besitzer, dass er die Datei nochmals mit Dir teilt." + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Unbekannter Fehler, bitte prüfe Deine Systemeinstellungen oder kontaktiere Deinen Administrator" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Fehlende Vorraussetzungen" @@ -86,7 +98,7 @@ msgid "" " the encryption app has been disabled." msgstr "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" @@ -96,97 +108,97 @@ msgstr "Speichern..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Direkt wechseln zu Deinem" #: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Private Einstellungen" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Wiederherstellungsschlüssel-Passwort" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Schlüssel-Passwort zur Wiederherstellung wiederholen" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Aktiviert" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Deaktiviert" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Wiederherstellungsschlüssel-Passwort ändern:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Altes Wiederherstellungsschlüssel-Passwort" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Neues Wiederherstellungsschlüssel-Passwort" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Passwort ändern" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Ihr Passwort für ihren privaten Schlüssel stimmt nicht mehr mit ihrem Loginpasswort überein." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Setzen Sie ihr altes Passwort für ihren privaten Schlüssel auf ihr aktuelles Login-Passwort" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Wenn Sie Ihr altes Passwort vergessen haben, können Sie den Administrator bitten, Ihre Daten wiederherzustellen." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Altes login Passwort" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Aktuelles Passwort" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Passwort für den privaten Schlüssel aktualisieren" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Passwortwiederherstellung aktivvieren:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Wenn Sie diese Option aktivieren, können Sie Ihre verschlüsselten Dateien wiederherstellen, falls Sie Ihr Passwort vergessen" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Dateiwiederherstellung konnte nicht aktualisiert werden" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index e2285c753a..1511e55e45 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,17 +8,17 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Mirodin \n" -"Language-Team: German \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Zugriff gestattet" @@ -26,7 +26,7 @@ msgstr "Zugriff gestattet" msgid "Error configuring Dropbox storage" msgstr "Fehler beim Einrichten von Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Zugriff gestatten" @@ -34,24 +34,24 @@ msgstr "Zugriff gestatten" msgid "Please provide a valid Dropbox app key and secret." msgstr "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:447 +#: lib/config.php:453 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Administrator, dies zu installieren." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wende Dich an Deinen Systemadministrator." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index ad1e84807e..1027eaf9e0 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-11 07:10+0000\n" "Last-Translator: Mario Siegmann \n" -"Language-Team: German \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Diese Freigabe ist durch ein Passwort geschützt" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passwort" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Absenden" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." @@ -55,28 +55,28 @@ msgstr "Teilen ist deaktiviert" msgid "For more info, please ask the person who sent this link." msgstr "Für mehr Informationen, frage bitte die Person, die dir diesen Link geschickt hat." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Dir geteilt" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Dir geteilt" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index f1cfe7ba75..ccb1112cd4 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" -"Language-Team: German \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -28,55 +28,31 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "Wiederherstellung ausführen" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fehler" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Datei dauerhaft löschen" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Endgültig löschen" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Name" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "gelöscht" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n Ordner" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n Dateien" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Wiederhergestellt" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, der Papierkorb ist leer!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Name" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "gelöscht" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 9ba08c0545..bf22f6eccd 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -12,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 20:40+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: Mario Siegmann \n" -"Language-Team: German \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -162,15 +162,15 @@ msgstr "Aktualisierung durchführen" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Wähle ein Profilbild" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssle Dateien ... Bitte warten, denn dieser Vorgang kann einige Zeit beanspruchen." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Speichern..." @@ -186,32 +186,32 @@ msgstr "rückgängig machen" msgid "Unable to remove user" msgstr "Benutzer konnte nicht entfernt werden." -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruppen" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Löschen" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Beim Anlegen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" @@ -389,11 +389,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Verwenden Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt." -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index a1ea921884..5c3d79588d 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-11 07:10+0000\n" "Last-Translator: Mario Siegmann \n" -"Language-Team: German \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -372,14 +372,18 @@ msgid "" msgstr "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Du musst allerdings sicherstellen, dass deine gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lasse es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID-Attribut:" +msgid "UUID Attribute for Users:" +msgstr "UUID-Attribute für Benutzer:" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "UUID-Attribute für Gruppen:" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -393,18 +397,18 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testkonfiguration" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hilfe" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index c095d3a7f6..337f754b86 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -57,45 +57,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -312,27 +273,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -341,6 +281,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -469,6 +414,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/de_AT/files_sharing.po b/l10n/de_AT/files_sharing.po index 4e09271a0b..3d9319183c 100644 --- a/l10n/de_AT/files_sharing.po +++ b/l10n/de_AT/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-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/de_AT/files_trashbin.po b/l10n/de_AT/files_trashbin.po index a05dc1411b..9f2eb2716b 100644 --- a/l10n/de_AT/files_trashbin.po +++ b/l10n/de_AT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po index affcff22fb..f0ccd0d18f 100644 --- a/l10n/de_AT/user_ldap.po +++ b/l10n/de_AT/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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 5117bf9fc4..007829ee63 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -65,45 +65,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategorie nicht angegeben." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Keine Kategorie hinzuzufügen?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Die nachfolgende Kategorie existiert bereits: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekttyp nicht angegeben." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nicht angegeben." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Fehler beim Hinzufügen von %s zu den Favoriten." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Es wurden keine Kategorien zum Löschen ausgewählt." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Fehler beim Entfernen von %s von den Favoriten." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -204,55 +165,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "Heute" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "Gestern" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "Vor Jahren" @@ -320,27 +281,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Der Objekttyp ist nicht angegeben." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Fehler" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Der App-Name ist nicht angegeben." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Die benötigte Datei {file} ist nicht installiert!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Geteilt" @@ -349,6 +289,11 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Fehler" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -477,6 +422,34 @@ msgstr "Email gesendet" msgid "Warning" msgstr "Warnung" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Der Objekttyp ist nicht angegeben." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Löschen" + +#: js/tags.js:31 +msgid "Add" +msgstr "Hinzufügen" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -83,15 +83,15 @@ msgstr "Fehler beim Schreiben auf die Festplatte" msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -99,36 +99,36 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Nicht genügend Speicherplatz verfügbar" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ungültiger Ordnername. Die Verwendung von «Shared» ist ownCloud vorbehalten." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Fehler" @@ -140,11 +140,11 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Ausstehend" @@ -172,13 +172,13 @@ msgstr "{old_name} wurde ersetzt durch {new_name}" msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n Ordner" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -188,7 +188,7 @@ msgstr[1] "%n Dateien" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" @@ -235,25 +235,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Name" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Grösse" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Geändert" @@ -262,7 +262,7 @@ msgstr "Geändert" msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Hochladen" @@ -298,65 +298,65 @@ msgstr "Maximale Grösse für ZIP-Dateien" msgid "Save" msgstr "Speichern" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Neu" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Textdatei" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Ordner" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Von einem Link" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Sie haben hier keine Schreib-Berechtigungen." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Laden Sie etwas hoch!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Löschen" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Der Upload ist zu gross" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgrösse für Uploads auf diesem Server." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_CH/files_encryption.po b/l10n/de_CH/files_encryption.po index 80f813910e..1e6752c561 100644 --- a/l10n/de_CH/files_encryption.po +++ b/l10n/de_CH/files_encryption.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -59,14 +59,14 @@ msgid "" "correct." msgstr "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -74,6 +74,18 @@ msgid "" "files." msgstr "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von ausserhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Fehlende Voraussetzungen" @@ -85,7 +97,7 @@ msgid "" " the encryption app has been disabled." msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" @@ -101,91 +113,91 @@ msgstr "" msgid "personal settings" msgstr "Persönliche Einstellungen" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht)." -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Wiederherstellungschlüsselpasswort" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Aktiviert" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Deaktiviert" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Wiederherstellungsschlüsselpasswort ändern" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Altes Wiederherstellungsschlüsselpasswort" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Neues Wiederherstellungsschlüsselpasswort " -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Passwort ändern" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Das Privatschlüsselpasswort darf nicht länger mit den Login-Passwort übereinstimmen." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Setzen Sie Ihr altes Privatschlüsselpasswort auf Ihr aktuelles LogIn-Passwort." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Altes Login-Passwort" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Momentanes Login-Passwort" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Das Passwort des privaten Schlüssels aktualisieren" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Die Passwort-Wiederherstellung aktivieren:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben." -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert." -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Die Dateiwiederherstellung konnte nicht aktualisiert werden." diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index f9b2141702..23c929dc5b 100644 --- a/l10n/de_CH/files_external.po +++ b/l10n/de_CH/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/files_sharing.po b/l10n/de_CH/files_sharing.po index 8616c16eb6..d4bb900455 100644 --- a/l10n/de_CH/files_sharing.po +++ b/l10n/de_CH/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: FlorianScholz \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,17 +21,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Das Passwort ist falsch. Bitte versuchen Sie es erneut." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passwort" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Bestätigen" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." @@ -56,28 +56,28 @@ msgstr "Teilen ist deaktiviert" msgid "For more info, please ask the person who sent this link." msgstr "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Herunterladen" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index 2682be087d..c82e4771aa 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: FlorianScholz \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,55 +30,31 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "Wiederherstellung ausführen" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fehler" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Datei dauerhaft löschen" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Endgültig löschen" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Name" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Gelöscht" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n Ordner" -msgstr[1] "%n Ordner" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n Datei" -msgstr[1] "%n Dateien" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Wiederhergestellt" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Name" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Gelöscht" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index cbd581f01c..c55e55e358 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Update durchführen" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssel Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Speichern..." @@ -190,32 +190,32 @@ msgstr "rückgängig machen" msgid "Unable to remove user" msgstr "Der Benutzer konnte nicht entfernt werden." -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruppen" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Löschen" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" @@ -393,11 +393,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Verwenden Sie diese Adresse, um auf ihre Dateien per WebDAV zuzugreifen." -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt. " -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index 203b73cdf5..7c509f7224 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: FlorianScholz \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -376,14 +376,18 @@ msgid "" msgstr "Standardmässig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Ausserdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID-Attribut:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -397,18 +401,18 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testkonfiguration" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hilfe" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index edd750f391..38bbd0c61c 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -15,10 +15,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: German (Germany) \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 16:10+0000\n" +"Last-Translator: Mario Siegmann \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" "Content-Transfer-Encoding: 8bit\n" @@ -64,45 +64,6 @@ msgstr "Dateicache aktualisiert" msgid "... %d%% done ..." msgstr "... %d%% erledigt ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategorie nicht angegeben." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Keine Kategorie hinzuzufügen?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Die nachfolgende Kategorie existiert bereits: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekttyp nicht angegeben." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nicht angegeben." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Fehler beim Hinzufügen von %s zu den Favoriten." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Es wurden keine Kategorien zum Löschen ausgewählt." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Fehler beim Entfernen von %s von den Favoriten." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Kein Bild oder Datei zur Verfügung gestellt" @@ -203,55 +164,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "Heute" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "Gestern" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "Vor Jahren" @@ -319,27 +280,6 @@ msgstr "({count} ausgewählt)" msgid "Error loading file exists template" msgstr "Fehler beim Laden der vorhanden Dateivorlage" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Der Objekttyp ist nicht angegeben." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Fehler" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Der App-Name ist nicht angegeben." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Die benötigte Datei {file} ist nicht installiert!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Geteilt" @@ -348,6 +288,11 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Fehler" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -476,6 +421,34 @@ msgstr "Email gesendet" msgid "Warning" msgstr "Warnung" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Der Objekttyp ist nicht angegeben." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "c" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Löschen" + +#: js/tags.js:31 +msgid "Add" +msgstr "Hinzufügen" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Schlagwörter bearbeiten" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Fehler beim Laden der Gesprächsvorlage: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" -"Language-Team: German (Germany) \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" "Content-Transfer-Encoding: 8bit\n" @@ -83,15 +83,15 @@ msgstr "Fehler beim Schreiben auf die Festplatte" msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -99,36 +99,36 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Nicht genügend Speicherplatz verfügbar" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Ergebnis konnte nicht vom Server abgerufen werden." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Fehler" @@ -140,11 +140,11 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Ausstehend" @@ -172,13 +172,13 @@ msgstr "{old_name} wurde ersetzt durch {new_name}" msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" @@ -188,7 +188,7 @@ msgstr[1] "%n Dateien" msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hoch geladen" @@ -235,25 +235,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Fehler beim Verschieben der Datei" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Name" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Größe" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Geändert" @@ -262,7 +262,7 @@ msgstr "Geändert" msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Hochladen" @@ -298,65 +298,65 @@ msgstr "Maximale Größe für ZIP-Dateien" msgid "Save" msgstr "Speichern" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Neu" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Textdatei" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Ordner" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Von einem Link" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Sie haben hier keine Schreib-Berechtigungen." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Laden Sie etwas hoch!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Löschen" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index d5577daf92..3c30142df2 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -11,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: German (Germany) \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 16:10+0000\n" +"Last-Translator: Mario Siegmann \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" "Content-Transfer-Encoding: 8bit\n" @@ -57,14 +57,14 @@ msgid "" "correct." msgstr "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuchen Sie sich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren." -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -72,6 +72,18 @@ msgid "" "files." msgstr "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte fragen Sie den Datei-Besitzer, dass er die Datei nochmals mit Ihnen teilt." + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Unbekannter Fehler, bitte prüfen Sie die Systemeinstellungen oder kontaktieren Sie Ihren Administrator" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Fehlende Voraussetzungen" @@ -83,7 +95,7 @@ msgid "" " the encryption app has been disabled." msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" @@ -93,97 +105,97 @@ msgstr "Speichern..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Direkt wechseln zu Ihrem" #: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Persönliche Einstellungen" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht)." -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Wiederherstellungschlüsselpasswort" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Schlüssel-Passwort zur Wiederherstellung wiederholen" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Aktiviert" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Deaktiviert" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Wiederherstellungsschlüsselpasswort ändern" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Altes Wiederherstellungsschlüsselpasswort" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Neues Wiederherstellungsschlüsselpasswort " -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Passwort ändern" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Das Privatschlüsselpasswort darf nicht länger mit den Login-Passwort übereinstimmen." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Setzen Sie Ihr altes Privatschlüsselpasswort auf Ihr aktuelles LogIn-Passwort." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Altes Login-Passwort" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Momentanes Login-Passwort" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Das Passwort des privaten Schlüssels aktualisieren" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Die Passwort-Wiederherstellung aktivieren:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben." -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert." -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Die Dateiwiederherstellung konnte nicht aktualisiert werden." diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 7dc5677d12..41e7e29070 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Mirodin \n" -"Language-Team: German (Germany) \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" "Content-Transfer-Encoding: 8bit\n" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Zugriff gestattet" @@ -27,7 +27,7 @@ msgstr "Zugriff gestattet" msgid "Error configuring Dropbox storage" msgstr "Fehler beim Einrichten von Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Zugriff gestatten" @@ -35,24 +35,24 @@ msgstr "Zugriff gestatten" msgid "Please provide a valid Dropbox app key and secret." msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:447 +#: lib/config.php:453 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index efed1ad727..53dbe4fcc3 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-11 07:10+0000\n" "Last-Translator: Mario Siegmann \n" -"Language-Team: German (Germany) \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" "Content-Transfer-Encoding: 8bit\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Diese Freigabe ist durch ein Passwort geschützt" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Das Passwort ist falsch. Bitte versuchen Sie es erneut." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passwort" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Bestätigen" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." @@ -55,28 +55,28 @@ msgstr "Teilen ist deaktiviert" msgid "For more info, please ask the person who sent this link." msgstr "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Herunterladen" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 0f2bea5612..edcb34d7ef 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: noxin \n" -"Language-Team: German (Germany) \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \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" "Content-Transfer-Encoding: 8bit\n" @@ -29,55 +29,31 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "Wiederherstellung ausführen" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fehler" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Datei dauerhaft löschen" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Endgültig löschen" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Name" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Gelöscht" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n Ordner" -msgstr[1] "%n Ordner" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n Dateien" -msgstr[1] "%n Dateien" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Wiederhergestellt" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Name" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Gelöscht" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 31925d001a..0501531115 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -14,10 +14,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 20:40+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: Mario Siegmann \n" -"Language-Team: German (Germany) \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" "Content-Transfer-Encoding: 8bit\n" @@ -164,15 +164,15 @@ msgstr "Update durchführen" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Wählen Sie ein Profilbild" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssle Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Speichern..." @@ -188,32 +188,32 @@ msgstr "rückgängig machen" msgid "Unable to remove user" msgstr "Der Benutzer konnte nicht entfernt werden." -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruppen" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Löschen" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" @@ -391,11 +391,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Verwenden Sie diese Adresse, um auf ihre Dateien per WebDAV zuzugreifen." -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt. " -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 659a5d690a..81d053ac50 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -13,10 +13,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: noxin \n" -"Language-Team: German (Germany) \n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-11 07:10+0000\n" +"Last-Translator: Mario Siegmann \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" "Content-Transfer-Encoding: 8bit\n" @@ -374,14 +374,18 @@ msgid "" msgstr "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID-Attribut:" +msgid "UUID Attribute for Users:" +msgstr "UUID-Attribute für Benutzer:" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "UUID-Attribute für Gruppen:" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -395,18 +399,18 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testkonfiguration" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hilfe" diff --git a/l10n/el/core.po b/l10n/el/core.po index 6743619794..248716bf5b 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -63,45 +63,6 @@ msgstr "" msgid "... %d%% done ..." 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 "Αυτή η κατηγορία υπάρχει ήδη: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Δεν δώθηκε τύπος αντικειμένου." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Δεν δώθηκε η ID για %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Σφάλμα προσθήκης %s στα αγαπημένα." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Δεν επιλέχτηκαν κατηγορίες για διαγραφή." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Σφάλμα αφαίρεσης %s από τα αγαπημένα." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -202,55 +163,55 @@ msgstr "Δεκέμβριος" msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "σήμερα" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "χτες" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "χρόνια πριν" @@ -318,27 +279,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Δεν καθορίστηκε ο τύπος του αντικειμένου." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Σφάλμα" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Δεν καθορίστηκε το όνομα της εφαρμογής." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Το απαιτούμενο αρχείο {file} δεν εγκαταστάθηκε!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Κοινόχρηστα" @@ -347,6 +287,11 @@ msgstr "Κοινόχρηστα" msgid "Share" msgstr "Διαμοιρασμός" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Σφάλμα" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -475,6 +420,34 @@ msgstr "Το Email απεστάλη " msgid "Warning" msgstr "Προειδοποίηση" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Δεν καθορίστηκε ο τύπος του αντικειμένου." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Διαγραφή" + +#: js/tags.js:31 +msgid "Add" +msgstr "Προσθήκη" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,15 @@ msgstr "Αποτυχία εγγραφής στο δίσκο" msgid "Not enough storage available" msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." @@ -94,36 +94,36 @@ msgstr "Μη έγκυρος φάκελος." msgid "Files" msgstr "Αρχεία" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Δεν υπάρχει αρκετός διαθέσιμος χώρος" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Η URL δεν μπορεί να είναι κενή." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από το ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Σφάλμα" @@ -135,11 +135,11 @@ msgstr "Διαμοιρασμός" msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Εκκρεμεί" @@ -167,13 +167,13 @@ msgstr "αντικαταστάθηκε το {new_name} με {old_name}" msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n φάκελος" msgstr[1] "%n φάκελοι" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n αρχείο" @@ -183,7 +183,7 @@ msgstr[1] "%n αρχεία" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Ανέβασμα %n αρχείου" @@ -230,25 +230,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Σφάλμα κατά τη μετακίνηση του αρχείου" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Όνομα" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Τροποποιήθηκε" @@ -257,7 +257,7 @@ msgstr "Τροποποιήθηκε" msgid "%s could not be renamed" msgstr "Αδυναμία μετονομασίας του %s" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Μεταφόρτωση" @@ -293,65 +293,65 @@ msgstr "Μέγιστο μέγεθος για αρχεία ZIP" msgid "Save" msgstr "Αποθήκευση" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Νέο" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Αρχείο κειμένου" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Φάκελος" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Από σύνδεσμο" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Διαγραμμένα αρχεία" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Δεν έχετε δικαιώματα εγγραφής εδώ." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Λήψη" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Διαγραφή" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Πολύ μεγάλο αρχείο προς αποστολή" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Τρέχουσα ανίχνευση" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index c960ab2c37..d198fe0332 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -56,14 +56,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -71,6 +71,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -82,7 +94,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -98,91 +110,91 @@ msgstr "" msgid "personal settings" msgstr "προσωπικές ρυθμίσεις" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Κρυπτογράφηση" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Ενεργοποιημένο" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Απενεργοποιημένο" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Αλλαγή Κωδικού Πρόσβασης" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index dc88fc6766..be819a840e 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 7185b97f85..716a96b395 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Εσφαλμένο συνθηματικό. Προσπαθήστε ξανά." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Συνθηματικό" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Καταχώρηση" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Συγγνώμη, αυτός ο σύνδεσμος μοιάζει να μην ισχύει πια." @@ -54,28 +54,28 @@ msgstr "ο διαμοιρασμός απενεργοποιήθηκε" msgid "For more info, please ask the person who sent this link." msgstr "Για περισσότερες πληροφορίες, παρακαλώ ρωτήστε το άτομο που σας έστειλε αυτόν τον σύνδεσμο." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Λήψη" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Μεταφόρτωση" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index e70d238939..2e2a8c4b1d 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -28,55 +28,31 @@ msgstr "Αδύνατη η μόνιμη διαγραφή του %s" msgid "Couldn't restore %s" msgstr "Αδυναμία επαναφοράς %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "εκτέλεση λειτουργία επαναφοράς" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Σφάλμα" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "μόνιμη διαγραφή αρχείου" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Μόνιμη διαγραφή" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Όνομα" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Διαγράφηκε" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n φάκελοι" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n αρχεία" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "έγινε επαναφορά" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Όνομα" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Επαναφορά" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Διαγράφηκε" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Διαγραφή" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 550b8adf00..32eb73aaa7 100644 --- a/l10n/el/settings.po +++ b/l10n/el/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -163,15 +163,15 @@ msgstr "Ενημέρωση" msgid "Updated" msgstr "Ενημερώθηκε" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Επιλογή εικόνας προφίλ" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." @@ -187,32 +187,32 @@ msgstr "αναίρεση" msgid "Unable to remove user" msgstr "Αδυναμία αφαίρεση χρήστη" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Ομάδες" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Ομάδα Διαχειριστών" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Διαγραφή" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "προσθήκη ομάδας" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Σφάλμα δημιουργίας χρήστη" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" @@ -390,11 +390,11 @@ msgstr "Περισσότερα" msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Χρήση αυτής της διεύθυνσης για πρόσβαση των αρχείων σας μέσω WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Κρυπτογράφηση" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Συνθηματικό εισόδου" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 1385bd0c12..4d916b51c6 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Δοκιμαστικες ρυθμισεις" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Βοήθεια" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 61cc1f0e63..ff64e18245 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -57,45 +57,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -312,27 +273,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -341,6 +281,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -469,6 +414,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 4663eb6962..373e6b706f 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Secret Code" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submit" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s shared the folder %s with you" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s shared the file %s with you" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "No preview available for" diff --git a/l10n/en@pirate/files_trashbin.po b/l10n/en@pirate/files_trashbin.po index c64e4f7a6a..416897b2d2 100644 --- a/l10n/en@pirate/files_trashbin.po +++ b/l10n/en@pirate/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/en@pirate/user_ldap.po b/l10n/en@pirate/user_ldap.po index 22391f10ba..49dd166b04 100644 --- a/l10n/en@pirate/user_ldap.po +++ b/l10n/en@pirate/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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 46d4619720..fd3396cce3 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 13:00+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "%s shared \"%s\" with you" #: ajax/share.php:168 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Couldn't send mail to following users: %s " #: ajax/share.php:327 msgid "group" @@ -57,45 +57,6 @@ msgstr "Updated filecache" msgid "... %d%% done ..." msgstr "... %d%% done ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Category type not provided." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "No category to add?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "This category already exists: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Object type not provided." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID not provided." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Error adding %s to favourites." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "No categories selected for deletion." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Error removing %s from favourites." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "No image or file provided" @@ -196,55 +157,55 @@ msgstr "December" msgid "Settings" msgstr "Settings" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "seconds ago" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "today" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "yesterday" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n day ago" msgstr[1] "%n days ago" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "last month" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "months ago" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "last year" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "years ago" @@ -312,27 +273,6 @@ msgstr "({count} selected)" msgid "Error loading file exists template" msgstr "Error loading file exists template" -#: 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 "The object type is not specified." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Error" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "The app name is not specified." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "The required file {file} is not installed!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Shared" @@ -341,6 +281,11 @@ msgstr "Shared" msgid "Share" msgstr "Share" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Error" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error whilst sharing" @@ -419,7 +364,7 @@ msgstr "Unshare" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "notify user by email" #: js/share.js:361 msgid "can edit" @@ -469,6 +414,34 @@ msgstr "Email sent" msgid "Warning" msgstr "Warning" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "The object type is not specified." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Enter new" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Delete" + +#: js/tags.js:31 +msgid "Add" +msgstr "Add" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Edit tags" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Error loading dialog template: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "No tags selected for deletion." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the
    just letting you know that %s shared »%s« with you.
    View it!

    " -msgstr "" +msgstr "Hey there,

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

    " #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.

    " -msgstr "" +msgstr "The share will expire on %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index e65d6cb248..1913edbad9 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,15 +75,15 @@ msgstr "Failed to write to disk" msgid "Not enough storage available" msgstr "Not enough storage available" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Upload failed. Could not get file info." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Upload failed. Could not find uploaded file" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Invalid directory." @@ -91,36 +91,36 @@ msgstr "Invalid directory." msgid "Files" msgstr "Files" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Unable to upload {filename} as it is a directory or has 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Not enough space available" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Upload cancelled." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Could not get result from server." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File upload is in progress. Leaving the page now will cancel the upload." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL cannot be empty." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Error" @@ -132,11 +132,11 @@ msgstr "Share" msgid "Delete permanently" msgstr "Delete permanently" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Rename" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Pending" @@ -164,13 +164,13 @@ msgstr "replaced {new_name} with {old_name}" msgid "undo" msgstr "undo" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" msgstr[1] "%n folders" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" @@ -180,7 +180,7 @@ msgstr[1] "%n files" msgid "{dirs} and {files}" msgstr "{dirs} and {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploading %n file" @@ -212,14 +212,14 @@ msgstr "Your storage is almost full ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Encryption App is enabled but your keys are not initialised, please log-out and log-in again" #: js/files.js:72 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." #: js/files.js:76 msgid "" @@ -227,25 +227,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Error moving file" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Name" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Size" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modified" @@ -254,7 +254,7 @@ msgstr "Modified" msgid "%s could not be renamed" msgstr "%s could not be renamed" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Upload" @@ -290,65 +290,65 @@ msgstr "Maximum input size for ZIP files" msgid "Save" msgstr "Save" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "New" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Text file" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Folder" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "From link" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Deleted files" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancel upload" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "You don’t have write permission here." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Nothing in here. Upload something!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Download" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Unshare" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Delete" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Upload too large" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "The files you are trying to upload exceed the maximum size for file uploads on this server." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Files are being scanned, please wait." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Current scanning" diff --git a/l10n/en_GB/files_encryption.po b/l10n/en_GB/files_encryption.po index 1354eff62b..55602a0e0e 100644 --- a/l10n/en_GB/files_encryption.po +++ b/l10n/en_GB/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 12:50+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,14 +54,14 @@ msgid "" "correct." msgstr "Could not update the private key password. Maybe the old password was not correct." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Encryption app not initialised! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialise the encryption app." -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -69,6 +69,18 @@ msgid "" "files." msgstr "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you." + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Unknown error. Please check your system settings or contact your administrator" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Missing requirements." @@ -80,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Following users are not set up for encryption:" @@ -90,97 +102,97 @@ msgstr "Saving..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Go directly to your " #: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "personal settings" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Encryption" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Enable recovery key (allow to recover users files in case of password loss):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Recovery key password" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Repeat recovery key password" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Enabled" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Disabled" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Change recovery key password:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "Old Recovery key password" +msgstr "Old recovery key password" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "New Recovery key password" +msgstr "New recovery key password" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Repeat new recovery key password" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Change Password" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "Your private key password no longer match your login password:" +msgstr "Your private key password no longer matches your login password:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Set your old private key password to your current login password." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr " If you don't remember your old password you can ask your administrator to recover your files." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Old login password" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Current login password" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Update Private Key Password" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Enable password recovery:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "File recovery settings updated" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Could not update file recovery" diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index 1f4b3dec4d..03c8c2458a 100644 --- a/l10n/en_GB/files_external.po +++ b/l10n/en_GB/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/files_sharing.po b/l10n/en_GB/files_sharing.po index a0f4b32037..8600b9ee05 100644 --- a/l10n/en_GB/files_sharing.po +++ b/l10n/en_GB/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-18 16:46+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 13:00+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "This share is password-protected" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "The password is wrong. Try again." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Password" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submit" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Sorry, this link doesn’t seem to work anymore." @@ -54,28 +54,28 @@ msgstr "sharing is disabled" msgid "For more info, please ask the person who sent this link." msgstr "For more info, please ask the person who sent this link." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s shared the folder %s with you" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s shared the file %s with you" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Upload" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancel upload" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "No preview available for" diff --git a/l10n/en_GB/files_trashbin.po b/l10n/en_GB/files_trashbin.po index d32064c181..47a46a78b0 100644 --- a/l10n/en_GB/files_trashbin.po +++ b/l10n/en_GB/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Couldn't delete %s permanently" msgid "Couldn't restore %s" msgstr "Couldn't restore %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "perform restore operation" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "delete file permanently" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Delete permanently" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Name" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Deleted" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n folder" -msgstr[1] "%n folders" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n file" -msgstr[1] "%n files" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restored" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nothing in here. Your recycle bin is empty!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Name" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restore" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Deleted" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Delete" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 2afc895a38..8dd6d17f48 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -158,15 +158,15 @@ msgstr "Update" msgid "Updated" msgstr "Updated" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Select a profile picture" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decrypting files... Please wait, this can take some time." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Saving..." @@ -182,32 +182,32 @@ msgstr "undo" msgid "Unable to remove user" msgstr "Unable to remove user" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Groups" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Group Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Delete" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "add group" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "A valid username must be provided" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Error creating user" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "A valid password must be provided" @@ -343,11 +343,11 @@ msgstr "Allow users to only share with users in their groups" #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Allow mail notification" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Allow user to send mail notification for shared files" #: templates/admin.php:178 msgid "Security" @@ -385,11 +385,11 @@ msgstr "More" msgid "Less" msgstr "Less" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Use this address to access your Files via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Encryption" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "The encryption app is no longer enabled, decrypt all your files" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Log-in password" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Decrypt all Files" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index d525130a2e..269467d7ae 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 16:20+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -369,14 +369,18 @@ msgid "" msgstr "By default, the UUID attribute is automatically detected. The UUID attribute is used to unambiguously identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID Attribute:" +msgid "UUID Attribute for Users:" +msgstr "UUID Attribute for Users:" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "UUID Attribute for Groups:" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Username-LDAP User Mapping" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "Usernames are used to store and assign (meta) data. In order to precisely identify and recognise users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Clear Username-LDAP User Mapping" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Clear Groupname-LDAP Group Mapping" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Test Configuration" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Help" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 6ff322fbfa..6d24a3e802 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -58,45 +58,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Ne proviziĝis tipon de kategorio." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ĉu neniu kategorio estas aldonota?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Tiu kategorio jam ekzistas: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Ne proviziĝis tipon de objekto." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Ne proviziĝis ID-on de %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Eraro dum aldono de %s al favoratoj." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Neniu kategorio elektiĝis por forigo." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Eraro dum forigo de %s el favoratoj." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -197,55 +158,55 @@ msgstr "Decembro" msgid "Settings" msgstr "Agordo" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "hodiaŭ" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "lastamonate" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "lastajare" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "jaroj antaŭe" @@ -313,27 +274,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Ne indikiĝis tipo de la objekto." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Eraro" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Ne indikiĝis nomo de la aplikaĵo." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "La necesa dosiero {file} ne instaliĝis!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Dividita" @@ -342,6 +282,11 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Eraro" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -470,6 +415,34 @@ msgstr "La retpoŝtaĵo sendiĝis" msgid "Warning" msgstr "Averto" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Ne indikiĝis tipo de la objekto." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Forigi" + +#: js/tags.js:31 +msgid "Add" +msgstr "Aldoni" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -75,15 +75,15 @@ msgstr "Malsukcesis skribo al disko" msgid "Not enough storage available" msgstr "Ne haveblas sufiĉa memoro" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Nevalida dosierujo." @@ -91,36 +91,36 @@ msgstr "Nevalida dosierujo." msgid "Files" msgstr "Dosieroj" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Ne haveblas sufiĉa spaco" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL ne povas esti malplena." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nevalida dosierujnomo. La uzo de “Shared” estas rezervita de ownCloud." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Eraro" @@ -132,11 +132,11 @@ msgstr "Kunhavigi" msgid "Delete permanently" msgstr "Forigi por ĉiam" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Traktotaj" @@ -164,13 +164,13 @@ msgstr "anstataŭiĝis {new_name} per {old_name}" msgid "undo" msgstr "malfari" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -180,7 +180,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -227,25 +227,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nomo" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Grando" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modifita" @@ -254,7 +254,7 @@ msgstr "Modifita" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Alŝuti" @@ -290,65 +290,65 @@ msgstr "Maksimuma enirgrando por ZIP-dosieroj" msgid "Save" msgstr "Konservi" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nova" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Tekstodosiero" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Dosierujo" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "El ligilo" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Forigitaj dosieroj" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Vi ne havas permeson skribi ĉi tie." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Malkunhavigi" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Forigi" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Alŝuto tro larĝa" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index e607bf9172..6f54311ea0 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -54,14 +54,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -69,6 +69,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -80,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -96,91 +108,91 @@ msgstr "" msgid "personal settings" msgstr "persona agordo" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Ĉifrado" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Kapabligita" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Malkapabligita" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Ŝarĝi pasvorton" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "La pasvorto de via malpublika klavo ne plu kongruas kun via ensaluta pasvorto:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Malnova ensaluta pasvorto" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Nuna ensaluta pasvorto" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Ĝisdatigi la pasvorton de la malpublika klavo" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 236aa1811e..b8a274b5b7 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index cc9cb10772..3a9a67cd81 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Pasvorto" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Sendi" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s kunhavigis la dosierujon %s kun vi" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s kunhavigis la dosieron %s kun vi" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Alŝuti" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index cb45265ca8..e73d06f526 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Eraro" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Forigi por ĉiam" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nomo" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nomo" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restaŭri" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Forigi" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 69adadb164..b34602ff86 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "Ĝisdatigi" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Konservante..." @@ -181,32 +181,32 @@ msgstr "malfari" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupoj" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupadministranto" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Forigi" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "Pli" msgid "Less" msgstr "Malpli" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Eldono" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Ĉifrado" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 84547fe20e..33dc3c7692 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Provi agordon" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Helpo" diff --git a/l10n/es/core.po b/l10n/es/core.po index 93b7aa4475..c8b3951810 100644 --- a/l10n/es/core.po +++ b/l10n/es/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "%s ha compatido »%s« contigo" #: ajax/share.php:168 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "No se pudo enviar mensajes a los siguientes usuarios: %s" #: ajax/share.php:327 msgid "group" @@ -66,45 +66,6 @@ msgstr "Caché de archivos actualizada" msgid "... %d%% done ..." msgstr "... %d%% hecho ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipo de categoría no proporcionado." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "¿Ninguna categoría para añadir?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Esta categoría ya existe: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tipo de objeto no proporcionado." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID de %s no proporcionado." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Error añadiendo %s a favoritos." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "No hay categorías seleccionadas para borrar." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Error eliminando %s de los favoritos." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "No se especificó ningún archivo o imagen" @@ -205,55 +166,55 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "hoy" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "ayer" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "el mes pasado" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "meses antes" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "el año pasado" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "años antes" @@ -321,27 +282,6 @@ msgstr "({count} seleccionados)" msgid "Error loading file exists template" msgstr "Error cargando plantilla de archivo existente" -#: 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 "El tipo de objeto no está especificado." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Error" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "El nombre de la aplicación no está especificado." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "¡El fichero {file} es necesario y no está instalado!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Compartido" @@ -350,6 +290,11 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Error" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error al compartir" @@ -428,7 +373,7 @@ msgstr "Dejar de compartir" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "notificar al usuario por correo electrónico" #: js/share.js:361 msgid "can edit" @@ -478,6 +423,34 @@ msgstr "Correo electrónico enviado" msgid "Warning" msgstr "Precaución" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "El tipo de objeto no está especificado." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Eliminar" + +#: js/tags.js:31 +msgid "Add" +msgstr "Agregar" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the
    just letting you know that %s shared »%s« with you.
    View it!

    " -msgstr "" +msgstr "Hola:

    tan solo queremos informarte que %s compartió «%s» contigo.
    ¡Míralo acá!

    " #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.

    " -msgstr "" +msgstr "El objeto dejará de ser compartido el %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/es/files.po b/l10n/es/files.po index 14e84c9373..3c97eb42e7 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -5,6 +5,7 @@ # Translators: # Art O. Pal , 2013 # ggam , 2013 +# japaol , 2013 # mikelanabitarte , 2013 # qdneren , 2013 # Korrosivo , 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: japaol \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" @@ -80,15 +81,15 @@ msgstr "Falló al escribir al disco" msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Directorio inválido." @@ -96,36 +97,36 @@ msgstr "Directorio inválido." msgid "Files" msgstr "Archivos" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "No hay suficiente espacio disponible" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "No se pudo obtener respuesta del servidor." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si sale de la página ahora cancelará la subida." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nombre de carpeta invalido. El uso de \"Shared\" está reservado por ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Error" @@ -137,11 +138,11 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Pendiente" @@ -169,13 +170,13 @@ msgstr "reemplazado {new_name} con {old_name}" msgid "undo" msgstr "deshacer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n carpetas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -185,7 +186,7 @@ msgstr[1] "%n archivos" msgid "{dirs} and {files}" msgstr "{dirs} y {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" @@ -217,14 +218,14 @@ msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Encryption App está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo." #: js/files.js:72 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "La clave privada no es válida para Encryption App. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos encriptados." #: js/files.js:76 msgid "" @@ -232,25 +233,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son grandes." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Error moviendo archivo" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nombre" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Tamaño" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modificado" @@ -259,7 +260,7 @@ msgstr "Modificado" msgid "%s could not be renamed" msgstr "%s no se pudo renombrar" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Subir" @@ -295,65 +296,65 @@ msgstr "Tamaño máximo para archivos ZIP de entrada" msgid "Save" msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nuevo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Archivo de texto" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Desde enlace" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Archivos eliminados" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "No tiene permisos de escritura aquí." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "No hay nada aquí. ¡Suba algo!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Descargar" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Dejar de compartir" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Subida demasido grande" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Los archivos están siendo escaneados, por favor espere." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index 7638a18810..3e66b297ce 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -6,6 +6,7 @@ # Art O. Pal , 2013 # asaez , 2013 # gmoriello , 2013 +# japaol , 2013 # mikelanabitarte , 2013 # Korrosivo , 2013 # saskarip , 2013 @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:14-0400\n" -"PO-Revision-Date: 2013-10-07 16:10+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,14 +62,14 @@ msgid "" "correct." msgstr "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "¡Encryption App no está inicializada!. Quizás la aplicación fue reiniciada durante tu sesión. Por favor, cierra la sesión y vuelva a iniciarla para intentar inicializar la Encryption App." -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -76,6 +77,18 @@ msgid "" "files." msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Requisitos incompletos." @@ -87,7 +100,7 @@ msgid "" " the encryption app has been disabled." msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Los siguientes usuarios no han sido configurados para el cifrado:" @@ -103,91 +116,91 @@ msgstr "Ir directamente a su" msgid "personal settings" msgstr "opciones personales" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Cifrado" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Contraseña de clave de recuperación" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "Repetir contraseña de clave de recuperación" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Habilitar" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Deshabilitado" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Cambiar la contraseña de la clave de recuperación" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Antigua clave de recuperación" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nueva clave de recuperación" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "Repetir nueva contraseña de clave de recuperación" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Cambiar contraseña" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Su contraseña de clave privada ya no coincide con su contraseña de acceso:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus ficheros." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Contraseña de acceso antigua" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Contraseña de acceso actual" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Actualizar Contraseña de Clave Privada" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Habilitar la recuperación de contraseña:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Habilitar esta opción le permitirá volver a tener acceso a sus ficheros cifrados en caso de pérdida de contraseña" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Opciones de recuperación de archivos actualizada" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "No se pudo actualizar la recuperación de archivos" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 6ffa1327ba..72118628d1 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Korrosivo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Acceso concedido" @@ -26,7 +26,7 @@ msgstr "Acceso concedido" msgid "Error configuring Dropbox storage" msgstr "Error configurando el almacenamiento de Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Conceder acceso" @@ -34,24 +34,24 @@ msgstr "Conceder acceso" msgid "Please provide a valid Dropbox app key and secret." msgstr "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Error configurando el almacenamiento de Google Drive" -#: lib/config.php:447 +#: lib/config.php:453 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 26442ede40..8f4ab1acf9 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -4,14 +4,15 @@ # # Translators: # Art O. Pal , 2013 +# Dominique Couot , 2013 # Korrosivo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-13 23:50+0000\n" -"Last-Translator: Korrosivo \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 14:50+0000\n" +"Last-Translator: Dominique Couot \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" @@ -20,17 +21,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Este elemento compartido esta protegido por contraseña" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "La contraseña introducida es errónea. Inténtelo de nuevo." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Contraseña" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Enviar" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Vaya, este enlace parece que no volverá a funcionar." @@ -55,28 +56,28 @@ msgstr "compartir está desactivado" msgid "For more info, please ask the person who sent this link." msgstr "Para mayor información, contacte a la persona que le envió el enlace." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el fichero %s contigo" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Descargar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Subir" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "No hay vista previa disponible para" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 375095a68b..155a900d63 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Korrosivo \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,55 +29,31 @@ msgstr "No se puede eliminar %s permanentemente" msgid "Couldn't restore %s" msgstr "No se puede restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "restaurar" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "eliminar archivo permanentemente" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Eliminar permanentemente" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nombre" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Eliminado" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n carpeta" -msgstr[1] "%n carpetas" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n archivo" -msgstr[1] "%n archivos" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "recuperado" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "No hay nada aquí. ¡Tu papelera esta vacía!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nombre" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Eliminado" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index a6d1816d4c..4dfa4e0f47 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -7,6 +7,7 @@ # asaez , 2013 # eadeprado , 2013 # ggam , 2013 +# japaol , 2013 # pablomillaquen , 2013 # qdneren , 2013 # Korrosivo , 2013 @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: japaol \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" @@ -166,15 +167,15 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Seleccionar una imagen de perfil" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Guardando..." @@ -190,32 +191,32 @@ msgstr "deshacer" msgid "Unable to remove user" msgstr "No se puede eliminar el usuario" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Administrador del Grupo" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Eliminar" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "añadir Grupo" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Se debe proporcionar un nombre de usuario válido" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Error al crear usuario" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Se debe proporcionar una contraseña valida" @@ -351,11 +352,11 @@ msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Permitir notificaciones por email" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Permitir al usuario enviar notificaciones por email de archivos compartidos" #: templates/admin.php:178 msgid "Security" @@ -393,11 +394,11 @@ msgstr "Más" msgid "Less" msgstr "Menos" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versión" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Utilice esta dirección paraacceder a sus archivos a través de WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Cifrado" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "La aplicación de cifrado no está activada, descifre sus archivos" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Contraseña de acceso" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Descifrar archivos" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 9b772412ce..1a76432405 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Korrosivo \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -373,14 +373,18 @@ msgid "" msgstr "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Asignación del Nombre de usuario de un usuario LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -394,18 +398,18 @@ msgid "" "experimental stage." msgstr "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Configuración de prueba" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ayuda" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 19341075ae..65eed7ba89 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -57,45 +57,6 @@ msgstr "Caché de archivos actualizada" msgid "... %d%% done ..." msgstr "... %d%% hecho ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipo de categoría no provisto. " - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "¿Ninguna categoría para añadir?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Esta categoría ya existe: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tipo de objeto no provisto. " - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID no provista. " - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Error al agregar %s a favoritos. " - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "No se seleccionaron categorías para borrar." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Error al borrar %s de favoritos. " - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -196,55 +157,55 @@ msgstr "diciembre" msgid "Settings" msgstr "Configuración" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "hoy" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "ayer" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "el mes pasado" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "meses atrás" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "el año pasado" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "años atrás" @@ -312,27 +273,6 @@ msgstr "" msgid "Error loading file exists template" 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 "El tipo de objeto no está especificado. " - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Error" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "El nombre de la App no está especificado." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "¡El archivo requerido {file} no está instalado!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Compartido" @@ -341,6 +281,11 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Error" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error al compartir" @@ -469,6 +414,34 @@ msgstr "e-mail mandado" msgid "Warning" msgstr "Atención" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "El tipo de objeto no está especificado. " + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Borrar" + +#: js/tags.js:31 +msgid "Add" +msgstr "Agregar" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,15 @@ msgstr "Error al escribir en el disco" msgid "Not enough storage available" msgstr "No hay suficiente almacenamiento" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Directorio inválido." @@ -94,36 +94,36 @@ msgstr "Directorio inválido." msgid "Files" msgstr "Archivos" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "No hay suficiente espacio disponible" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nombre de directorio inválido. El uso de \"Shared\" está reservado por ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Error" @@ -135,11 +135,11 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Borrar permanentemente" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Pendientes" @@ -167,13 +167,13 @@ msgstr "se reemplazó {new_name} con {old_name}" msgid "undo" msgstr "deshacer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" @@ -183,7 +183,7 @@ msgstr[1] "%n archivos" msgid "{dirs} and {files}" msgstr "{carpetas} y {archivos}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" @@ -230,25 +230,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "El proceso de cifrado se ha desactivado, pero los archivos aún están encriptados. Por favor, vaya a la configuración personal para descifrar los archivos." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nombre" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Tamaño" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modificado" @@ -257,7 +257,7 @@ msgstr "Modificado" msgid "%s could not be renamed" msgstr "No se pudo renombrar %s" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Subir" @@ -293,65 +293,65 @@ msgstr "Tamaño máximo para archivos ZIP de entrada" msgid "Save" msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nuevo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Archivo de texto" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Desde enlace" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Archivos borrados" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "No tenés permisos de escritura acá." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "No hay nada. ¡Subí contenido!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Descargar" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Dejar de compartir" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Borrar" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "El tamaño del archivo que querés subir es demasiado grande" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que intentás subir sobrepasan el tamaño máximo " -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor esperá." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index 7084c3602f..0056c8476c 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -55,14 +55,14 @@ msgid "" "correct." msgstr "No fue posible actualizar la contraseña de clave privada. Tal vez la contraseña anterior no es correcta." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -70,6 +70,18 @@ msgid "" "files." msgstr "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde fuera del sistema de ownCloud (por ej. desde tu cuenta de sistema). Podés actualizar tu clave privada en la sección de \"configuración personal\", para recuperar el acceso a tus archivos." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Requisitos incompletos." @@ -81,7 +93,7 @@ msgid "" " the encryption app has been disabled." msgstr "Por favor, asegúrese de que PHP 5.3.3 o una versión más reciente esté instalado y que OpenSSL junto con la extensión PHP esté habilitado y configurado apropiadamente. Por ahora, la aplicación de encriptación ha sido deshabilitada." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Los siguientes usuarios no fueron configurados para encriptar:" @@ -97,91 +109,91 @@ msgstr "" msgid "personal settings" msgstr "Configuración personal" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Encriptación" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso que pierdas la contraseña):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Contraseña de recuperación de clave" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Habilitado" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Deshabilitado" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Cambiar contraseña para recuperar la clave:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Contraseña antigua de recuperación de clave" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nueva contraseña de recuperación de clave" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Cambiar contraseña" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Tu contraseña de clave privada ya no coincide con la contraseña de ingreso:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Usá tu contraseña de clave privada antigua para tu contraseña de ingreso actual." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Si no te acordás de tu contraseña antigua, pedile al administrador que recupere tus archivos" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Contraseña anterior" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Contraseña actual" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Actualizar contraseña de la clave privada" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Habilitar recuperación de contraseña:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Habilitando esta opción, vas a tener acceso a tus archivos encriptados, incluso si perdés la contraseña" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Las opciones de recuperación de archivos fueron actualizadas" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "No fue posible actualizar la recuperación de archivos" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 1dfe9a4ee1..f22a1caf0e 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index cea65819e7..c1307a7e9e 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "La contraseña no es correcta. Probá de nuevo." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Contraseña" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Enviar" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Perdón, este enlace parece no funcionar más." @@ -54,28 +54,28 @@ msgstr "compartir está desactivado" msgid "For more info, please ask the person who sent this link." msgstr "Para mayor información, contactá a la persona que te mandó el enlace." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s con vos" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el archivo %s con vos" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Descargar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Subir" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "La vista preliminar no está disponible para" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index abcc1f3e13..962fd759ca 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "No fue posible borrar %s de manera permanente" msgid "Couldn't restore %s" msgstr "No se pudo restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "Restaurar" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Borrar archivo de manera permanente" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Borrar de manera permanente" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nombre" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Borrado" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n directorio" -msgstr[1] "%n directorios" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n archivo" -msgstr[1] "%n archivos" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "recuperado" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "No hay nada acá. ¡La papelera está vacía!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nombre" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Borrado" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Borrar" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 303428b341..0bbb60d3a9 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -160,15 +160,15 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Desencriptando archivos... Por favor espere, esto puede tardar." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Guardando..." @@ -184,32 +184,32 @@ msgstr "deshacer" msgid "Unable to remove user" msgstr "Imposible borrar usuario" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Borrar" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "agregar grupo" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Debe ingresar un nombre de usuario válido" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Error creando usuario" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Debe ingresar una contraseña válida" @@ -387,11 +387,11 @@ msgstr "Más" msgid "Less" msgstr "Menos" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versión" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Usá esta dirección para acceder a tus archivos a través de WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Encriptación" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "La aplicación de encriptación ya no está habilitada, desencriptando todos los archivos" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Clave de acceso" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Desencriptar todos los archivos" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index e6e91d2f16..2bc3684a80 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "Por defecto, el atributo UUID es detectado automáticamente. Este atributo es usado para identificar de manera certera usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no fue especificado otro comportamiento más arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte que el atributo de tu elección sea accesible por los usuarios y grupos y que sea único. Dejalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto sólo en los nuevos usuarios y grupos de LDAP mapeados (agregados)." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Asignación del Nombre de usuario de un usuario LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "Los usuarios son usados para almacenar y asignar datos (metadatos). Con el fin de identificar de forma precisa y reconocer usuarios, a cada usuario de LDAP se será asignado un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es dejado en caché para reducir la interacción entre el LDAP, pero no es usado para la identificación. Si el DN cambia, los cambios van a ser aplicados. El nombre de usuario interno es usado en todos los lugares. Vaciar los mapeos, deja restos por todas partes. Vaciar los mapeos, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, solamente en fase de desarrollo o experimental." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Probar configuración" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ayuda" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 5e77ae7441..a4d84218fd 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/es_MX/files_sharing.po b/l10n/es_MX/files_sharing.po index 3cce6ac339..0accae637b 100644 --- a/l10n/es_MX/files_sharing.po +++ b/l10n/es_MX/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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/es_MX/files_trashbin.po b/l10n/es_MX/files_trashbin.po index 42fb8a7b1f..c9ff11a354 100644 --- a/l10n/es_MX/files_trashbin.po +++ b/l10n/es_MX/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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index 54dc1b5192..477199e213 100644 --- a/l10n/es_MX/user_ldap.po +++ b/l10n/es_MX/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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index aadb8d89be..c3fee47037 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 06:20+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,45 +58,6 @@ msgstr "Uuendatud failipuhver" msgid "... %d%% done ..." msgstr "... %d%% tehtud ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategooria tüüp puudub." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Pole kategooriat, mida lisada?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "See kategooria on juba olemas: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekti tüüb puudub." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID puudub." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Viga %s lisamisel lemmikutesse." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Kustutamiseks pole kategooriat valitud." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Viga %s eemaldamisel lemmikutest." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Ühtegi pilti või faili ei pakutud" @@ -197,55 +158,55 @@ msgstr "Detsember" msgid "Settings" msgstr "Seaded" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut tagasi" msgstr[1] "%n minutit tagasi" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tund tagasi" msgstr[1] "%n tundi tagasi" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "täna" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "eile" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päev tagasi" msgstr[1] "%n päeva tagasi" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuu tagasi" msgstr[1] "%n kuud tagasi" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "aastat tagasi" @@ -291,7 +252,7 @@ msgstr "Milliseid faile sa soovid alles hoida?" msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Kui valid mõlemad versioonid, siis lisatakse kopeeritud faili nimele number." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -311,28 +272,7 @@ msgstr "({count} valitud)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -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 "Objekti tüüp pole määratletud." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Viga" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Rakenduse nimi ole määratletud." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Vajalikku faili {file} pole paigaldatud!" +msgstr "Viga faili olemasolu malli laadimisel" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -342,6 +282,11 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Viga" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -470,6 +415,34 @@ msgstr "E-kiri on saadetud" msgid "Warning" msgstr "Hoiatus" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Objekti tüüp pole määratletud." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Sisesta uus" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Kustuta" + +#: js/tags.js:31 +msgid "Add" +msgstr "Lisa" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Muuda silte" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Viga dialoogi malli laadimisel: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Kustutamiseks pole ühtegi silti valitud." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,15 +76,15 @@ msgstr "Kettale kirjutamine ebaõnnestus" msgid "Not enough storage available" msgstr "Saadaval pole piisavalt ruumi" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Vigane kaust." @@ -92,36 +92,36 @@ msgstr "Vigane kaust." msgid "Files" msgstr "Failid" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Ei saa üles laadida {filename}, kuna see on kataloog või selle suurus on 0 baiti" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Pole piisavalt ruumi" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Serverist ei saadud tulemusi" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL ei saa olla tühi." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Vigane kausta nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Viga" @@ -133,11 +133,11 @@ msgstr "Jaga" msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Ootel" @@ -165,13 +165,13 @@ msgstr "asendas nime {old_name} nimega {new_name}" msgid "undo" msgstr "tagasi" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" @@ -181,7 +181,7 @@ msgstr[1] "%n faili" msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laadin üles %n faili" @@ -213,14 +213,14 @@ msgstr "Su andmemaht on peaaegu täis ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse." #: js/files.js:72 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele." #: js/files.js:76 msgid "" @@ -228,25 +228,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. " -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Viga faili eemaldamisel" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nimi" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Suurus" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Muudetud" @@ -255,7 +255,7 @@ msgstr "Muudetud" msgid "%s could not be renamed" msgstr "%s ümbernimetamine ebaõnnestus" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Lae üles" @@ -291,65 +291,65 @@ msgstr "Maksimaalne ZIP-faili sisestatava faili suurus" msgid "Save" msgstr "Salvesta" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Uus" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Tekstifail" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Kaust" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Allikast" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Kustutatud failid" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Siin puudvad sul kirjutamisõigused." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Lae alla" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Lõpeta jagamine" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Kustuta" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index 7d195812ab..b905f4d62d 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 06:20+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,14 +55,14 @@ msgid "" "correct." msgstr "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Krüpteerimise rakend pole käivitatud. Võib-olla krüpteerimise rakend taaskäivitati sinu sessiooni kestel. Palun proovi logida välja ning uuesti sisse käivitamaks krüpteerimise rakendit." -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -70,6 +70,18 @@ msgid "" "files." msgstr "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "Sa ei saa seda faili dekrüpteerida, see on tõenäoliselt jagatud fail. Palun lase omanikul seda faili sinuga uuesti jagada." + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Tundmatu tõrge. Palun kontrolli süsteemi seadeid või võta ühendust oma süsteemi administraatoriga" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Nõutavad on puudu." @@ -81,7 +93,7 @@ msgid "" " the encryption app has been disabled." msgstr "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Järgmised kasutajad pole seadistatud krüpteeringuks:" @@ -91,97 +103,97 @@ msgstr "Salvestamine..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Liigu otse oma" #: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "isiklikes seadetes" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Krüpteerimine" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Luba taastevõti (võimada kasutaja failide taastamine parooli kaotuse puhul):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Taastevõtme parool" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Korda taastevõtme parooli" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Sisse lülitatud" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Väljalülitatud" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Muuda taastevõtme parooli:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Vana taastevõtme parool" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Uus taastevõtme parool" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Korda uut taastevõtme parooli" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Muuda parooli" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Sinu privaatse võtme parool ei ühti enam sinu sisselogimise parooliga:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Kui sa ei mäleta oma vana parooli, siis palu oma süsteemihalduril taastada ligipääs failidele." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Vana sisselogimise parool" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Praegune sisselogimise parool" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Uuenda privaatse võtme parooli" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Luba parooli taaste:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Valiku lubamine võimaldab taastada ligipääsu krüpteeritud failidele kui parooli kaotuse puhul" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Faili taaste seaded uuendatud" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Ei suuda uuendada taastefaili" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 19d868dd02..dc65ccbfc1 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 358fc25d35..115fd9d483 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 17:48+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 06:20+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "See jagamine on parooliga kaitstud" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Parool on vale. Proovi uuesti." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Parool" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Saada" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Vabandust, see link ei tundu enam toimivat." @@ -55,28 +55,28 @@ msgstr "jagamine on peatatud" msgid "For more info, please ask the person who sent this link." msgstr "Täpsema info saamiseks palun pöördu lingi saatnud isiku poole." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jagas sinuga kausta %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s jagas sinuga faili %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Lae alla" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Lae üles" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Eelvaadet pole saadaval" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 7029036801..59ea427425 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 17:46+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "%s jäädavalt kustutamine ebaõnnestus" msgid "Couldn't restore %s" msgstr "%s ei saa taastada" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "soorita taastamine" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Viga" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "kustuta fail jäädavalt" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Kustuta jäädavalt" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nimi" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Kustutatud" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n kataloogi" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fail" -msgstr[1] "%n faili" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "taastatud" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Siin pole midagi. Sinu prügikast on tühi!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nimi" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Taasta" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Kustutatud" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Kustuta" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 1d42da7efa..b082cae4de 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 17:40+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -159,15 +159,15 @@ msgstr "Uuenda" msgid "Updated" msgstr "Uuendatud" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Vali profiili pilt" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrüpteerin faile... Palun oota, see võib võtta veidi aega." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Salvestamine..." @@ -183,32 +183,32 @@ msgstr "tagasi" msgid "Unable to remove user" msgstr "Kasutaja eemaldamine ebaõnnestus" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupid" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupi admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Kustuta" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "lisa grupp" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Sisesta nõuetele vastav kasutajatunnus" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Viga kasutaja loomisel" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Sisesta nõuetele vastav parool" @@ -386,11 +386,11 @@ msgstr "Rohkem" msgid "Less" msgstr "Vähem" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versioon" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Kasuta seda aadressi oma failidele ligipääsuks WebDAV kaudu" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Krüpteerimine" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Küpteeringu rakend pole lubatud, dekrüpteeri kõik oma failid" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Sisselogimise parool" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Dekrüpteeri kõik failid" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 8f617c04fd..ffee0e719b 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 06:20+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -370,14 +370,18 @@ msgid "" msgstr "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti kasutatakse LDAP kasutajate ja gruppide kindlaks tuvastamiseks. Samuti tekitatakse sisemine kasutajanimi UUID alusel, kui pole määratud teisiti. Sa saad tühistada selle seadistuse ning määrata atribuudi omal valikul. Pead veenduma, et valitud atribuut toimib nii kasutajate kui gruppide puhul ning on unikaalne. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID atribuut:" +msgid "UUID Attribute for Users:" +msgstr "UUID atribuut kasutajatele:" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "UUID atribuut gruppidele:" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "LDAP-Kasutajatunnus Kasutaja Vastendus" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, peab iga LDAP kasutaja omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutajanimi vastendatakse LDAP kasutaja UUID-iks. Lisaks puhverdatakse DN vähendamaks LDAP päringuid, kuid seda ei kasutata tuvastamisel. ownCloud suudab tuvastada ka DN muutumise. ownCloud sisemist kasutajatunnust kasutatakse üle kogu ownCloudi. Eemaldates vastenduse tekivad kõikjal andmejäägid. Vastenduste eemaldamine ei ole konfiguratsiooni tundlik, see mõjutab kõiki LDAP seadistusi! Ära kunagi eemalda vastendusi produktsioonis! Seda võid teha ainult testis või katsetuste masinas." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Puhasta LDAP-Kasutajatunnus Kasutaja Vastendus" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Puhasta LDAP-Grupinimi Grupp Vastendus" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testi seadistust" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Abiinfo" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index e4d54a357a..5aecdaf8f0 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -58,45 +58,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategoria mota ez da zehaztu." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ez dago gehitzeko kategoriarik?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kategoria hau dagoeneko existitzen da: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objetu mota ez da zehaztu." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID mota ez da zehaztu." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Errorea gertatu da %s gogokoetara gehitzean." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Ez da ezabatzeko kategoriarik hautatu." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Errorea gertatu da %s gogokoetatik ezabatzean." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -197,55 +158,55 @@ msgstr "Abendua" msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "segundu" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "gaur" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "atzo" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "hilabete" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "joan den urtean" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "urte" @@ -313,27 +274,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Objetu mota ez dago zehaztuta." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Errorea" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "App izena ez dago zehaztuta." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Beharrezkoa den {file} fitxategia ez dago instalatuta!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Elkarbanatuta" @@ -342,6 +282,11 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Errorea" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -470,6 +415,34 @@ msgstr "Eposta bidalia" msgid "Warning" msgstr "Abisua" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Objetu mota ez dago zehaztuta." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Ezabatu" + +#: js/tags.js:31 +msgid "Add" +msgstr "Gehitu" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -76,15 +76,15 @@ msgstr "Errore bat izan da diskoan idazterakoan" msgid "Not enough storage available" msgstr "Ez dago behar aina leku erabilgarri," -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Baliogabeko karpeta." @@ -92,36 +92,36 @@ msgstr "Baliogabeko karpeta." msgid "Files" msgstr "Fitxategiak" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Ezin da {filename} igo karpeta bat delako edo 0 byte dituelako" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Ez dago leku nahikorik." -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Ezin da zerbitzaritik emaitzik lortu" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URLa ezin da hutsik egon." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Karpeta izne baliogabea. \"Shared\" karpeta erabilpena OwnCloudentzat erreserbaturik dago." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Errorea" @@ -133,11 +133,11 @@ msgstr "Elkarbanatu" msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Zain" @@ -165,13 +165,13 @@ msgstr " {new_name}-k {old_name} ordezkatu du" msgid "undo" msgstr "desegin" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "karpeta %n" msgstr[1] "%n karpeta" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "fitxategi %n" @@ -181,7 +181,7 @@ msgstr[1] "%n fitxategi" msgid "{dirs} and {files}" msgstr "{dirs} eta {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Fitxategi %n igotzen" @@ -228,25 +228,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Enkriptazioa desgaitua izan da baina zure fitxategiak oraindik enkriptatuta daude. Mesedez jo zure ezarpen pertsonaletara zure fitxategiak dekodifikatzeko." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. " -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Errorea fitxategia mugitzean" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Izena" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Tamaina" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Aldatuta" @@ -255,7 +255,7 @@ msgstr "Aldatuta" msgid "%s could not be renamed" msgstr "%s ezin da berrizendatu" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Igo" @@ -291,65 +291,65 @@ msgstr "ZIP fitxategien gehienezko tamaina" msgid "Save" msgstr "Gorde" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Berria" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Testu fitxategia" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Karpeta" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Estekatik" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Ezabatutako fitxategiak" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Ez duzu hemen idazteko baimenik." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Ez elkarbanatu" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Ezabatu" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Igoera handiegia da" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index 5c6eb3d83d..84ff659791 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -56,14 +56,14 @@ msgid "" "correct." msgstr "Ezin izan da gako pribatu pasahitza eguneratu. Agian pasahitz zaharra okerrekoa da." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -71,6 +71,18 @@ msgid "" "files." msgstr "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza ownCloud sistematik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Eskakizun batzuk ez dira betetzen." @@ -82,7 +94,7 @@ msgid "" " the encryption app has been disabled." msgstr "Mesedez ziurtatu PHP 5.3.3 edo berriago bat instalatuta dagoela eta OpenSSL PHP hedapenarekin gaitua eta ongi konfiguratuta dagoela. Oraingoz, enkriptazio aplikazioa desgaituta dago." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Hurrengo erabiltzaileak ez daude enktriptatzeko konfiguratutak:" @@ -98,91 +110,91 @@ msgstr "" msgid "personal settings" msgstr "ezarpen pertsonalak" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Enkriptazioa" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Gaitu berreskurapen gakoa (erabiltzaileen fitxategiak berreskuratzea ahalbidetzen du pasahitza galtzen badute ere):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Berreskuratze gako pasahitza" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Gaitua" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Ez-gaitua" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Aldatu berreskuratze gako pasahitza:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Berreskuratze gako pasahitz zaharra" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Berreskuratze gako pasahitz berria" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Aldatu Pasahitza" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Zure gako pribatuaren pasahitza ez da dagoeneko zure sarrera pasahitza:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Ezarri zure gako pribatu zaharraren pasahitza zure oraingo sarrerako psahitzara." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Ez baduzu zure pasahitz zaharra gogoratzen eskatu zure administratzaileari zure fitxategiak berreskuratzeko." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Sartzeko pasahitz zaharra" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Sartzeko oraingo pasahitza" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Eguneratu gako pribatu pasahitza" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Gaitu pasahitz berreskuratzea:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Aukera hau gaituz zure enkriptatutako fitxategiak berreskuratu ahal izango dituzu pasahitza galtzekotan" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Fitxategi berreskuratze ezarpenak eguneratuak" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Ezin da fitxategi berreskuratzea eguneratu" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 2acc8341c1..fa979c709b 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index ce629410a6..ab7750234f 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Pasahitza ez da egokia. Saiatu berriro." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Pasahitza" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Bidali" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Barkatu, lotura ez dirudi eskuragarria dagoenik." @@ -54,28 +54,28 @@ msgstr "elkarbanatzea ez dago gaituta" msgid "For more info, please ask the person who sent this link." msgstr "Informazio gehiagorako, mesedez eskatu lotura hau bidali zuen pertsonari" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%sk zurekin %s karpeta elkarbanatu du" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%sk zurekin %s fitxategia elkarbanatu du" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Deskargatu" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Igo" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Ez dago aurrebista eskuragarririk hauentzat " diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 1daada3771..af85d6db6a 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Ezin izan da %s betirako ezabatu" msgid "Couldn't restore %s" msgstr "Ezin izan da %s berreskuratu" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "berreskuratu" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Errorea" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "ezabatu fitxategia betirako" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Ezabatu betirako" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Izena" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Ezabatuta" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "karpeta %n" -msgstr[1] "%n karpeta" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "fitxategi %n" -msgstr[1] "%n fitxategi" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Berrezarrita" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ez dago ezer ez. Zure zakarrontzia hutsik dago!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Izena" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Berrezarri" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Ezabatuta" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Ezabatu" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 44fe562161..b88c2e5594 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -159,15 +159,15 @@ msgstr "Eguneratu" msgid "Updated" msgstr "Eguneratuta" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Gordetzen..." @@ -183,32 +183,32 @@ msgstr "desegin" msgid "Unable to remove user" msgstr "Ezin izan da erabiltzailea aldatu" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Taldeak" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Talde administradorea" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Ezabatu" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "gehitu taldea" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Baliozko erabiltzaile izena eman behar da" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Errore bat egon da erabiltzailea sortzean" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Baliozko pasahitza eman behar da" @@ -386,11 +386,11 @@ msgstr "Gehiago" msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Enkriptazioa" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index e54163f03b..2ee5871f0b 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Egiaztatu Konfigurazioa" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Laguntza" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 4854035993..d21e9df0fe 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -57,45 +57,6 @@ msgstr "" msgid "... %d%% done ..." 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 "این دسته هم اکنون وجود دارد: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "نوع شی ارائه نشده است." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "شناسه %s ارائه نشده است." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "خطای اضافه کردن %s به علاقه مندی ها." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "هیج دسته ای برای پاک شدن انتخاب نشده است" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "خطای پاک کردن %s از علاقه مندی ها." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -196,51 +157,51 @@ msgstr "دسامبر" msgid "Settings" msgstr "تنظیمات" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "امروز" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "دیروز" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "ماه قبل" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "سال قبل" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "سال‌های قبل" @@ -307,27 +268,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "نوع شی تعیین نشده است." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "خطا" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "نام برنامه تعیین نشده است." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "پرونده { پرونده} درخواست شده نصب نشده است !" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "اشتراک گذاشته شده" @@ -336,6 +276,11 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراک‌گذاری" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "خطا" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -464,6 +409,34 @@ msgstr "ایمیل ارسال شد" msgid "Warning" msgstr "اخطار" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "نوع شی تعیین نشده است." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "حذف" + +#: js/tags.js:31 +msgid "Add" +msgstr "افزودن" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -75,15 +75,15 @@ msgstr "نوشتن بر روی دیسک سخت ناموفق بود" msgid "Not enough storage available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." @@ -91,36 +91,36 @@ msgstr "فهرست راهنما نامعتبر می باشد." msgid "Files" msgstr "پرونده‌ها" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "فضای کافی در دسترس نیست" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. " -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL نمی تواند خالی باشد." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "نام پوشه نامعتبر است. استفاده از 'به اشتراک گذاشته شده' متعلق به ownCloud میباشد." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "خطا" @@ -132,11 +132,11 @@ msgstr "اشتراک‌گذاری" msgid "Delete permanently" msgstr "حذف قطعی" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "در انتظار" @@ -164,12 +164,12 @@ msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." msgid "undo" msgstr "بازگشت" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -178,7 +178,7 @@ msgstr[0] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -224,25 +224,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "نام" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "اندازه" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "تاریخ" @@ -251,7 +251,7 @@ msgstr "تاریخ" msgid "%s could not be renamed" msgstr "%s نمیتواند تغییر نام دهد." -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "بارگزاری" @@ -287,65 +287,65 @@ msgstr "حداکثرمقدار برای بار گزاری پرونده های ف msgid "Save" msgstr "ذخیره" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "جدید" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "فایل متنی" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "پوشه" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "از پیوند" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "فایل های حذف شده" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "شما اجازه ی نوشتن در اینجا را ندارید" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "اینجا هیچ چیز نیست." -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "دانلود" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "لغو اشتراک" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "حذف" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "بازرسی کنونی" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index 4ec1a7fd3d..ac3b1abfdc 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -54,14 +54,14 @@ msgid "" "correct." msgstr "رمزعبور کلید خصوصی را نمی تواند به روز کند. شاید رمزعبور قدیمی صحیح نمی باشد." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -69,6 +69,18 @@ msgid "" "files." msgstr "کلید خصوصی شما معتبر نمی باشد! ظاهرا رمزعبور شما بیرون از سیستم ownCloud تغییر یافته است( به عنوان مثال پوشه سازمان شما ). شما میتوانید رمزعبور کلید خصوصی خود را در تنظیمات شخصیتان به روز کنید تا بتوانید به فایل های رمزگذاری شده خود را دسترسی داشته باشید." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "نیازمندی های گمشده" @@ -80,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -96,91 +108,91 @@ msgstr "" msgid "personal settings" msgstr "تنظیمات شخصی" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "رمزگذاری" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "فعال کردن کلید بازیابی(اجازه بازیابی فایل های کاربران در صورت از دست دادن رمزعبور):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "رمزعبور کلید بازیابی" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "فعال شده" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "غیرفعال شده" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "تغییر رمزعبور کلید بازیابی:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "رمزعبور قدیمی کلید بازیابی " -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "رمزعبور جدید کلید بازیابی" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "تغییر رمزعبور" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "رمزعبور کلید خصوصی شما با رمزعبور شما یکسان نیست :" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "رمزعبور قدیمی کلید خصوصی خود را با رمزعبور فعلی تنظیم نمایید." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "اگر رمزعبور قدیمی را فراموش کرده اید میتوانید از مدیر خود برای بازیابی فایل هایتان درخواست نمایید." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "رمزعبور قدیمی" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "رمزعبور فعلی" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "به روز رسانی رمزعبور کلید خصوصی" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "فعال سازی بازیابی رمزعبور:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "فعال کردن این گزینه به شما اجازه خواهد داد در صورت از دست دادن رمزعبور به فایل های رمزگذاری شده خود دسترسی داشته باشید." -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "تنظیمات بازیابی فایل به روز شده است." -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "به روز رسانی بازیابی فایل را نمی تواند انجام دهد." diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 1b71738f67..d4e2ba0a62 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 14a3c4edfa..b74820ae6b 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "رمزعبور اشتباه می باشد. دوباره امتحان کنید." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "گذرواژه" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "ثبت" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%sپوشه %s را با شما به اشتراک گذاشت" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%sفایل %s را با شما به اشتراک گذاشت" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "دانلود" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "بارگزاری" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "هیچگونه پیش نمایشی موجود نیست" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 28c2687c75..1c133a5ef2 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "%s را نمی توان برای همیشه حذف کرد" msgid "Couldn't restore %s" msgstr "%s را نمی توان بازگرداند" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "انجام عمل بازگرداندن" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "خطا" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "حذف فایل برای همیشه" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "حذف قطعی" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "نام" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "حذف شده" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "نام" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "بازیابی" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "حذف شده" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "حذف" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index f153db6b6a..71bc59cd14 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -158,15 +158,15 @@ msgstr "به روز رسانی" msgid "Updated" msgstr "بروز رسانی انجام شد" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "در حال ذخیره سازی..." @@ -182,32 +182,32 @@ msgstr "بازگشت" msgid "Unable to remove user" msgstr "حذف کاربر امکان پذیر نیست" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "گروه ها" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "گروه مدیران" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "حذف" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "افزودن گروه" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "نام کاربری صحیح باید وارد شود" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "خطا در ایجاد کاربر" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "رمز عبور صحیح باید وارد شود" @@ -385,11 +385,11 @@ msgstr "بیش‌تر" msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "نسخه" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "استفاده ابن آدرس برای دسترسی فایل های شما از طریق WebDAV " -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "رمزگذاری" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index a17c036013..33285ec609 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "صفت UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "نام کاربری - نگاشت کاربر LDAP " -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "پاک کردن نام کاربری- LDAP نگاشت کاربر " -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "پاک کردن نام گروه -LDAP گروه نقشه برداری" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "امتحان پیکربندی" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "راه‌نما" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index ba49002c8a..2075c6bdf9 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 06:30+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,45 +58,6 @@ msgstr "Tiedostojen välimuisti päivitetty" msgid "... %d%% done ..." msgstr "... %d%% valmis ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Luokan tyyppiä ei määritelty." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ei lisättävää luokkaa?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Luokka on jo olemassa: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: 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 "Virhe lisätessä kohdetta %s suosikkeihin." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Luokkia ei valittu poistettavaksi." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Virhe poistaessa kohdetta %s suosikeista." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Kuvaa tai tiedostoa ei määritelty" @@ -197,55 +158,55 @@ msgstr "joulukuu" msgid "Settings" msgstr "Asetukset" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "tänään" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "eilen" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "viime kuussa" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "viime vuonna" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "vuotta sitten" @@ -313,27 +274,6 @@ msgstr "({count} valittu)" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Virhe" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Sovelluksen nimeä ei ole määritelty." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Vaadittua tiedostoa {file} ei ole asennettu!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Jaettu" @@ -342,6 +282,11 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Virhe" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -470,6 +415,34 @@ msgstr "Sähköposti lähetetty" msgid "Warning" msgstr "Varoitus" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Poista" + +#: js/tags.js:31 +msgid "Add" +msgstr "Lisää" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Muokkaa tunnisteita" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -75,15 +75,15 @@ msgstr "Levylle kirjoitus epäonnistui" msgid "Not enough storage available" msgstr "Tallennustilaa ei ole riittävästi käytettävissä" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Virheellinen kansio." @@ -91,36 +91,36 @@ msgstr "Virheellinen kansio." msgid "Files" msgstr "Tiedostot" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Kohdetta {filename} ei voi lähettää, koska se on joko kansio tai sen koko on 0 tavua" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Tilaa ei ole riittävästi" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Tuloksien saaminen palvelimelta ei onnistunut." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Verkko-osoite ei voi olla tyhjä" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Virhe" @@ -132,11 +132,11 @@ msgstr "Jaa" msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Odottaa" @@ -164,13 +164,13 @@ msgstr "" msgid "undo" msgstr "kumoa" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" @@ -180,7 +180,7 @@ msgstr[1] "%n tiedostoa" msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lähetetään %n tiedosto" @@ -227,25 +227,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Virhe tiedostoa siirrettäessä" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nimi" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Koko" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Muokattu" @@ -254,7 +254,7 @@ msgstr "Muokattu" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Lähetä" @@ -290,65 +290,65 @@ msgstr "ZIP-tiedostojen enimmäiskoko" msgid "Save" msgstr "Tallenna" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Uusi" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Tekstitiedosto" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Kansio" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Linkistä" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Poistetut tiedostot" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Tunnuksellasi ei ole kirjoitusoikeuksia tänne." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Lataa" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Peru jakaminen" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Poista" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 4262f5e872..c2ed9484ae 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -55,14 +55,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -70,6 +70,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -81,7 +93,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Seuraavat käyttäjät eivät ole määrittäneet salausta:" @@ -97,91 +109,91 @@ msgstr "" msgid "personal settings" msgstr "henkilökohtaiset asetukset" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Salaus" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Palautusavaimen salasana" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Käytössä" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Ei käytössä" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Vaihda palautusavaimen salasana:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Vanha palautusavaimen salasana" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Uusi palautusavaimen salasana" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Vaihda salasana" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Vanha kirjautumis-salasana" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Nykyinen kirjautumis-salasana" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Ota salasanan palautus käyttöön:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index cc90b8dc79..6a544ba6f6 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Pääsy sallittu" @@ -25,7 +25,7 @@ msgstr "Pääsy sallittu" msgid "Error configuring Dropbox storage" msgstr "Virhe Dropbox levyn asetuksia tehtäessä" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Salli pääsy" @@ -33,24 +33,24 @@ msgstr "Salli pääsy" msgid "Please provide a valid Dropbox app key and secret." msgstr "Anna kelvollinen Dropbox-sovellusavain ja salainen vastaus." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Virhe Google Drive levyn asetuksia tehtäessä" -#: lib/config.php:447 +#: lib/config.php:453 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varoitus: \"smbclient\" ei ole asennettuna. CIFS-/SMB-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan smbclient." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Varoitus: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. FTP-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index a2ffb0fc82..742405ea6d 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-11 06:30+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Tämä jako on suojattu salasanalla" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Väärä salasana. Yritä uudelleen." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Salasana" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Lähetä" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Valitettavasti linkki ei vaikuta enää toimivan." @@ -54,28 +54,28 @@ msgstr "jakaminen on poistettu käytöstä" msgid "For more info, please ask the person who sent this link." msgstr "Kysy lisätietoja henkilöltä, jolta sait linkin." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jakoi kansion %s kanssasi" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s jakoi tiedoston %s kanssasi" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Lataa" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Lähetä" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Ei esikatselua kohteelle" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 38def67d24..43256d6301 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Kohdetta %s ei voitu poistaa pysyvästi" msgid "Couldn't restore %s" msgstr "Kohteen %s palautus epäonnistui" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "suorita palautustoiminto" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Virhe" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "poista tiedosto pysyvästi" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Poista pysyvästi" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nimi" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Poistettu" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n kansio" -msgstr[1] "%n kansiota" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n tiedosto" -msgstr[1] "%n tiedostoa" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "palautettu" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Tyhjää täynnä! Roskakorissa ei ole mitään." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nimi" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Palauta" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Poistettu" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Poista" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 528192e96a..ede43159ac 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:40+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -158,15 +158,15 @@ msgstr "Päivitä" msgid "Updated" msgstr "Päivitetty" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Valitse profiilikuva" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Puretaan tiedostojen salausta... Odota, tämä voi kestää jonkin aikaa." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Tallennetaan..." @@ -182,32 +182,32 @@ msgstr "kumoa" msgid "Unable to remove user" msgstr "Käyttäjän poistaminen ei onnistunut" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Ryhmät" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Ryhmän ylläpitäjä" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Poista" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "lisää ryhmä" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Anna kelvollinen käyttäjätunnus" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Virhe käyttäjää luotaessa" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Anna kelvollinen salasana" @@ -385,11 +385,11 @@ msgstr "Enemmän" msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versio" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Käytä tätä osoitetta päästäksesi käsiksi tiedostoihisi WebDAVin kautta" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Salaus" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Salaussovellus ei ole enää käytössä, pura kaikkien tiedostojesi salaus" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Pura kaikkien tiedostojen salaus" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 3b7670dea6..6dd0d9dd22 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ohje" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 911dcd114d..e6861f38ed 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -5,6 +5,7 @@ # Translators: # Adalberto Rodrigues , 2013 # Christophe Lherieau , 2013 +# etiess , 2013 # msoko , 2013 # ogre_sympathique , 2013 # plachance , 2013 @@ -13,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -31,7 +32,7 @@ msgstr "%s partagé »%s« avec vous" #: ajax/share.php:168 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Impossible d'envoyer un mail aux utilisateurs suivant : %s" #: ajax/share.php:327 msgid "group" @@ -62,45 +63,6 @@ msgstr "Cache de fichier mis à jour" msgid "... %d%% done ..." msgstr "... %d%% effectué ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Type de catégorie non spécifié." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Pas de catégorie à ajouter ?" - -#: ajax/vcategories/add.php:37 -#, 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 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Type d'objet non spécifié." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "L'identifiant de %s n'est pas spécifié." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Erreur lors de l'ajout de %s aux favoris." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Pas de catégorie sélectionnée pour la suppression." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Erreur lors de la suppression de %s des favoris." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Aucune image ou fichier fourni" @@ -201,55 +163,55 @@ msgstr "décembre" msgid "Settings" msgstr "Paramètres" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "il y a %n minute" msgstr[1] "il y a %n minutes" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Il y a %n heure" msgstr[1] "Il y a %n heures" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "aujourd'hui" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "hier" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "il y a %n jour" msgstr[1] "il y a %n jours" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "le mois dernier" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Il y a %n mois" msgstr[1] "Il y a %n mois" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "l'année dernière" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "il y a plusieurs années" @@ -317,27 +279,6 @@ msgstr "({count} sélectionnés)" msgid "Error loading file exists template" msgstr "Erreur de chargement du modèle de fichier existant" -#: 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 "Le type d'objet n'est pas spécifié." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Erreur" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Le nom de l'application n'est pas spécifié." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Le fichier requis {file} n'est pas installé !" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Partagé" @@ -346,6 +287,11 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Erreur" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -424,7 +370,7 @@ msgstr "Ne plus partager" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "Prévenir l'utilisateur par couriel" #: js/share.js:361 msgid "can edit" @@ -474,6 +420,34 @@ msgstr "Email envoyé" msgid "Warning" msgstr "Attention" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Le type d'objet n'est pas spécifié." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Supprimer" + +#: js/tags.js:31 +msgid "Add" +msgstr "Ajouter" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the
    just letting you know that %s shared »%s« with you.
    View it!

    " -msgstr "" +msgstr "Bonjour,

    Juste pour vous informer que %s a partagé »%s« avec vous.
    Consultez-le !

    " #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.

    " -msgstr "" +msgstr "Le partage expirera le %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/fr/files.po b/l10n/fr/files.po index c76c180c26..3cfd25e7a9 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: ogre_sympathique \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" @@ -78,15 +78,15 @@ msgstr "Erreur d'écriture sur le disque" msgid "Not enough storage available" msgstr "Plus assez d'espace de stockage disponible" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "L'envoi a échoué. Impossible d'obtenir les informations du fichier." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "L'envoi a échoué. Impossible de trouver le fichier envoyé." -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Dossier invalide." @@ -94,36 +94,36 @@ msgstr "Dossier invalide." msgid "Files" msgstr "Fichiers" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Impossible d'envoyer {filename} car il s'agit d'un répertoire ou d'un fichier de taille nulle" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Espace disponible insuffisant" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Envoi annulé." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Ne peut recevoir les résultats du serveur." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "L'URL ne peut-être vide" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 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/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Erreur" @@ -135,11 +135,11 @@ msgstr "Partager" msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Renommer" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "En attente" @@ -167,13 +167,13 @@ msgstr "{new_name} a été remplacé par {old_name}" msgid "undo" msgstr "annuler" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fichier" @@ -183,7 +183,7 @@ msgstr[1] "%n fichiers" msgid "{dirs} and {files}" msgstr "{dir} et {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Téléversement de %n fichier" @@ -215,14 +215,14 @@ msgstr "Votre espace de stockage est presque plein ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "L'application de chiffrement est activée mais vos clés ne sont pas initialisées, veuillez vous déconnecter et ensuite vous reconnecter." #: js/files.js:72 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Votre clef privée pour l'application de chiffrement est invalide ! Veuillez mettre à jour le mot de passe de votre clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers chiffrés." #: js/files.js:76 msgid "" @@ -230,25 +230,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Le chiffrement était désactivé mais vos fichiers sont toujours chiffrés. Veuillez vous rendre sur vos Paramètres personnels pour déchiffrer vos fichiers." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Erreur lors du déplacement du fichier" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nom" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Taille" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modifié" @@ -257,7 +257,7 @@ msgstr "Modifié" msgid "%s could not be renamed" msgstr "%s ne peut être renommé" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Envoyer" @@ -293,65 +293,65 @@ msgstr "Taille maximale pour les fichiers ZIP" msgid "Save" msgstr "Sauvegarder" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nouveau" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Fichier texte" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Dossier" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Fichiers supprimés" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Vous n'avez pas le droit d'écriture ici." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Télécharger" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Ne plus partager" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Supprimer" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Téléversement trop volumineux" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index c9033cf761..c6085fec06 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -5,15 +5,17 @@ # Translators: # Adalberto Rodrigues , 2013 # Christophe Lherieau , 2013 +# etiess , 2013 # froozeify , 2013 # lyly95, 2013 +# ogre_sympathique , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 20:40+0000\n" +"Last-Translator: ogre_sympathique \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" @@ -57,14 +59,14 @@ msgid "" "correct." msgstr "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "L'application de chiffrement n'est pas initialisée ! Peut-être que cette application a été réactivée pendant votre session. Veuillez essayer de vous déconnecter et ensuite de vous reconnecter pour initialiser l'application de chiffrement." -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -72,6 +74,18 @@ msgid "" "files." msgstr "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "Impossible de déchiffrer ce fichier, il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire de ce fichier de le repartager avec vous." + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Erreur inconnue. Veuillez vérifier vos paramètres système ou contacter votre administrateur." + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Système minimum requis non respecté." @@ -83,7 +97,7 @@ msgid "" " the encryption app has been disabled." msgstr "Veuillez vous assurer qu'une version de PHP 5.3.3 ou supérieure est installée et qu'OpenSSL et son extension PHP sont activés et configurés correctement. En attendant, l'application de chiffrement été désactivée." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :" @@ -93,97 +107,97 @@ msgstr "Enregistrement..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Allez directement à votre" #: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "paramètres personnel" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Chiffrement" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe)." -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Mot de passe de la clef de récupération" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Répétez le mot de passe de la clé de récupération" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Activer" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Désactiver" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Modifier le mot de passe de la clef de récupération :" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Ancien mot de passe de la clef de récupération" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nouveau mot de passe de la clef de récupération" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Répétez le nouveau mot de passe de la clé de récupération" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Changer de mot de passe" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion :" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Configurez le mot de passe de votre ancienne clef privée avec votre mot de passe courant de connexion. " -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Si vous ne vous souvenez plus de votre ancien mot de passe, vous pouvez demander à votre administrateur de récupérer vos fichiers." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Ancien mot de passe de connexion" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Actuel mot de passe de connexion" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Mettre à jour le mot de passe de votre clé privée" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Activer la récupération du mot de passe :" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Paramètres de récupération de fichiers mis à jour" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Ne peut pas remettre à jour les fichiers de récupération" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index c1e69f0c90..1e0f19e1ac 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Accès autorisé" @@ -25,7 +25,7 @@ msgstr "Accès autorisé" msgid "Error configuring Dropbox storage" msgstr "Erreur lors de la configuration du support de stockage Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Autoriser l'accès" @@ -33,24 +33,24 @@ msgstr "Autoriser l'accès" msgid "Please provide a valid Dropbox app key and secret." msgstr "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de passe valides." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Erreur lors de la configuration du support de stockage Google Drive" -#: lib/config.php:447 +#: lib/config.php:453 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 3e69326d28..09f2de9479 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -5,13 +5,14 @@ # Translators: # square , 2013 # Christophe Lherieau , 2013 +# ogre_sympathique , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-04 14:11+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-12 12:30+0000\n" +"Last-Translator: ogre_sympathique \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +21,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Ce partage est protégé par un mot de passe" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Le mot de passe est incorrect. Veuillez réessayer." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Mot de passe" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Envoyer" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Désolé, mais le lien semble ne plus fonctionner." @@ -55,28 +56,28 @@ msgstr "le partage est désactivé" msgid "For more info, please ask the person who sent this link." msgstr "Pour plus d'informations, veuillez contacter la personne qui a envoyé ce lien." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partagé le répertoire %s avec vous" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partagé le fichier %s avec vous" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Télécharger" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Envoyer" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Pas d'aperçu disponible pour" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 599cfe1a8e..62eb0f505c 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Impossible d'effacer %s de façon permanente" msgid "Couldn't restore %s" msgstr "Impossible de restaurer %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "effectuer l'opération de restauration" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Erreur" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "effacer définitivement le fichier" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Supprimer de façon définitive" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nom" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Effacé" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n dossier" -msgstr[1] "%n dossiers" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fichier" -msgstr[1] "%n fichiers" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restauré" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Il n'y a rien ici. Votre corbeille est vide !" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nom" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restaurer" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Effacé" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Supprimer" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 685dbd3e18..e2bb94516b 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: ogre_sympathique \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" @@ -163,15 +163,15 @@ msgstr "Mettre à jour" msgid "Updated" msgstr "Mise à jour effectuée avec succès" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Selectionner une photo de profil " -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Déchiffrement en cours... Cela peut prendre un certain temps." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Enregistrement..." @@ -187,32 +187,32 @@ msgstr "annuler" msgid "Unable to remove user" msgstr "Impossible de retirer l'utilisateur" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Groupes" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Groupe Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Supprimer" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "ajouter un groupe" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Erreur lors de la création de l'utilisateur" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" @@ -348,11 +348,11 @@ msgstr "Autoriser les utilisateurs à partager avec des utilisateurs de leur gro #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Autoriser les notifications par couriel" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés" #: templates/admin.php:178 msgid "Security" @@ -390,11 +390,11 @@ msgstr "Plus" msgid "Less" msgstr "Moins" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Utilisez cette adresse pour accéder à vos fichiers via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Chiffrement" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "L'application de chiffrement n'est plus activée, déchiffrez tous vos fichiers" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Mot de passe de connexion" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Déchiffrer tous les fichiers" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 679f44b182..e1f284e779 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-13 18:30+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -370,14 +370,18 @@ msgid "" msgstr "Par défaut, l'attribut UUID est automatiquement détecté. Cet attribut est utilisé pour identifier les utilisateurs et groupes de façon fiable. Un nom d'utilisateur interne basé sur l'UUID sera automatiquement créé, sauf s'il est spécifié autrement ci-dessus. Vous pouvez modifier ce comportement et définir l'attribut de votre choix. Vous devez alors vous assurer que l'attribut de votre choix peut être récupéré pour les utilisateurs ainsi que pour les groupes et qu'il soit unique. Laisser à blanc pour le comportement par défaut. Les modifications seront effectives uniquement pour les nouveaux (ajoutés) utilisateurs et groupes LDAP." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Attribut UUID :" +msgid "UUID Attribute for Users:" +msgstr "Attribut UUID pour les utilisateurs :" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "Attribut UUID pour les groupes :" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Association Nom d'utilisateur-Utilisateur LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "Les noms d'utilisateurs sont utilisés pour le stockage et l'assignation de (meta) données. Pour identifier et reconnaitre précisément les utilisateurs, chaque utilisateur LDAP aura un nom interne spécifique. Cela requiert l'association d'un nom d'utilisateur ownCloud à un nom d'utilisateur LDAP. Le nom d'utilisateur créé est associé à l'attribut UUID de l'utilisateur LDAP. Par ailleurs, le DN est mémorisé en cache pour limiter les interactions LDAP mais il n'est pas utilisé pour l'identification. Si le DN est modifié, ces modifications seront retrouvées. Seul le nom interne à ownCloud est utilisé au sein du produit. Supprimer les associations créera des orphelins et l'action affectera toutes les configurations LDAP. NE JAMAIS SUPPRIMER LES ASSOCIATIONS EN ENVIRONNEMENT DE PRODUCTION, mais uniquement sur des environnements de tests et d'expérimentation." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Supprimer l'association utilisateur interne-utilisateur LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Supprimer l'association nom de groupe-groupe LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Tester la configuration" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Aide" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index bf4f91c64b..0910192516 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 19:40+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,45 +57,6 @@ msgstr "Ficheiro da caché actualizado" msgid "... %d%% done ..." msgstr "... %d%% feito ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Non se indicou o tipo de categoría" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Sen categoría que engadir?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Esta categoría xa existe: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Non se forneceu o tipo de obxecto." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Non se forneceu o ID %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Produciuse un erro ao engadir %s aos favoritos." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Non se seleccionaron categorías para eliminación." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Produciuse un erro ao eliminar %s dos favoritos." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Non forneceu ningunha imaxe ou ficheiro" @@ -196,55 +157,55 @@ msgstr "decembro" msgid "Settings" msgstr "Axustes" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "hai %n minuto" msgstr[1] "hai %n minutos" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "hai %n hora" msgstr[1] "hai %n horas" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "hoxe" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "onte" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "hai %n día" msgstr[1] "hai %n días" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "último mes" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "hai %n mes" msgstr[1] "hai %n meses" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "meses atrás" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "último ano" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "anos atrás" @@ -312,27 +273,6 @@ msgstr "({count} seleccionados)" msgid "Error loading file exists template" msgstr "Produciuse un erro ao cargar o modelo de ficheiro existente" -#: 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 "Non se especificou o tipo de obxecto." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Erro" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Non se especificou o nome do aplicativo." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Non está instalado o ficheiro {file} que se precisa" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Compartir" @@ -341,6 +281,11 @@ msgstr "Compartir" msgid "Share" msgstr "Compartir" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Erro" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" @@ -469,6 +414,34 @@ msgstr "Correo enviado" msgid "Warning" msgstr "Aviso" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Non se especificou o tipo de obxecto." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Eliminar" + +#: js/tags.js:31 +msgid "Add" +msgstr "Engadir" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Editar etiquetas" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Produciuse un erro ao cargar o modelo do dialogo: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Non se seleccionaron etiquetas para borrado." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -75,15 +75,15 @@ msgstr "Produciuse un erro ao escribir no disco" msgid "Not enough storage available" msgstr "Non hai espazo de almacenamento abondo" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "O envío fracasou. Non foi posíbel obter información do ficheiro." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "O envío fracasou. Non foi posíbel atopar o ficheiro enviado" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "O directorio é incorrecto." @@ -91,36 +91,36 @@ msgstr "O directorio é incorrecto." msgid "Files" msgstr "Ficheiros" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Non é posíbel enviar {filename}, xa que ou é un directorio ou ten 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "O espazo dispoñíbel é insuficiente" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Envío cancelado." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Non foi posíbel obter o resultado do servidor." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "O URL non pode quedar baleiro." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nome de cartafol incorrecto. O uso de «Compartido» e «Shared» está reservado para o ownClod" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Erro" @@ -132,11 +132,11 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Pendentes" @@ -164,13 +164,13 @@ msgstr "substituír {new_name} por {old_name}" msgid "undo" msgstr "desfacer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" @@ -180,7 +180,7 @@ msgstr[1] "%n ficheiros" msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Cargando %n ficheiro" @@ -227,25 +227,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "O cifrado foi desactivado, mais os ficheiros están cifrados. Vaia á configuración persoal para descifrar os ficheiros." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Produciuse un erro ao mover o ficheiro" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nome" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Tamaño" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modificado" @@ -254,7 +254,7 @@ msgstr "Modificado" msgid "%s could not be renamed" msgstr "%s non pode cambiar de nome" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Enviar" @@ -290,65 +290,65 @@ msgstr "Tamaño máximo de descarga para os ficheiros ZIP" msgid "Save" msgstr "Gardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Novo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Ficheiro de texto" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Cartafol" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Desde a ligazón" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Non ten permisos para escribir aquí." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Aquí non hai nada. Envíe algo." -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Descargar" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Deixar de compartir" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Envío demasiado grande" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarde." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 128417f5c6..525dff09f7 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:14-0400\n" -"PO-Revision-Date: 2013-10-07 07:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,14 +56,14 @@ msgid "" "correct." msgstr "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "Non se iniciou o aplicativo de cifrado! Quizais volva a activarse durante a sesión. Tente pechar a sesión e volver iniciala que tamén se inicie o aplicativo de cifrado." -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -71,6 +71,18 @@ msgid "" "files." msgstr "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Non se cumpren os requisitos." @@ -82,7 +94,7 @@ msgid "" " the encryption app has been disabled." msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Os seguintes usuarios non teñen configuración para o cifrado:" @@ -98,91 +110,91 @@ msgstr "Vaia directamente ao seu" msgid "personal settings" msgstr "axustes persoais" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Cifrado" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Activar a chave de recuperación (permitirá recuperar os ficheiros dos usuarios no caso de perda do contrasinal):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Contrasinal da chave de recuperación" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "Repita o contrasinal da chave da recuperación" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Activado" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Desactivado" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Cambiar o contrasinal da chave de la recuperación:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Antigo contrasinal da chave de recuperación" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Novo contrasinal da chave de recuperación" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "Repita o novo contrasinal da chave da recuperación" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Cambiar o contrasinal" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "O seu contrasinal da chave privada non coincide co seu contrasinal de acceso." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Estabeleza o seu contrasinal antigo da chave de recuperación ao seu contrasinal de acceso actual" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr " Se non lembra o seu antigo contrasinal pode pedírllelo ao seu administrador para recuperar os seus ficheiros." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Contrasinal de acceso antigo" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Contrasinal de acceso actual" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Actualizar o contrasinal da chave privada" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Activar o contrasinal de recuperación:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Ao activar esta opción permitiráselle volver a obter acceso aos ficheiros cifrados no caso de perda do contrasinal" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Actualizouse o ficheiro de axustes de recuperación" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Non foi posíbel actualizar o ficheiro de recuperación" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index c6a78af76d..be7162a3c0 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Concedeuse acceso" @@ -25,7 +25,7 @@ msgstr "Concedeuse acceso" msgid "Error configuring Dropbox storage" msgstr "Produciuse un erro ao configurar o almacenamento en Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Permitir o acceso" @@ -33,24 +33,24 @@ msgstr "Permitir o acceso" msgid "Please provide a valid Dropbox app key and secret." msgstr "Forneza unha chave correcta e segreda do Dropbox." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive" -#: lib/config.php:447 +#: lib/config.php:453 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Aviso: A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index bd0b79c5d8..3cbab9325b 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-11 09:20+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Esta compartición está protexida con contrasinal" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "O contrasinal é incorrecto. Ténteo de novo." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Contrasinal" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Enviar" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Semella que esta ligazón non funciona." @@ -54,28 +54,28 @@ msgstr "foi desactivada a compartición" msgid "For more info, please ask the person who sent this link." msgstr "Para obter máis información, pregúntelle á persoa que lle enviou a ligazón." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartiu o cartafol %s con vostede" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartiu o ficheiro %s con vostede" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Descargar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Enviar" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Sen vista previa dispoñíbel para" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 7250668c4f..b9233c2429 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Non foi posíbel eliminar %s permanente" msgid "Couldn't restore %s" msgstr "Non foi posíbel restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "realizar a operación de restauración" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Erro" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "eliminar o ficheiro permanentemente" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Eliminar permanentemente" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nome" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Eliminado" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n cartafol" -msgstr[1] "%n cartafoles" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n ficheiro" -msgstr[1] "%n ficheiros" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restaurado" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Aquí non hai nada. O cesto do lixo está baleiro!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nome" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restablecer" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Eliminado" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 513443ae5b..3d611e8049 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 08:41+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -158,15 +158,15 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Seleccione unha imaxe para o perfil" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando ficheiros... isto pode levar un anaco." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Gardando..." @@ -182,32 +182,32 @@ msgstr "desfacer" msgid "Unable to remove user" msgstr "Non é posíbel retirar o usuario" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupo Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Eliminar" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "engadir un grupo" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Debe fornecer un nome de usuario" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Produciuse un erro ao crear o usuario" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Debe fornecer un contrasinal" @@ -385,11 +385,11 @@ msgstr "Máis" msgid "Less" msgstr "Menos" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versión" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Empregue esta ligazón para acceder aos sus ficheiros mediante WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Cifrado" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "o aplicativo de cifrado non está activado, descifrar todos os ficheiros" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Contrasinal de acceso" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Descifrar todos os ficheiros" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 7806b1d62c..0ac3ec7809 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-11 09:36+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -369,14 +369,18 @@ msgid "" msgstr "De xeito predeterminado, o atributo UUID é detectado automaticamente. O atributo UUID utilizase para identificar, sen dúbida, aos usuarios e grupos LDAP. Ademais, crearase o usuario interno baseado no UUID, se non se especifica anteriormente o contrario. Pode anular a configuración e pasar un atributo da súa escolla. Vostede debe asegurarse de que o atributo da súa escolla pode ser recuperado polos usuarios e grupos e de que é único. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo do UUID:" +msgid "UUID Attribute for Users:" +msgstr "Atributo do UUID para usuarios:" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "Atributo do UUID para grupos:" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Asignación do usuario ao «nome de usuario LDAP»" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "Os nomes de usuario empreganse para almacenar e asignar (meta) datos. Coa fin de identificar con precisión e recoñecer aos usuarios, cada usuario LDAP terá un nome de usuario interno. Isto require unha asignación de ownCloud nome de usuario a usuario LDAP. O nome de usuario creado asignase ao UUID do usuario LDAP. Ademais o DN almacenase na caché, para así reducir a interacción do LDAP, mais non se utiliza para a identificación. Se o DN cambia, os cambios poden ser atopados polo ownCloud. O nome interno no ownCloud utilizase en todo o ownCloud. A limpeza das asignacións deixará rastros en todas partes. A limpeza das asignacións non é sensíbel á configuración, afecta a todas as configuracións de LDAP! Non limpar nunca as asignacións nun entorno de produción. Limpar as asignacións só en fases de proba ou experimentais." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar a asignación do usuario ao «nome de usuario LDAP»" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar a asignación do grupo ao «nome de grupo LDAP»" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Probar a configuración" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Axuda" diff --git a/l10n/he/core.po b/l10n/he/core.po index 35f8887185..84dcdd13a8 100644 --- a/l10n/he/core.po +++ b/l10n/he/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -58,45 +58,6 @@ msgstr "" msgid "... %d%% done ..." 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 "הקטגוריה הבאה כבר קיימת: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "סוג הפריט לא סופק." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "מזהה %s לא סופק." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "אירעה שגיאה בעת הוספת %s למועדפים." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "לא נבחרו קטגוריות למחיקה" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "שגיאה בהסרת %s מהמועדפים." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -197,55 +158,55 @@ msgstr "דצמבר" msgid "Settings" msgstr "הגדרות" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "שניות" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "לפני %n דקה" msgstr[1] "לפני %n דקות" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "לפני %n שעה" msgstr[1] "לפני %n שעות" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "היום" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "אתמול" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "לפני %n יום" msgstr[1] "לפני %n ימים" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "לפני %n חודש" msgstr[1] "לפני %n חודשים" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "חודשים" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "שנים" @@ -313,27 +274,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "סוג הפריט לא צוין." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "שגיאה" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "שם היישום לא צוין." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "הקובץ הנדרש {file} אינו מותקן!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "שותף" @@ -342,6 +282,11 @@ msgstr "שותף" msgid "Share" msgstr "שתף" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "שגיאה" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -470,6 +415,34 @@ msgstr "הודעת הדוא״ל נשלחה" msgid "Warning" msgstr "אזהרה" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "סוג הפריט לא צוין." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "מחיקה" + +#: js/tags.js:31 +msgid "Add" +msgstr "הוספה" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -75,15 +75,15 @@ msgstr "הכתיבה לכונן נכשלה" msgid "Not enough storage available" msgstr "אין די שטח פנוי באחסון" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "תיקייה שגויה." @@ -91,36 +91,36 @@ msgstr "תיקייה שגויה." msgid "Files" msgstr "קבצים" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "קישור אינו יכול להיות ריק." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "שגיאה" @@ -132,11 +132,11 @@ msgstr "שתף" msgid "Delete permanently" msgstr "מחק לצמיתות" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "ממתין" @@ -164,13 +164,13 @@ msgstr "{new_name} הוחלף ב־{old_name}" msgid "undo" msgstr "ביטול" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -180,7 +180,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -227,25 +227,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "שם" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "גודל" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "זמן שינוי" @@ -254,7 +254,7 @@ msgstr "זמן שינוי" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "העלאה" @@ -290,65 +290,65 @@ msgstr "גודל הקלט המרבי לקובצי ZIP" msgid "Save" msgstr "שמירה" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "חדש" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "קובץ טקסט" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "תיקייה" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "מקישור" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "הורדה" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "הסר שיתוף" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "מחיקה" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "העלאה גדולה מידי" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "הקבצים נסרקים, נא להמתין." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "הסריקה הנוכחית" diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index a113b684cf..92e019a052 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "הצפנה" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 7c7f1a22e1..beb7f4d7e3 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index c181aa3c1e..fcf68d795f 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "סיסמא" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "שליחה" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s שיתף עמך את התיקייה %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s שיתף עמך את הקובץ %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "הורדה" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "העלאה" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "אין תצוגה מקדימה זמינה עבור" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index ebdf6f4150..33edb96f67 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -28,55 +28,31 @@ msgstr "לא ניתן למחוק את %s לצמיתות" msgid "Couldn't restore %s" msgstr "לא ניתן לשחזר את %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "ביצוע פעולת שחזור" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "שגיאה" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "מחיקת קובץ לצמיתות" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "מחיקה לצמיתות" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "שם" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "נמחק" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "אין כאן שום דבר. סל המיחזור שלך ריק!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "שם" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "שחזור" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "נמחק" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "מחיקה" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 4a00de7bd3..ae7d5baa4e 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -158,15 +158,15 @@ msgstr "עדכון" msgid "Updated" msgstr "מעודכן" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "שמירה…" @@ -182,32 +182,32 @@ msgstr "ביטול" msgid "Unable to remove user" msgstr "לא ניתן להסיר את המשתמש" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "קבוצות" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "מנהל הקבוצה" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "מחיקה" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "הוספת קבוצה" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "יש לספק שם משתמש תקני" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "יצירת המשתמש נכשלה" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "יש לספק ססמה תקנית" @@ -385,11 +385,11 @@ msgstr "יותר" msgid "Less" msgstr "פחות" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "גרסא" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "הצפנה" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 00811e8330..0c58cc77ef 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "עזרה" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 20124d63a3..ec57238c9c 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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -58,45 +58,6 @@ msgstr "" msgid "... %d%% done ..." 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 "यह कैटेगरी पहले से ही मौजूद है: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "ऑब्जेक्ट प्रकार नहीं दिया हुआ" - -#: 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -313,27 +274,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "त्रुटि" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -342,6 +282,11 @@ msgstr "" msgid "Share" msgstr "साझा करें" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "त्रुटि" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -470,6 +415,34 @@ msgstr "ईमेल भेज दिया गया है " msgid "Warning" msgstr "चेतावनी " +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "डाले" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 546e758e1c..327920b444 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:14+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "पासवर्ड" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "अपलोड " -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index a67189f46b..64da02cb00 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "त्रुटि" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 132e022bcf..6bfd82488c 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "सहयोग" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index f1e702ed34..c63e8948cf 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "Nemate kategorija koje možete dodati?" - -#: 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 "Niti jedna kategorija nije odabrana za brisanje." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,59 +156,59 @@ msgstr "Prosinac" msgid "Settings" msgstr "Postavke" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "danas" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "jučer" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "mjeseci" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "godina" @@ -316,27 +277,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Greška" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -345,6 +285,11 @@ msgstr "" msgid "Share" msgstr "Podijeli" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Greška" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -473,6 +418,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Obriši" + +#: js/tags.js:31 +msgid "Add" +msgstr "Dodaj" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "Neuspjelo pisanje na disk" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "Datoteke" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Greška" @@ -131,11 +131,11 @@ msgstr "Podijeli" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "U tijeku" @@ -163,14 +163,14 @@ msgstr "" msgid "undo" msgstr "vrati" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -181,7 +181,7 @@ msgstr[2] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -229,25 +229,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Ime" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Veličina" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Zadnja promjena" @@ -256,7 +256,7 @@ msgstr "Zadnja promjena" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Učitaj" @@ -292,65 +292,65 @@ msgstr "Maksimalna veličina za ZIP datoteke" msgid "Save" msgstr "Snimi" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "novo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "tekstualna datoteka" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "mapa" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Preuzimanje" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Makni djeljenje" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Obriši" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index 12a6998030..c127b7e28a 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index af43094b32..ef33412ac0 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 308e9e9875..ba1345eed1 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Lozinka" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Pošalji" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Preuzimanje" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Učitaj" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 09cacae10d..6d9a70fffd 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -27,57 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Greška" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Ime" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Ime" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Obriši" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 03c222ac5e..692a46946c 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Spremanje..." @@ -181,32 +181,32 @@ msgstr "vrati" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupe" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupa Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Obriši" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "više" msgid "Less" msgstr "" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index f46f868f8d..196fcf86bc 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Pomoć" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 4b2a51eaf5..89209ca215 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -58,45 +58,6 @@ msgstr "Filecache frissítve" msgid "... %d%% done ..." msgstr "... %d%% kész ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Nincs megadva a kategória típusa." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nincs hozzáadandó kategória?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Ez a kategória már létezik: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Az objektum típusa nincs megadva." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nincs megadva." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Nem sikerült a kedvencekhez adni ezt: %s" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nincs törlésre jelölt kategória" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Nem sikerült a kedvencekből törölni ezt: %s" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Nincs kép vagy file megadva" @@ -197,55 +158,55 @@ msgstr "december" msgid "Settings" msgstr "Beállítások" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "ma" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "tegnap" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "több hónapja" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "tavaly" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "több éve" @@ -313,27 +274,6 @@ msgstr "({count} kiválasztva)" msgid "Error loading file exists template" msgstr "Hiba a létező sablon betöltésekor" -#: 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 "Az objektum típusa nincs megadva." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Hiba" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Az alkalmazás neve nincs megadva." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "A szükséges fájl: {file} nincs telepítve!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Megosztott" @@ -342,6 +282,11 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Hiba" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -470,6 +415,34 @@ msgstr "Az emailt elküldtük" msgid "Warning" msgstr "Figyelmeztetés" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Az objektum típusa nincs megadva." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Törlés" + +#: js/tags.js:31 +msgid "Add" +msgstr "Hozzáadás" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -75,15 +75,15 @@ msgstr "Nem sikerült a lemezre történő írás" msgid "Not enough storage available" msgstr "Nincs elég szabad hely." -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "A feltöltés nem sikerült. Nem található a feltöltendő állomány." -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Érvénytelen mappa." @@ -91,36 +91,36 @@ msgstr "Érvénytelen mappa." msgid "Files" msgstr "Fájlok" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "A(z) {filename} állomány nem tölthető fel, mert ez vagy egy mappa, vagy pedig 0 bájtból áll." -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Nincs elég szabad hely" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "A kiszolgálótól nem kapható meg az eredmény." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Az URL nem lehet semmi." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Érvénytelen mappanév. A 'Shared' az ownCloud számára fenntartott elnevezés" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Hiba" @@ -132,11 +132,11 @@ msgstr "Megosztás" msgid "Delete permanently" msgstr "Végleges törlés" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Folyamatban" @@ -164,13 +164,13 @@ msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" msgid "undo" msgstr "visszavonás" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappa" msgstr[1] "%n mappa" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n állomány" @@ -180,7 +180,7 @@ msgstr[1] "%n állomány" msgid "{dirs} and {files}" msgstr "{dirs} és {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n állomány feltöltése" @@ -227,25 +227,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "A titkosítási funkciót kikapcsolták, de az Ön állományai még mindig titkosított állapotban vannak. A személyes beállításoknál tudja a titkosítást feloldani." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Az állomány áthelyezése nem sikerült." -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Név" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Méret" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Módosítva" @@ -254,7 +254,7 @@ msgstr "Módosítva" msgid "%s could not be renamed" msgstr "%s átnevezése nem sikerült" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Feltöltés" @@ -290,65 +290,65 @@ msgstr "ZIP-fájlok maximális kiindulási mérete" msgid "Save" msgstr "Mentés" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Új" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Szövegfájl" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Mappa" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Feltöltés linkről" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Törölt fájlok" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Itt nincs írásjoga." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Letöltés" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "A megosztás visszavonása" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Törlés" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "A feltöltés túl nagy" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Ellenőrzés alatt" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index a2a1a319f8..b2c6f48b02 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -54,14 +54,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -69,6 +69,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -80,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "Kérlek győződj meg arról, hogy PHP 5.3.3 vagy annál frissebb van telepítve, valamint a PHP-hez tartozó OpenSSL bővítmény be van-e kapcsolva és az helyesen van-e konfigurálva! Ki lett kapcsolva ideiglenesen a titkosító alkalmazás." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -96,91 +108,91 @@ msgstr "" msgid "personal settings" msgstr "személyes beállítások" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Titkosítás" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Bekapcsolva" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Kikapcsolva" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Jelszó megváltoztatása" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Régi bejelentkezési jelszó" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Jelenlegi bejelentkezési jelszó" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Privát kulcs jelszó frissítése" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Jelszó-visszaállítás bekapcsolása" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 438523b0f6..1f24808b15 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index ae03dc98f2..696a897c9b 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "A megadott jelszó nem megfelelő. Próbálja újra!" -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Jelszó" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Elküld" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Sajnos úgy tűnik, ez a link már nem működik." @@ -54,28 +54,28 @@ msgstr "letiltásra került a megosztás" msgid "For more info, please ask the person who sent this link." msgstr "További információért forduljon ahhoz, aki ezt a linket küldte Önnek!" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s megosztotta Önnel ezt a mappát: %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s megosztotta Önnel ezt az állományt: %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Letöltés" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Feltöltés" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Nem áll rendelkezésre előnézet ehhez: " diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index c669e0e026..f90dae79c9 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -28,55 +28,31 @@ msgstr "Nem sikerült %s végleges törlése" msgid "Couldn't restore %s" msgstr "Nem sikerült %s visszaállítása" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "a visszaállítás végrehajtása" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Hiba" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "az állomány végleges törlése" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Végleges törlés" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Név" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Törölve" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n mappa" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n állomány" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "visszaállítva" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Itt nincs semmi. Az Ön szemetes mappája üres!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Név" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Visszaállítás" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Törölve" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Törlés" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 0b90253f00..bc8739cd62 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -160,15 +160,15 @@ msgstr "Frissítés" msgid "Updated" msgstr "Frissítve" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Válassz profil képet" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "File-ok kititkosítása folyamatban... Kérlek várj, ez hosszabb ideig is eltarthat ..." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Mentés..." @@ -184,32 +184,32 @@ msgstr "visszavonás" msgid "Unable to remove user" msgstr "A felhasználót nem sikerült eltávolítáni" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Csoportok" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Csoportadminisztrátor" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Törlés" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "csoport hozzáadása" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Érvényes felhasználónevet kell megadnia" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "A felhasználó nem hozható létre" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" @@ -387,11 +387,11 @@ msgstr "Több" msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Verzió" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Ezt a címet használja, ha WebDAV-on keresztül szeretné elérni az állományait" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Titkosítás" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "A titkosító alkalmzás a továbbiakban nincs engedélyezve, kititkosítja az összes fileodat" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Bejelentkezési jelszó" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Kititkosítja az összes file-t" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 28f2518468..ccb187664d 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: ebela \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -370,14 +370,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID attribútum:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Felhasználó - LDAP felhasználó hozzárendelés" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "A felhasználó - LDAP felhasználó hozzárendelés törlése" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "A csoport - LDAP csoport hozzárendelés törlése" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "A beállítások tesztelése" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Súgó" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 5b7573876f..2f6714783c 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,55 +156,55 @@ msgstr "Դեկտեմբեր" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Ջնջել" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "" @@ -131,11 +131,11 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,7 +179,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "" @@ -253,7 +253,7 @@ msgstr "" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -289,65 +289,65 @@ msgstr "" msgid "Save" msgstr "Պահպանել" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Բեռնել" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Ջնջել" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "" diff --git a/l10n/hy/files_encryption.po b/l10n/hy/files_encryption.po index 60b4e5ae2b..cb10f0389c 100644 --- a/l10n/hy/files_encryption.po +++ b/l10n/hy/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index d2cadb69d0..3c94ed0534 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index bdb47a3fbc..d920785be6 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 18:23+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -18,16 +18,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Հաստատել" +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Բեռնել" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index b86cee6006..d0d4ceee01 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:38+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Ջնջել" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index e86ef50944..9314310cb0 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "" @@ -181,32 +181,32 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Ջնջել" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/hy/user_ldap.po b/l10n/hy/user_ldap.po index 8b2b904fe7..d0f033e8f2 100644 --- a/l10n/hy/user_ldap.po +++ b/l10n/hy/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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 4d5634de07..f9b0d35437 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,55 +156,55 @@ msgstr "Decembre" msgid "Settings" msgstr "Configurationes" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Error" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "Compartir" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Error" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Deler" + +#: js/tags.js:31 +msgid "Add" +msgstr "Adder" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "Files" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Error" @@ -131,11 +131,11 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,7 +179,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nomine" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Dimension" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modificate" @@ -253,7 +253,7 @@ msgstr "Modificate" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Incargar" @@ -289,65 +289,65 @@ msgstr "" msgid "Save" msgstr "Salveguardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nove" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "File de texto" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Dossier" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Discargar" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Deler" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index d74401d383..9fbb91e732 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 9b2e205ccc..67def0dc37 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 83dfe3acf5..e3d9c8b0ef 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Contrasigno" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submitter" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Discargar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Incargar" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 41a8965d2d..59c86551a1 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nomine" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nomine" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Deler" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 1b6113bff3..92f117b224 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "Actualisar" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "" @@ -181,32 +181,32 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruppos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Deler" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "Plus" msgid "Less" msgstr "" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index c9c4e81d41..b7150a9f1f 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Adjuta" diff --git a/l10n/id/core.po b/l10n/id/core.po index e745d2e9e0..d4d36f6157 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipe kategori tidak diberikan." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Tidak ada kategori yang akan ditambahkan?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kategori ini sudah ada: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tipe objek tidak diberikan." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID %s tidak diberikan." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Galat ketika menambah %s ke favorit" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Tidak ada kategori terpilih untuk dihapus." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Galat ketika menghapus %s dari favorit" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,51 +156,51 @@ msgstr "Desember" msgid "Settings" msgstr "Setelan" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "hari ini" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "kemarin" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "beberapa tahun lalu" @@ -306,27 +267,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Tipe objek tidak ditentukan." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Galat" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nama aplikasi tidak ditentukan." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Berkas {file} yang dibutuhkan tidak terpasang!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Dibagikan" @@ -335,6 +275,11 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Galat" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Galat ketika membagikan" @@ -463,6 +408,34 @@ msgstr "Email terkirim" msgid "Warning" msgstr "Peringatan" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Tipe objek tidak ditentukan." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Hapus" + +#: js/tags.js:31 +msgid "Add" +msgstr "Tambah" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "Gagal menulis ke disk" msgid "Not enough storage available" msgstr "Ruang penyimpanan tidak mencukupi" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Direktori tidak valid." @@ -90,36 +90,36 @@ msgstr "Direktori tidak valid." msgid "Files" msgstr "Berkas" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Ruang penyimpanan tidak mencukupi" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL tidak boleh kosong" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Galat" @@ -131,11 +131,11 @@ msgstr "Bagikan" msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Menunggu" @@ -163,12 +163,12 @@ msgstr "mengganti {new_name} dengan {old_name}" msgid "undo" msgstr "urungkan" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -177,7 +177,7 @@ msgstr[0] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -223,25 +223,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nama" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Ukuran" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Dimodifikasi" @@ -250,7 +250,7 @@ msgstr "Dimodifikasi" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Unggah" @@ -286,65 +286,65 @@ msgstr "Ukuran masukan maksimum untuk berkas ZIP" msgid "Save" msgstr "Simpan" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Baru" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Berkas teks" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Folder" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Dari tautan" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Berkas yang dihapus" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Anda tidak memiliki izin menulis di sini." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Unduh" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Batalkan berbagi" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Hapus" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Yang diunggah terlalu besar" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silakan tunggu." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Yang sedang dipindai" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index 62ec821102..3ab56b93de 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Enkripsi" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index b58802d157..11bb34ff1c 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 2daa40bb0c..04c5fe53ae 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 17:20+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Sandi" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Kirim" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s membagikan folder %s dengan Anda" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s membagikan file %s dengan Anda" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Unduh" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Unggah" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Tidak ada pratinjau tersedia untuk" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 7e21000976..e351ecb37c 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "Tidak dapat menghapus permanen %s" msgid "Couldn't restore %s" msgstr "Tidak dapat memulihkan %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "jalankan operasi pemulihan" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Galat" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "hapus berkas secara permanen" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Hapus secara permanen" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nama" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Dihapus" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Tempat sampah anda kosong!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nama" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Pulihkan" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Dihapus" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Hapus" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 17de98e788..9db1161d74 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "Perbarui" msgid "Updated" msgstr "Diperbarui" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Menyimpan..." @@ -181,32 +181,32 @@ msgstr "urungkan" msgid "Unable to remove user" msgstr "Tidak dapat menghapus pengguna" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grup" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Admin Grup" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Hapus" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "tambah grup" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Tuliskan nama pengguna yang valid" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Gagal membuat pengguna" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Tuliskan sandi yang valid" @@ -384,11 +384,11 @@ msgstr "Lainnya" msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versi" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Enkripsi" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 3e22306396..b965f5e73d 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Uji Konfigurasi" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Bantuan" diff --git a/l10n/is/core.po b/l10n/is/core.po index feb1caadd1..79da876866 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -57,45 +57,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Flokkur ekki gefin" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Enginn flokkur til að bæta við?" - -#: 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 "Tegund ekki í boði." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID ekki í boði." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Villa við að bæta %s við eftirlæti." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Enginn flokkur valinn til eyðingar." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Villa við að fjarlægja %s úr eftirlæti." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -196,55 +157,55 @@ msgstr "Desember" msgid "Settings" msgstr "Stillingar" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "sek." -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "í dag" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "í gær" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "síðasta ári" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "einhverjum árum" @@ -312,27 +273,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Tegund ekki tilgreind" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Villa" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nafn forrits ekki tilgreint" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Umbeðina skráin {file} ekki tiltæk!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Deilt" @@ -341,6 +281,11 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Villa" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -469,6 +414,34 @@ msgstr "Tölvupóstur sendur" msgid "Warning" msgstr "Aðvörun" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Tegund ekki tilgreind" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Eyða" + +#: js/tags.js:31 +msgid "Add" +msgstr "Bæta við" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "Tókst ekki að skrifa á disk" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Ógild mappa." @@ -90,36 +90,36 @@ msgstr "Ógild mappa." msgid "Files" msgstr "Skrár" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Ekki nægt pláss tiltækt" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Vefslóð má ekki vera tóm." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Villa" @@ -131,11 +131,11 @@ msgstr "Deila" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Bíður" @@ -163,13 +163,13 @@ msgstr "yfirskrifaði {new_name} með {old_name}" msgid "undo" msgstr "afturkalla" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,7 +179,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nafn" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Stærð" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Breytt" @@ -253,7 +253,7 @@ msgstr "Breytt" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Senda inn" @@ -289,65 +289,65 @@ msgstr "Hámarks inntaksstærð fyrir ZIP skrár" msgid "Save" msgstr "Vista" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nýtt" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Texta skrá" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Mappa" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Af tengli" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Ekkert hér. Settu eitthvað inn!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Niðurhal" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Hætta deilingu" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Eyða" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Innsend skrá er of stór" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Er að skima" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index 2934c51ed1..f25da7310d 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Dulkóðun" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 45381cc3b7..b222db1b69 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index bfd1462e05..ab154f71f5 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Lykilorð" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Senda" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deildi möppunni %s með þér" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s deildi skránni %s með þér" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Niðurhal" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Senda inn" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Yfirlit ekki í boði fyrir" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 6088471926..9219fc2b3f 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Villa" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nafn" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nafn" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Eyða" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index e920436c9c..7cd4c71e18 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -158,15 +158,15 @@ msgstr "Uppfæra" msgid "Updated" msgstr "Uppfært" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Er að vista ..." @@ -182,32 +182,32 @@ msgstr "afturkalla" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Hópar" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Hópstjóri" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Eyða" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -385,11 +385,11 @@ msgstr "Meira" msgid "Less" msgstr "Minna" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Dulkóðun" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index d98c32e3ff..05b3d5d6d5 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Prúfa uppsetningu" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hjálp" diff --git a/l10n/it/core.po b/l10n/it/core.po index ac90b3bdd2..10c7a4626b 100644 --- a/l10n/it/core.po +++ b/l10n/it/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -60,45 +60,6 @@ msgstr "Cache dei file aggiornata" msgid "... %d%% done ..." msgstr "... %d%% completato ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipo di categoria non fornito." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nessuna categoria da aggiungere?" - -#: ajax/vcategories/add.php:37 -#, 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 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tipo di oggetto non fornito." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID %s non fornito." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Errore durante l'aggiunta di %s ai preferiti." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nessuna categoria selezionata per l'eliminazione." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Errore durante la rimozione di %s dai preferiti." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Non è stata fornita alcun immagine o file" @@ -199,55 +160,55 @@ msgstr "Dicembre" msgid "Settings" msgstr "Impostazioni" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "oggi" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "ieri" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "mese scorso" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "mesi fa" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "anno scorso" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "anni fa" @@ -315,27 +276,6 @@ msgstr "({count} selezionati)" msgid "Error loading file exists template" msgstr "Errore durante il caricamento del modello del file esistente" -#: 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 "Il tipo di oggetto non è specificato." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Errore" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Il nome dell'applicazione non è specificato." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Il file richiesto {file} non è installato!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Condivisi" @@ -344,6 +284,11 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Errore" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -472,6 +417,34 @@ msgstr "Messaggio inviato" msgid "Warning" msgstr "Avviso" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Il tipo di oggetto non è specificato." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Elimina" + +#: js/tags.js:31 +msgid "Add" +msgstr "Aggiungi" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -76,15 +76,15 @@ msgstr "Scrittura su disco non riuscita" msgid "Not enough storage available" msgstr "Spazio di archiviazione insufficiente" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Caricamento non riuscito. Impossibile ottenere informazioni sul file." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Caricamento non riuscito. Impossibile trovare il file caricato." -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Cartella non valida." @@ -92,36 +92,36 @@ msgstr "Cartella non valida." msgid "Files" msgstr "File" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Impossibile caricare {filename} poiché è una cartella oppure ha una dimensione di 0 byte." -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Spazio disponibile insufficiente" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Impossibile ottenere il risultato dal server." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "L'URL non può essere vuoto." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato a ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Errore" @@ -133,11 +133,11 @@ msgstr "Condividi" msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "In corso" @@ -165,13 +165,13 @@ msgstr "sostituito {new_name} con {old_name}" msgid "undo" msgstr "annulla" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartella" msgstr[1] "%n cartelle" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" @@ -181,7 +181,7 @@ msgstr[1] "%n file" msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Caricamento di %n file in corso" @@ -228,25 +228,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "La cifratura è stata disabilitata ma i tuoi file sono ancora cifrati. Vai nelle impostazioni personali per decifrare i file." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Errore durante lo spostamento del file" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nome" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Dimensione" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modificato" @@ -255,7 +255,7 @@ msgstr "Modificato" msgid "%s could not be renamed" msgstr "%s non può essere rinominato" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Carica" @@ -291,65 +291,65 @@ msgstr "Dimensione massima per i file ZIP" msgid "Save" msgstr "Salva" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nuovo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "File di testo" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Cartella" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Da collegamento" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "File eliminati" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Qui non hai i permessi di scrittura." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Scarica" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Rimuovi condivisione" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Elimina" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Caricamento troppo grande" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index 9648bdc7e3..823ed4a1b6 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -56,14 +56,14 @@ msgid "" "correct." msgstr "Impossibile aggiornare la password della chiave privata. Forse la vecchia password non era corretta." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -71,6 +71,18 @@ msgid "" "files." msgstr "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Requisiti mancanti." @@ -82,7 +94,7 @@ msgid "" " the encryption app has been disabled." msgstr "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "I seguenti utenti non sono configurati per la cifratura:" @@ -92,97 +104,97 @@ msgstr "Salvataggio in corso..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Passa direttamente a" #: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "impostazioni personali" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Cifratura" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Abilita la chiave di recupero (permette di recuperare i file utenti in caso di perdita della password):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Password della chiave di recupero" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Ripeti la password della chiave di recupero" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Abilitata" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Disabilitata" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Cambia la password della chiave di recupero:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Vecchia password della chiave di recupero" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nuova password della chiave di recupero" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Ripeti la nuova password della chiave di recupero" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Modifica password" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "La password della chiave privata non corrisponde più alla password di accesso:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Imposta la vecchia password della chiave privata sull'attuale password di accesso." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Se non ricordi la vecchia password puoi chiedere al tuo amministratore di recuperare i file." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Vecchia password di accesso" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Password di accesso attuale" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Aggiorna la password della chiave privata" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Abilita il ripristino della password:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "L'abilitazione di questa opzione ti consentirà di accedere nuovamente ai file cifrati in caso di perdita della password" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Impostazioni di ripristino dei file aggiornate" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Impossibile aggiornare il ripristino dei file" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 0e408fb028..503bc92d14 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Accesso consentito" @@ -25,7 +25,7 @@ msgstr "Accesso consentito" msgid "Error configuring Dropbox storage" msgstr "Errore durante la configurazione dell'archivio Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Concedi l'accesso" @@ -33,24 +33,24 @@ msgstr "Concedi l'accesso" msgid "Please provide a valid Dropbox app key and secret." msgstr "Fornisci chiave di applicazione e segreto di Dropbox validi." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Errore durante la configurazione dell'archivio Google Drive" -#: lib/config.php:447 +#: lib/config.php:453 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avviso: \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Avviso: il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 01ae61c6ae..768fd404ce 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-11 05:20+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Questa condivione è protetta da password" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "La password è errata. Prova ancora." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Password" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Invia" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Spiacenti, questo collegamento sembra non essere più attivo." @@ -55,28 +55,28 @@ msgstr "la condivisione è disabilitata" msgid "For more info, please ask the person who sent this link." msgstr "Per ulteriori informazioni, chiedi alla persona che ti ha inviato il collegamento." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha condiviso la cartella %s con te" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha condiviso il file %s con te" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Scarica" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Carica" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Annulla il caricamento" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Nessuna anteprima disponibile per" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index b6c4e7090d..a016e6ef69 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Impossibile eliminare %s definitivamente" msgid "Couldn't restore %s" msgstr "Impossibile ripristinare %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "esegui operazione di ripristino" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Errore" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "elimina il file definitivamente" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Elimina definitivamente" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nome" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Eliminati" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n cartella" -msgstr[1] "%n cartelle" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n file" -msgstr[1] "%n file" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "ripristinati" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Qui non c'è niente. Il tuo cestino è vuoto." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nome" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Ripristina" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Eliminati" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Elimina" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 305ae7af50..b27af7ae16 100644 --- a/l10n/it/settings.po +++ b/l10n/it/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 11:20+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -161,15 +161,15 @@ msgstr "Aggiorna" msgid "Updated" msgstr "Aggiornato" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Seleziona un'immagine del profilo" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decifratura dei file in corso... Attendi, potrebbe richiedere del tempo." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Salvataggio in corso..." @@ -185,32 +185,32 @@ msgstr "annulla" msgid "Unable to remove user" msgstr "Impossibile rimuovere l'utente" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruppi" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppi amministrati" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Elimina" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "aggiungi gruppo" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Deve essere fornito un nome utente valido" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Errore durante la creazione dell'utente" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" @@ -388,11 +388,11 @@ msgstr "Altro" msgid "Less" msgstr "Meno" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versione" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Utilizza questo indirizzo per accedere ai tuoi file via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Cifratura" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Password di accesso" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Decifra tutti i file" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 2c63238f98..f802734277 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "In modo predefinito, l'attributo UUID viene rilevato automaticamente. L'attributo UUID è utilizzato per identificare senza alcun dubbio gli utenti e i gruppi LDAP. Inoltre, il nome utente interno sarà creato sulla base dell'UUID, se non è specificato in precedenza. Puoi ignorare l'impostazione e fornire un attributo di tua scelta. Assicurati che l'attributo scelto possa essere ottenuto sia per gli utenti che per i gruppi e che sia univoco. Lascialo vuoto per ottenere il comportamento predefinito. Le modifiche avranno effetto solo sui nuovi utenti e gruppi LDAP associati (aggiunti)." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Attributo UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Associazione Nome utente-Utente LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "I nomi utente sono utilizzati per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate. Il nome utente interno è utilizzato dappertutto. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà esclusivamente la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione, ma solo in una fase sperimentale o di test." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Cancella associazione Nome utente-Utente LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Cancella associazione Nome gruppo-Gruppo LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Prova configurazione" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Aiuto" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 3484f6f4dd..ae31951408 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-16 04:11+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +29,7 @@ msgstr "%sが あなたと »%s«を共有しました" #: ajax/share.php:168 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "次のユーザにメールを送信できませんでした: %s" #: ajax/share.php:327 msgid "group" @@ -60,45 +60,6 @@ msgstr "ファイルキャッシュ更新完了" msgid "... %d%% done ..." msgstr "... %d%% 完了 ..." -#: 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 "このカテゴリはすでに存在します: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "オブジェクトタイプは提供されていません。" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID は提供されていません。" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "お気に入りに %s を追加エラー" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "削除するカテゴリが選択されていません。" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "お気に入りから %s の削除エラー" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "画像もしくはファイルが提供されていません" @@ -199,51 +160,51 @@ msgstr "12月" msgid "Settings" msgstr "設定" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 時間後" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "今日" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "昨日" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 日後" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "一月前" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n カ月後" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "月前" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "一年前" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "年前" @@ -310,27 +271,6 @@ msgstr "({count} 選択)" msgid "Error loading file exists template" msgstr "既存ファイルのテンプレートの読み込みエラー" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "オブジェクタイプが指定されていません。" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "エラー" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "アプリ名がしていされていません。" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "必要なファイル {file} がインストールされていません!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "共有中" @@ -339,6 +279,11 @@ msgstr "共有中" msgid "Share" msgstr "共有" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "エラー" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -417,7 +362,7 @@ msgstr "共有解除" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "ユーザにメールで通知" #: js/share.js:361 msgid "can edit" @@ -467,6 +412,34 @@ msgstr "メールを送信しました" msgid "Warning" msgstr "警告" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "オブジェクタイプが指定されていません。" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "新規に入力" + +#: js/tags.js:27 +msgid "Delete" +msgstr "削除" + +#: js/tags.js:31 +msgid "Add" +msgstr "追加" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "タグを編集" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "削除するタグが選択されていません。" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the
    " -msgstr "" +msgstr "共有は %s で有効期限が切れます。

    " #: templates/update.php:3 #, php-format diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 1f6469f9e0..effcd83736 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-16 04:00+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -79,15 +79,15 @@ msgstr "ディスクへの書き込みに失敗しました" msgid "Not enough storage available" msgstr "ストレージに十分な空き容量がありません" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "アップロードに失敗。ファイル情報を取得できませんでした。" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "無効なディレクトリです。" @@ -95,36 +95,36 @@ msgstr "無効なディレクトリです。" msgid "Files" msgstr "ファイル" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "ディレクトリもしくは0バイトのため {filename} をアップロードできません" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "利用可能なスペースが十分にありません" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "サーバから結果を取得できませんでした。" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URLは空にできません。" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "無効なフォルダ名です。'Shared' の利用はownCloudで予約済みです" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "エラー" @@ -136,11 +136,11 @@ msgstr "共有" msgid "Delete permanently" msgstr "完全に削除する" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "中断" @@ -168,12 +168,12 @@ msgstr "{old_name} を {new_name} に置換" msgid "undo" msgstr "元に戻す" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n個のフォルダ" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n個のファイル" @@ -182,7 +182,7 @@ msgstr[0] "%n個のファイル" msgid "{dirs} and {files}" msgstr "{dirs} と {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個のファイルをアップロード中" @@ -213,14 +213,14 @@ msgstr "あなたのストレージはほぼ一杯です({usedSpacePercent}% msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください" #: js/files.js:72 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。" #: js/files.js:76 msgid "" @@ -228,25 +228,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "ファイルの移動エラー" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "名前" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "サイズ" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "変更" @@ -255,7 +255,7 @@ msgstr "変更" msgid "%s could not be renamed" msgstr "%sの名前を変更できませんでした" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "アップロード" @@ -291,65 +291,65 @@ msgstr "ZIPファイルへの最大入力サイズ" msgid "Save" msgstr "保存" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "新規作成" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "テキストファイル" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "フォルダ" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "リンク" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "削除ファイル" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "あなたには書き込み権限がありません。" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "ここには何もありません。何かアップロードしてください。" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "ダウンロード" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "共有解除" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "削除" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "アップロードには大きすぎます。" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "ファイルをスキャンしています、しばらくお待ちください。" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "スキャン中" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index abaa14b511..76ee316f13 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -56,14 +56,14 @@ msgid "" "correct." msgstr "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -71,6 +71,18 @@ msgid "" "files." msgstr "秘密鍵が有効ではありません。パスワードがownCloudシステムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "必要要件が満たされていません。" @@ -82,7 +94,7 @@ msgid "" " the encryption app has been disabled." msgstr "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "以下のユーザーは、暗号化設定がされていません:" @@ -98,91 +110,91 @@ msgstr "" msgid "personal settings" msgstr "秘密鍵をアンロックできます" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "暗号化" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "復旧キーを有効化 (万一パスワードを亡くした場合もユーザーのファイルを回復できる):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "復旧キーのパスワード" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "有効" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "無効" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "復旧キーのパスワードを変更:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "古い復旧キーのパスワード" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "新しい復旧キーのパスワード" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "パスワードを変更" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "もはや秘密鍵はログインパスワードと一致しません:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "古い秘密鍵のパスワードを現在のログインパスワードに設定する。" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "古いパスワードを覚えていない場合、管理者に尋ねてファイルを回復することができます。" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "古いログインパスワード" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "現在のログインパスワード" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "秘密鍵のパスワードを更新" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "パスワード復旧を有効化:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "このオプションを有効にすると、パスワードを紛失した場合も、暗号化されたファイルに再度アクセスすることができるようになります。" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "ファイル復旧設定が更新されました" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "ファイル復旧を更新できませんでした" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 1dfe940826..1a40cf44a9 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 71e37cb9fd..34bae7a6b9 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Daisuke Deguchi , 2013 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-16 04:00+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "この共有はパスワードで保護されています" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "パスワードが間違っています。再試行してください。" -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "パスワード" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "送信" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "申し訳ございません。このリンクはもう利用できません。" @@ -54,28 +55,28 @@ msgstr "共有が無効になっています" msgid "For more info, please ask the person who sent this link." msgstr "不明な点は、こちらのリンクの提供者に確認をお願いします。" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s はフォルダー %s をあなたと共有中です" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s はファイル %s をあなたと共有中です" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "アップロード" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "プレビューはありません" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index b865b55bdc..63397f9fbf 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: plazmism \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,53 +29,31 @@ msgstr "%s を完全に削除出来ませんでした" msgid "Couldn't restore %s" msgstr "%s を復元出来ませんでした" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "復元操作を実行する" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "エラー" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "ファイルを完全に削除する" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "完全に削除する" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "名前" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "削除済み" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n個のフォルダ" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n個のファイル" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "復元済" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "ここには何もありません。ゴミ箱は空です!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "名前" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "復元" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "削除済み" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "削除" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 1ffa3d1aac..a3e313bda6 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-16 04:00+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,15 +160,15 @@ msgstr "更新" msgid "Updated" msgstr "更新済み" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "プロファイル画像を選択" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "ファイルを複合中... しばらくお待ちください、この処理には少し時間がかかるかもしれません。" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "保存中..." @@ -184,32 +184,32 @@ msgstr "元に戻す" msgid "Unable to remove user" msgstr "ユーザを削除出来ません" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "グループ" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "グループ管理者" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "削除" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "グループを追加" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "有効なユーザ名を指定する必要があります" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "ユーザ作成エラー" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "有効なパスワードを指定する必要があります" @@ -345,11 +345,11 @@ msgstr "ユーザにグループ内のユーザとのみ共有を許可する" #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "メール通知を許可" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "共有ファイルに関するメール通知の送信をユーザに許可する" #: templates/admin.php:178 msgid "Security" @@ -387,11 +387,11 @@ msgstr "もっと見る" msgid "Less" msgstr "閉じる" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "バージョン" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the
    ownCloud community, the access your Files via WebDAV" msgstr "WebDAV経由でファイルにアクセスするにはこのアドレスを利用してください" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "暗号化" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "ログインパスワード" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "すべてのファイルを複合する" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 55f63dc243..9b368cde3b 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-16 04:00+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -370,14 +370,18 @@ msgid "" msgstr "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID属性:" +msgid "UUID Attribute for Users:" +msgstr "ユーザの UUID 属性:" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "グループの UUID 属性:" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "ユーザ名とLDAPユーザのマッピング" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "ユーザ名とLDAPユーザのマッピングをクリアする" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "グループ名とLDAPグループのマッピングをクリアする" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "設定をテスト" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "ヘルプ" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index 4aec55bfb1..3005c8823f 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -306,27 +267,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -335,6 +275,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -463,6 +408,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index efd2890682..f7e5a8f518 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "პაროლი" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "გადმოწერა" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ka/files_trashbin.po b/l10n/ka/files_trashbin.po index 36d83d1478..fd709c4c61 100644 --- a/l10n/ka/files_trashbin.po +++ b/l10n/ka/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -27,41 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index 44a23bfdf9..fa5681d79e 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "შველა" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index afae9b51b8..06f2f97ed6 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "კატეგორია უკვე არსებობს: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "ობიექტის ტიპი არ არის განხილული." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID არ არის განხილული" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "შეცდომა %s–ის ფევორიტებში დამატების დროს." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "სარედაქტირებელი კატეგორია არ არის არჩეული " - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "შეცდომა %s–ის ფევორიტებიდან წაშლის დროს." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,51 +156,51 @@ msgstr "დეკემბერი" msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "დღეს" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "წლის წინ" @@ -306,27 +267,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "ობიექტის ტიპი არ არის მითითებული." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "შეცდომა" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "აპლიკაციის სახელი არ არის მითითებული." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "მოთხოვნილი ფაილი {file} არ არის დაინსტალირებული." - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "გაზიარებული" @@ -335,6 +275,11 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "შეცდომა" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -463,6 +408,34 @@ msgstr "იმეილი გაიგზავნა" msgid "Warning" msgstr "გაფრთხილება" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "ობიექტის ტიპი არ არის მითითებული." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "წაშლა" + +#: js/tags.js:31 +msgid "Add" +msgstr "დამატება" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "შეცდომა დისკზე ჩაწერისას" msgid "Not enough storage available" msgstr "საცავში საკმარისი ადგილი არ არის" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "დაუშვებელი დირექტორია." @@ -90,36 +90,36 @@ msgstr "დაუშვებელი დირექტორია." msgid "Files" msgstr "ფაილები" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "საკმარისი ადგილი არ არის" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL არ შეიძლება იყოს ცარიელი." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "შეცდომა" @@ -131,11 +131,11 @@ msgstr "გაზიარება" msgid "Delete permanently" msgstr "სრულად წაშლა" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "მოცდის რეჟიმში" @@ -163,12 +163,12 @@ msgstr "{new_name} შეცვლილია {old_name}–ით" msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -177,7 +177,7 @@ msgstr[0] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -223,25 +223,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "სახელი" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "ზომა" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "შეცვლილია" @@ -250,7 +250,7 @@ msgstr "შეცვლილია" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "ატვირთვა" @@ -286,65 +286,65 @@ msgstr "ZIP ფაილების მაქსიმუმ დასაშვ msgid "Save" msgstr "შენახვა" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "ახალი" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "ტექსტური ფაილი" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "საქაღალდე" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "მისამართიდან" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "წაშლილი ფაილები" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "თქვენ არ გაქვთ ჩაწერის უფლება აქ." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "აქ არაფერი არ არის. ატვირთე რამე!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "გაუზიარებადი" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "წაშლა" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "ასატვირთი ფაილი ძალიან დიდია" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "მიმდინარე სკანირება" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index aabac59780..b50e88628a 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "ენკრიპცია" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 8735fd9f60..d4a75bb89f 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index c53f232620..dfe7c72771 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "პაროლი" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "გაგზავნა" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s–მა გაგიზიარათ ფოლდერი %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s–მა გაგიზიარათ ფაილი %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "ატვირთვა" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "წინასწარი დათვალიერება შეუძლებელია" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index e7d9fa72e7..2d54104afb 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "ფაილი %s–ის სრულად წაშლა ვერ msgid "Couldn't restore %s" msgstr "%s–ის აღდგენა ვერ მოხერხდა" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "მიმდინარეობს აღდგენის ოპერაცია" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "შეცდომა" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "ფაილის სრულად წაშლა" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "სრულად წაშლა" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "სახელი" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "წაშლილი" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "სახელი" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "აღდგენა" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "წაშლილი" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "წაშლა" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 2c22f22b5b..79f90fc18f 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -158,15 +158,15 @@ msgstr "განახლება" msgid "Updated" msgstr "განახლებულია" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "შენახვა..." @@ -182,32 +182,32 @@ msgstr "დაბრუნება" msgid "Unable to remove user" msgstr "მომხმარებლის წაშლა ვერ მოხერხდა" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "ჯგუფები" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "ჯგუფის ადმინისტრატორი" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "წაშლა" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "ჯგუფის დამატება" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "უნდა მიუთითოთ არსებული მომხმარებლის სახელი" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "შეცდომა მომხმარებლის შექმნისას" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "უნდა მიუთითოთ არსებული პაროლი" @@ -385,11 +385,11 @@ msgstr "უფრო მეტი" msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "ენკრიპცია" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 3f5f3173d5..4c74ff9ca9 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "კავშირის ტესტირება" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "დახმარება" diff --git a/l10n/km/core.po b/l10n/km/core.po index 108e8db082..5958a93a59 100644 --- a/l10n/km/core.po +++ b/l10n/km/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -306,27 +267,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -335,6 +275,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -463,6 +408,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/km/files_sharing.po b/l10n/km/files_sharing.po index f12cf3ccbe..a8e71bbaae 100644 --- a/l10n/km/files_sharing.po +++ b/l10n/km/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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/km/files_trashbin.po b/l10n/km/files_trashbin.po index f3aa613a53..da11ae02db 100644 --- a/l10n/km/files_trashbin.po +++ b/l10n/km/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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -27,41 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/km/user_ldap.po b/l10n/km/user_ldap.po index c6be8c9e68..bebbe6a2c2 100644 --- a/l10n/km/user_ldap.po +++ b/l10n/km/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-09-13 21:47-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 1e31d0b4f5..b30f320c95 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -306,27 +267,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -335,6 +275,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -463,6 +408,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po index b4ca534331..e933283838 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/kn/files_trashbin.po b/l10n/kn/files_trashbin.po index 4a8a4c3ae7..15941b3799 100644 --- a/l10n/kn/files_trashbin.po +++ b/l10n/kn/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -27,41 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/kn/user_ldap.po b/l10n/kn/user_ldap.po index 24c7a34325..65a7043e67 100644 --- a/l10n/kn/user_ldap.po +++ b/l10n/kn/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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index e8b3ae15bb..c52db125f7 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -58,45 +58,6 @@ msgstr "" msgid "... %d%% done ..." 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 "분류가 이미 존재합니다: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "객체 형식이 제공되지 않았습니다." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID가 제공되지 않았습니다." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "책갈피에 %s을(를) 추가할 수 없었습니다." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "삭제할 분류를 선택하지 않았습니다. " - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "책갈피에서 %s을(를) 삭제할 수 없었습니다." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -197,51 +158,51 @@ msgstr "12월" msgid "Settings" msgstr "설정" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "초 전" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "오늘" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "어제" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "지난 달" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "개월 전" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "작년" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "년 전" @@ -308,27 +269,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "객체 유형이 지정되지 않았습니다." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "오류" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "앱 이름이 지정되지 않았습니다." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "필요한 파일 {file}이(가) 설치되지 않았습니다!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "공유됨" @@ -337,6 +277,11 @@ msgstr "공유됨" msgid "Share" msgstr "공유" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "오류" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -465,6 +410,34 @@ msgstr "이메일 발송됨" msgid "Warning" msgstr "경고" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "객체 유형이 지정되지 않았습니다." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "삭제" + +#: js/tags.js:31 +msgid "Add" +msgstr "추가" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -77,15 +77,15 @@ msgstr "디스크에 쓰지 못했습니다" msgid "Not enough storage available" msgstr "저장소가 용량이 충분하지 않습니다." -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "업로드에 실패했습니다. 파일 정보를 가져올수 없습니다." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "업로드에 실패했습니다. 업로드할 파일을 찾을수 없습니다" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." @@ -93,36 +93,36 @@ msgstr "올바르지 않은 디렉터리입니다." msgid "Files" msgstr "파일" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "{filename}을 업로드 할수 없습니다. 폴더이거나 0 바이트 파일입니다." -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "여유 공간이 부족합니다" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "서버에서 결과를 가져올수 없습니다." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL을 입력해야 합니다." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "유효하지 않은 폴더명입니다. \"Shared\" 이름의 사용은 OwnCloud 가 이미 예약하고 있습니다." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "오류" @@ -134,11 +134,11 @@ msgstr "공유" msgid "Delete permanently" msgstr "영원히 삭제" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "대기 중" @@ -166,12 +166,12 @@ msgstr "{old_name}이(가) {new_name}(으)로 대체됨" msgid "undo" msgstr "되돌리기" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "폴더 %n" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "파일 %n 개" @@ -180,7 +180,7 @@ msgstr[0] "파일 %n 개" msgid "{dirs} and {files}" msgstr "{dirs} 그리고 {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 개의 파일을 업로드중" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "암호화는 해제되어 있지만, 파일은 아직 암호화 되어 있습니다. 개인 설저에 가셔서 암호를 해제하십시오" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "파일 이동 오류" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "이름" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "크기" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "수정됨" @@ -253,7 +253,7 @@ msgstr "수정됨" msgid "%s could not be renamed" msgstr "%s 의 이름을 변경할수 없습니다" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "업로드" @@ -289,65 +289,65 @@ msgstr "ZIP 파일 최대 크기" msgid "Save" msgstr "저장" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "새로 만들기" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "텍스트 파일" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "폴더" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "링크에서" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "파일 삭제됨" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "당신은 여기에 쓰기를 할 수 있는 권한이 없습니다." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "내용이 없습니다. 업로드할 수 있습니다!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "다운로드" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "공유 해제" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "삭제" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "업로드한 파일이 너무 큼" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "파일을 검색하고 있습니다. 기다려 주십시오." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "현재 검색" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index b994394ff1..72dee154cf 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -54,14 +54,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -69,6 +69,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -80,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -96,91 +108,91 @@ msgstr "" msgid "personal settings" msgstr "개인 설정" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "암호화" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "키 비밀번호 복구" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "복구 키 비밀번호 변경" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "예전 복구 키 비밀번호" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "새 복구 키 비밀번호" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "암호 변경" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "예전 로그인 암호" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "현재 로그인 암호" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "개인 키 암호 업데이트" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "파일 복구 설정 업데이트됨" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "파일 복구를 업데이트 할수 없습니다" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index f07a5ddee4..c8a0f89f90 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index da94ad3211..8fd11b0586 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-29 10:14+0000\n" -"Last-Translator: smallsnail \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "비밀번호가 틀립니다. 다시 입력해주세요." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "암호" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "제출" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "죄송합니다만 이 링크는 더이상 작동되지 않습니다." @@ -54,28 +54,28 @@ msgstr "공유가 비활성되었습니다" msgid "For more info, please ask the person who sent this link." msgstr "더 자세한 설명은 링크를 보내신 분에게 여쭤보십시오" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s 님이 파일 %s을(를) 공유하였습니다" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "다운로드" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "업로드" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "다음 항목을 미리 볼 수 없음:" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 4d9bdc7e48..6720b2e890 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: smallsnail \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,53 +28,31 @@ msgstr "%s를 영구적으로 삭제할수 없습니다" msgid "Couldn't restore %s" msgstr "%s를 복원할수 없습니다" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "복원 작업중" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "오류" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "영구적으로 파일 삭제하기" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "영원히 삭제" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "이름" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "삭제됨" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "폴더 %n개" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "파일 %n개 " - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "복원됨" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "현재 휴지통은 비어있습니다!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "이름" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "복원" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "삭제됨" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "삭제" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index af3cbd9f45..8761e5426f 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -158,15 +158,15 @@ msgstr "업데이트" msgid "Updated" msgstr "업데이트됨" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "저장 중..." @@ -182,32 +182,32 @@ msgstr "실행 취소" msgid "Unable to remove user" msgstr "사용자를 삭제할 수 없음" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "그룹" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "그룹 관리자" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "삭제" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "그룹 추가" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "올바른 사용자 이름을 입력해야 함" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "사용자 생성 오류" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "올바른 암호를 입력해야 함" @@ -385,11 +385,11 @@ msgstr "더 중요함" msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "버전" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "암호화" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index fc5af73331..c763e21ebd 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "도움말" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 860c4a7824..3fb247aa84 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "هه‌ڵه" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "هاوبەشی کردن" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "هه‌ڵه" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "ئاگاداری" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "زیادکردن" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "هه‌ڵه" @@ -131,7 +131,7 @@ msgstr "هاوبەشی کردن" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "ناو" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "" @@ -253,7 +253,7 @@ msgstr "" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "بارکردن" @@ -289,65 +289,65 @@ msgstr "" msgid "Save" msgstr "پاشکه‌وتکردن" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "بوخچه" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "داگرتن" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index e4a8591cc0..2aad92e045 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "نهێنیکردن" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index d1abf7c6c8..8dea101c00 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "ناردن" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "داگرتن" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "بارکردن" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index c20783bf32..85e8f58d37 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "هه‌ڵه" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "ناو" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "ناو" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 5fb4b95ffa..340611f80e 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "یارمەتی" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 3bbf3073f2..6608ec8022 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -57,45 +57,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Typ vun der Kategorie net uginn." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Keng Kategorie fir bäizesetzen?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Dës Kategorie existéiert schon: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Typ vum Objet net uginn." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID net uginn." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Feeler beim dobäisetze vun %s bei d'Favoritten." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Keng Kategorien ausgewielt fir ze läschen." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Feeler beim läsche vun %s aus de Favoritten." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -196,55 +157,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Astellungen" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "haut" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "gëschter" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "leschte Mount" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "Méint hir" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "Joren hir" @@ -312,27 +273,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Den Typ vum Object ass net uginn." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Feeler" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Den Numm vun der App ass net uginn." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "De benéidegte Fichier {file} ass net installéiert!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Gedeelt" @@ -341,6 +281,11 @@ msgstr "Gedeelt" msgid "Share" msgstr "Deelen" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Feeler" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Feeler beim Deelen" @@ -469,6 +414,34 @@ msgstr "Email geschéckt" msgid "Warning" msgstr "Warnung" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Den Typ vum Object ass net uginn." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Läschen" + +#: js/tags.js:31 +msgid "Add" +msgstr "Dobäisetzen" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "Konnt net op den Disk schreiwen" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "Dateien" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Fehler" @@ -131,11 +131,11 @@ msgstr "Deelen" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,7 +179,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Numm" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Gréisst" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Geännert" @@ -253,7 +253,7 @@ msgstr "Geännert" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Eroplueden" @@ -289,65 +289,65 @@ msgstr "Maximal Gréisst fir ZIP Fichieren" msgid "Save" msgstr "Späicheren" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nei" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Text Fichier" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Dossier" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Download" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Net méi deelen" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Läschen" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index 4d829596ae..2852be0427 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index d92692e179..dbe6960380 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 3fba12cda2..9b04cb82f4 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Den Passwuert ass incorrect. Probeier ed nach eng keier." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passwuert" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Fortschécken" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s huet den Dossier %s mad der gedeelt" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt den Fichier %s mad dir" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Eroplueden" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Keeng Preview do fir" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 85486bdbf4..80206d687a 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fehler" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Numm" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Numm" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Läschen" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 3ef1c2e142..1eabf34f2f 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -158,15 +158,15 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Speicheren..." @@ -182,32 +182,32 @@ msgstr "réckgängeg man" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruppen" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppen Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Läschen" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -385,11 +385,11 @@ msgstr "Méi" msgid "Less" msgstr "" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 9fa58faf2f..9dadffa0d6 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hëllef" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 4f1a1ad327..270b237584 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -60,45 +60,6 @@ msgstr "Atnaujinta failų talpykla" msgid "... %d%% done ..." msgstr "... %d%% atlikta ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategorija nenurodyta." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nepridėsite jokios kategorijos?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Ši kategorija jau egzistuoja: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekto tipas nenurodytas." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nenurodytas." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Klaida perkeliant %s į jūsų mėgstamiausius." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Trynimui nepasirinkta jokia kategorija." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Klaida ištrinant %s iš jūsų mėgstamiausius." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Nenurodytas paveikslėlis ar failas" @@ -199,59 +160,59 @@ msgstr "Gruodis" msgid "Settings" msgstr "Nustatymai" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " prieš %n minutę" msgstr[1] " prieš %n minučių" msgstr[2] " prieš %n minučių" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "prieš %n valandą" msgstr[1] "prieš %n valandų" msgstr[2] "prieš %n valandų" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "šiandien" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "vakar" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "prieš %n dieną" msgstr[1] "prieš %n dienas" msgstr[2] "prieš %n dienų" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "prieš %n mėnesį" msgstr[1] "prieš %n mėnesius" msgstr[2] "prieš %n mėnesių" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "praeitais metais" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "prieš metus" @@ -320,27 +281,6 @@ msgstr "({count} pažymėtų)" msgid "Error loading file exists template" msgstr "Klaida įkeliant esančių failų ruošinį" -#: 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 "Objekto tipas nenurodytas." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Klaida" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nenurodytas programos pavadinimas." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Reikalingas {file} failas nėra įrašytas!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Dalinamasi" @@ -349,6 +289,11 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Klaida" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -477,6 +422,34 @@ msgstr "Laiškas išsiųstas" msgid "Warning" msgstr "Įspėjimas" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Objekto tipas nenurodytas." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Ištrinti" + +#: js/tags.js:31 +msgid "Add" +msgstr "Pridėti" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -76,15 +76,15 @@ msgstr "Nepavyko įrašyti į diską" msgid "Not enough storage available" msgstr "Nepakanka vietos serveryje" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Įkėlimas nepavyko. Nepavyko gauti failo informacijos." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Įkėlimas nepavyko. Nepavyko rasti įkelto failo" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Neteisingas aplankas" @@ -92,36 +92,36 @@ msgstr "Neteisingas aplankas" msgid "Files" msgstr "Failai" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nepavyksta įkelti {filename}, nes tai katalogas arba yra 0 baitų dydžio" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Nepakanka vietos" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Nepavyko gauti rezultato iš serverio." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL negali būti tuščias." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Negalimas aplanko pavadinimas. 'Shared' pavadinimas yra rezervuotas ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Klaida" @@ -133,11 +133,11 @@ msgstr "Dalintis" msgid "Delete permanently" msgstr "Ištrinti negrįžtamai" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Laukiantis" @@ -165,14 +165,14 @@ msgstr "pakeiskite {new_name} į {old_name}" msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n aplankas" msgstr[1] "%n aplankai" msgstr[2] "%n aplankų" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n failas" @@ -183,7 +183,7 @@ msgstr[2] "%n failų" msgid "{dirs} and {files}" msgstr "{dirs} ir {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Įkeliamas %n failas" @@ -231,25 +231,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Šifravimas buvo išjungtas, bet Jūsų failai vis dar užšifruoti. Prašome eiti į asmeninius nustatymus ir iššifruoti savo failus." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunčiamas didelis failas." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Klaida perkeliant failą" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Dydis" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Pakeista" @@ -258,7 +258,7 @@ msgstr "Pakeista" msgid "%s could not be renamed" msgstr "%s negali būti pervadintas" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Įkelti" @@ -294,65 +294,65 @@ msgstr "Maksimalus ZIP archyvo failo dydis" msgid "Save" msgstr "Išsaugoti" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Naujas" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Teksto failas" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Katalogas" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Iš nuorodos" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Ištrinti failai" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Jūs neturite rašymo leidimo." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Nebesidalinti" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Ištrinti" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index 6bb0be274b..057734bb33 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/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-10-07 12:14-0400\n" -"PO-Revision-Date: 2013-10-07 10:30+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,14 +55,14 @@ msgid "" "correct." msgstr "Nepavyko atnaujinti privataus rakto slaptažodžio. Gali būti, kad buvo neteisingai suvestas senasis." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "Šifravimo programa nepaleista! Galbūt šifravimo programa buvo įjungta dar kartą Jūsų sesijos metu. Prašome atsijungti ir vėl prisijungti, kad paleisti šifravimo programą." -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -70,6 +70,18 @@ msgid "" "files." msgstr "Jūsų privatus raktas yra netinkamas! Panašu, kad Jūsų slaptažodis buvo pakeistas išorėje ownCloud sistemos (pvz. Jūsų organizacijos kataloge). Galite atnaujinti savo privataus rakto slaptažodį savo asmeniniuose nustatymuose, kad atkurti prieigą prie savo šifruotų failų." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Trūkstami laukai." @@ -81,7 +93,7 @@ msgid "" " the encryption app has been disabled." msgstr "Prašome įsitikinti, kad PHP 5.3.3 ar naujesnė yra įdiegta ir kad OpenSSL kartu su PHP plėtiniu yra šjungti ir teisingai sukonfigūruoti. Kol kas šifravimo programa bus išjungta." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Sekantys naudotojai nenustatyti šifravimui:" @@ -97,91 +109,91 @@ msgstr "Eiti tiesiai į Jūsų" msgid "personal settings" msgstr "asmeniniai nustatymai" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Šifravimas" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Įjunkite atkūrimo raktą, (leisti atkurti naudotojų failus praradus slaptažodį):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Atkūrimo rakto slaptažodis" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "Pakartokite atkūrimo rakto slaptažodį" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Įjungta" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Išjungta" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Pakeisti atkūrimo rakto slaptažodį:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Senas atkūrimo rakto slaptažodis" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Naujas atkūrimo rakto slaptažodis" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "Pakartokite naują atkūrimo rakto slaptažodį" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Pakeisti slaptažodį" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Privatus rakto slaptažodis daugiau neatitinka Jūsų prisijungimo slaptažodžio:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Nustatyti Jūsų privataus rakto slaptažodį į Jūsų dabartinį prisijungimo." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Jei nepamenate savo seno slaptažodžio, galite paprašyti administratoriaus atkurti Jūsų failus." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Senas prisijungimo slaptažodis" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Dabartinis prisijungimo slaptažodis" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Atnaujinti privataus rakto slaptažodį" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Įjungti slaptažodžio atkūrimą:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Įjungus šią funkciją jums bus suteiktas pakartotinis priėjimas prie Jūsų šifruotų failų pamiršus slaptažodį." -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Failų atkūrimo nustatymai pakeisti" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Neišėjo atnaujinti failų atkūrimo" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 8bb8c45ea9..7d99f3eead 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 1ce65e7a06..46715d4e97 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Netinka slaptažodis: Bandykite dar kartą." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Slaptažodis" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Išsaugoti" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Atleiskite, panašu, kad nuoroda yra neveiksni." @@ -55,28 +55,28 @@ msgstr "dalinimasis yra išjungtas" msgid "For more info, please ask the person who sent this link." msgstr "Dėl tikslesnės informacijos susisiekite su asmeniu atsiuntusiu nuorodą." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s pasidalino su jumis %s aplanku" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s pasidalino su jumis %s failu" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Atsisiųsti" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Įkelti" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Peržiūra nėra galima" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 3f4887ea23..d745a17d47 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,57 +29,31 @@ msgstr "Nepavyko negrįžtamai ištrinti %s" msgid "Couldn't restore %s" msgstr "Nepavyko atkurti %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "atkurti" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Klaida" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "failą ištrinti negrįžtamai" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Ištrinti negrįžtamai" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Pavadinimas" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Ištrinti" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n aplankų" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n failų" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "atstatyta" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nieko nėra. Jūsų šiukšliadėžė tuščia!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Pavadinimas" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Atstatyti" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Ištrinti" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Ištrinti" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 29e03ac1c9..0757aa004f 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 19:10+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: Liudas Ališauskas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -161,15 +161,15 @@ msgstr "Atnaujinti" msgid "Updated" msgstr "Atnaujinta" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Pažymėkite profilio paveikslėlį" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Iššifruojami failai... Prašome palaukti, tai gali užtrukti." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Saugoma..." @@ -185,32 +185,32 @@ msgstr "anuliuoti" msgid "Unable to remove user" msgstr "Nepavyko ištrinti vartotojo" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupės" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupės administratorius" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Ištrinti" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "pridėti grupę" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Vartotojo vardas turi būti tinkamas" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Klaida kuriant vartotoją" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Slaptažodis turi būti tinkamas" @@ -388,11 +388,11 @@ msgstr "Daugiau" msgid "Less" msgstr "Mažiau" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versija" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Naudokite šį adresą, kad pasiekti savo failus per WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Šifravimas" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Šifravimo programa nebėra įjungta, iššifruokite visus savo failus" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Prisijungimo slaptažodis" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Iššifruoti visus failus" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 4890efbe3b..e5393ac379 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID atributas:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Naudotojo vardo - LDAP naudotojo sąsaja" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Išvalyti naudotojo vardo - LDAP naudotojo sąsają" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Išvalyti grupės pavadinimo - LDAP naudotojo sąsają" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Bandyti konfigūraciją" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Pagalba" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index b132f8f044..abeb7b1e10 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -57,45 +57,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategorijas tips nav norādīts." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nav kategoriju, ko pievienot?" - -#: ajax/vcategories/add.php:37 -#, 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 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekta tips nav norādīts." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nav norādīts." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Kļūda, pievienojot %s izlasei." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Neviena kategorija nav izvēlēta dzēšanai." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Kļūda, izņemot %s no izlases." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -196,59 +157,59 @@ msgstr "Decembris" msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Tagad, %n minūtes" msgstr[1] "Pirms %n minūtes" msgstr[2] "Pirms %n minūtēm" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Šodien, %n stundas" msgstr[1] "Pirms %n stundas" msgstr[2] "Pirms %n stundām" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "šodien" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "vakar" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Šodien, %n dienas" msgstr[1] "Pirms %n dienas" msgstr[2] "Pirms %n dienām" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Šomēnes, %n mēneši" msgstr[1] "Pirms %n mēneša" msgstr[2] "Pirms %n mēnešiem" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "gadus atpakaļ" @@ -317,27 +278,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Nav norādīts objekta tips." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Kļūda" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nav norādīts lietotnes nosaukums." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Pieprasītā datne {file} nav instalēta!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Kopīgs" @@ -346,6 +286,11 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Kļūda" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -474,6 +419,34 @@ msgstr "Vēstule nosūtīta" msgid "Warning" msgstr "Brīdinājums" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Nav norādīts objekta tips." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Dzēst" + +#: js/tags.js:31 +msgid "Add" +msgstr "Pievienot" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -75,15 +75,15 @@ msgstr "Neizdevās saglabāt diskā" msgid "Not enough storage available" msgstr "Nav pietiekami daudz vietas" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Nederīga direktorija." @@ -91,36 +91,36 @@ msgstr "Nederīga direktorija." msgid "Files" msgstr "Datnes" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Nepietiek brīvas vietas" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Augšupielāde ir atcelta." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL nevar būt tukšs." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Kļūdains mapes nosaukums. 'Shared' lietošana ir rezervēta no ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Kļūda" @@ -132,11 +132,11 @@ msgstr "Dalīties" msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Gaida savu kārtu" @@ -164,14 +164,14 @@ msgstr "aizvietoja {new_name} ar {old_name}" msgid "undo" msgstr "atsaukt" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapes" msgstr[1] "%n mape" msgstr[2] "%n mapes" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n faili" @@ -182,7 +182,7 @@ msgstr[2] "%n faili" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n" @@ -230,25 +230,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Šifrēšana tika atslēgta, tomēr jūsu faili joprojām ir šifrēti. Atšifrēt failus var Personiskajos uzstādījumos." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nosaukums" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Izmērs" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Mainīts" @@ -257,7 +257,7 @@ msgstr "Mainīts" msgid "%s could not be renamed" msgstr "%s nevar tikt pārsaukts" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Augšupielādēt" @@ -293,65 +293,65 @@ msgstr "Maksimālais ievades izmērs ZIP datnēm" msgid "Save" msgstr "Saglabāt" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Jauna" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Teksta datne" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Mape" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "No saites" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Dzēstās datnes" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Jums nav tiesību šeit rakstīt." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Lejupielādēt" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Dzēst" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Datne ir par lielu, lai to augšupielādētu" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Šobrīd tiek caurskatīts" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index 3e83a2065c..df81c4ab04 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Šifrēšana" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 01dbef9b6e..257b3d6427 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: stendec \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_sharing.po b/l10n/lv/files_sharing.po index 036cfaf960..2284ca1c98 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Parole" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Iesniegt" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ar jums dalījās ar mapi %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Augšupielādēt" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Nav pieejams priekšskatījums priekš" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 8409f8c920..ff938af6f0 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: stendec \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,57 +28,31 @@ msgstr "Nevarēja pilnībā izdzēst %s" msgid "Couldn't restore %s" msgstr "Nevarēja atjaunot %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "veikt atjaunošanu" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Kļūda" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "dzēst datni pavisam" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Dzēst pavisam" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nosaukums" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Dzēsts" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "Nekas, %n mapes" -msgstr[1] "%n mape" -msgstr[2] "%n mapes" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "Neviens! %n faaili" -msgstr[1] "%n fails" -msgstr[2] "%n faili" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "atjaunots" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Šeit nekā nav. Jūsu miskaste ir tukša!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nosaukums" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Atjaunot" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Dzēsts" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Dzēst" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index cfb2581a7f..e0c9ad750e 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -158,15 +158,15 @@ msgstr "Atjaunināt" msgid "Updated" msgstr "Atjaunināta" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Atšifrēju failus... Uzgaidiet tas var ilgt kādu laiku." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Saglabā..." @@ -182,32 +182,32 @@ msgstr "atsaukt" msgid "Unable to remove user" msgstr "Nevar izņemt lietotāju" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupas" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupas administrators" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Dzēst" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "pievienot grupu" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Jānorāda derīgs lietotājvārds" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Kļūda, veidojot lietotāju" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Jānorāda derīga parole" @@ -385,11 +385,11 @@ msgstr "Vairāk" msgid "Less" msgstr "Mazāk" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versija" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Lietojiet šo adresi lai piekļūtu saviem failiem ar WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Šifrēšana" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Šifrēšanas lietotne ir atslēgta, atšifrējiet visus jūsu failus" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Pieslēgšanās parole" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Atšifrēt visus failus" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 18c16618b6..c3b629b818 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testa konfigurācija" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Palīdzība" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 9cc2a9ee06..3025b02820 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -41,7 +42,7 @@ msgstr "" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Базата е надградена" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." @@ -49,52 +50,13 @@ msgstr "" #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Кешот е надграден" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." 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 "%s ID не беше доставено." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Грешка при додавање %s во омилени." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Не е одбрана категорија за бришење." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Грешка при бришење на %s од омилени." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -105,7 +67,7 @@ msgstr "" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Невалидна фотографија" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -195,55 +157,55 @@ msgstr "Декември" msgid "Settings" msgstr "Подесувања" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "денеска" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "вчера" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "минатиот месец" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "пред месеци" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "минатата година" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "пред години" @@ -297,49 +259,33 @@ msgstr "Откажи" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Продолжи" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(сите одбрани)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} одбраните)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Не е специфициран типот на објект." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Грешка" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Името на апликацијата не е специфицирано." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Задолжителната датотека {file} не е инсталирана!" +msgstr "Грешка при вчитување на датотеката, шаблонот постои " #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "Споделен" #: js/share.js:90 msgid "Share" msgstr "Сподели" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Грешка" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -378,7 +324,7 @@ msgstr "Лозинка" #: js/share.js:199 msgid "Allow Public Upload" -msgstr "" +msgstr "Дозволи јавен аплоуд" #: js/share.js:203 msgid "Email link to person" @@ -418,7 +364,7 @@ msgstr "Не споделувај" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "извести го корисникот преку електронска пошта" #: js/share.js:361 msgid "can edit" @@ -468,21 +414,49 @@ msgstr "Е-порака пратена" msgid "Warning" msgstr "Предупредување" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Не е специфициран типот на објект." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Избриши" + +#: js/tags.js:31 +msgid "Add" +msgstr "Додади" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Надградбата беше неуспешна. Ве молиме пријавете го овој проблем на ownCloud community." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Надградбата беше успешна. Веднаш ве префрлам на вашиот ownCloud." #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s ресетирање на лозинката" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -518,7 +492,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Да, јас сега навистина сакам да ја поништам својата лозинка" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -548,7 +522,7 @@ msgstr "Лично" msgid "Users" msgstr "Корисници" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:109 msgid "Apps" msgstr "Аппликации" @@ -560,6 +534,34 @@ msgstr "Админ" msgid "Help" msgstr "Помош" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Забранет пристап" @@ -576,26 +578,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Здраво,\n\nСамо да ве известам дека %s shared %s with you.\nView it: %s\n\n" #: templates/altmail.php:4 #, php-format msgid "" "The share will expire on %s.\n" "\n" -msgstr "" +msgstr "Споделувањето ќе заврши на %s.\n\n" #: templates/altmail.php:6 templates/mail.php:19 msgid "Cheers!" -msgstr "" - -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Уреди категории" - -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Додади" +msgstr "Поздрав!" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -604,7 +598,7 @@ msgstr "Безбедносно предупредување" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Вашата верзија на PHP е ранлива на NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:26 #, php-format @@ -627,7 +621,7 @@ msgstr "Без сигурен генератор на случајни брое msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Вашиот директориум со податоци и датотеки се веројатно достапни преку интенернт поради што .htaccess датотеката не функционира." #: templates/installation.php:41 #, php-format @@ -684,14 +678,14 @@ msgstr "Заврши го подесувањето" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "Завршувам ..." -#: templates/layout.user.php:41 +#: templates/layout.user.php:42 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:69 +#: templates/layout.user.php:70 msgid "Log out" msgstr "Одјава" @@ -715,7 +709,7 @@ msgstr "" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Ве молиме контактирајте го вашиот администратор." #: templates/login.php:38 msgid "Lost your password?" @@ -731,7 +725,7 @@ msgstr "Најава" #: templates/login.php:52 msgid "Alternative Logins" -msgstr "" +msgstr "Алтернативни најавувања" #: templates/mail.php:15 #, php-format @@ -748,4 +742,4 @@ msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Надградбата на ownCloud на верзијата %s, може да потрае." diff --git a/l10n/mk/files.po b/l10n/mk/files.po index afd9ab3b46..edc9c5788b 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "Неуспеав да запишам на диск" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "Датотеки" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Адресата неможе да биде празна." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Грешка" @@ -131,11 +131,11 @@ msgstr "Сподели" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Чека" @@ -163,13 +163,13 @@ msgstr "заменета {new_name} со {old_name}" msgid "undo" msgstr "врати" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,7 +179,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Име" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Големина" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Променето" @@ -253,7 +253,7 @@ msgstr "Променето" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Подигни" @@ -289,65 +289,65 @@ msgstr "Максимална големина за внес на ZIP датот msgid "Save" msgstr "Сними" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ново" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Текстуална датотека" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Папка" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Од врска" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Тука нема ништо. Снимете нешто!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Преземи" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Не споделувај" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Избриши" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Фајлот кој се вчитува е преголем" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Се скенираат датотеки, ве молам почекајте." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Моментално скенирам" diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index cc367d9bbf..4ba0810f3e 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Енкрипција" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 1199ac0352..6c42294653 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 97b8547bc7..1c77aa4371 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Лозинка" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Прати" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ја сподели папката %s со Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ја сподели датотеката %s со Вас" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Преземи" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Подигни" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Нема достапно преглед за" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 7e028cbe6f..00dc438d7c 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Грешка" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Име" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Име" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Избриши" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 8b7a7df882..cc59cb6e64 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-08 07:21-0400\n" +"PO-Revision-Date: 2013-10-07 21:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -63,7 +63,7 @@ msgstr "" #: private/avatar.php:69 msgid "Invalid image" -msgstr "" +msgstr "Невалидна фотографија" #: private/defaults.php:36 msgid "web services under your control" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 17598ec848..42844875cd 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: miroj \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,11 +29,11 @@ msgstr "Грешка во автентикација" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Вашето прикажано име се промени." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "" +msgstr "Не можам да го сменам прикажанато име" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -82,7 +83,7 @@ msgstr "Неможе да избришам корисник од група %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "Не можам да ја надградам апликацијата." #: changepassword/controller.php:20 msgid "Wrong password" @@ -115,7 +116,7 @@ msgstr "" #: js/apps.js:43 msgid "Update to {appversion}" -msgstr "" +msgstr "Надгради на {appversion}" #: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" @@ -127,7 +128,7 @@ msgstr "Овозможи" #: js/apps.js:71 msgid "Please wait...." -msgstr "" +msgstr "Ве молам почекајте ..." #: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" @@ -139,11 +140,11 @@ msgstr "" #: js/apps.js:125 msgid "Updating...." -msgstr "" +msgstr "Надградувам ..." #: js/apps.js:128 msgid "Error while updating app" -msgstr "" +msgstr "Грешка додека ја надградувам апликацијата" #: js/apps.js:128 msgid "Error" @@ -155,23 +156,23 @@ msgstr "Ажурирај" #: js/apps.js:132 msgid "Updated" -msgstr "" +msgstr "Надграден" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Снимам..." #: js/users.js:47 msgid "deleted" -msgstr "" +msgstr "избришан" #: js/users.js:47 msgid "undo" @@ -179,36 +180,36 @@ msgstr "врати" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "Не можам да го одстранам корисникот" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Групи" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Администратор на група" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Избриши" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" -msgstr "" - -#: js/users.js:436 -msgid "A valid username must be provided" -msgstr "" - -#: js/users.js:437 js/users.js:443 js/users.js:458 -msgid "Error creating user" -msgstr "" +msgstr "додади група" #: js/users.js:442 +msgid "A valid username must be provided" +msgstr "Мора да се обезбеди валидно корисничко име " + +#: js/users.js:443 js/users.js:449 js/users.js:464 +msgid "Error creating user" +msgstr "Грешка при креирање на корисникот" + +#: js/users.js:448 msgid "A valid password must be provided" -msgstr "" +msgstr "Мора да се обезбеди валидна лозинка" #: personal.php:45 personal.php:46 msgid "__language_name__" @@ -229,7 +230,7 @@ msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "Предупредување при подесување" #: templates/admin.php:32 msgid "" @@ -384,11 +385,11 @@ msgstr "Повеќе" msgid "Less" msgstr "Помалку" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Верзија" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Енкрипција" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 63b1000bf6..fa9398edec 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Помош" diff --git a/l10n/mk/user_webdavauth.po b/l10n/mk/user_webdavauth.po index 0de649364a..613044a3e8 100644 --- a/l10n/mk/user_webdavauth.po +++ b/l10n/mk/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # Georgi Stanojevski , 2012 +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-07 20:10+0000\n" +"Last-Translator: miroj \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Адреса:" #: templates/settings.php:7 msgid "" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index dc3821669e..a625898b87 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ml_IN/files_sharing.po b/l10n/ml_IN/files_sharing.po index 088c381190..0924709dcb 100644 --- a/l10n/ml_IN/files_sharing.po +++ b/l10n/ml_IN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ml_IN/files_trashbin.po b/l10n/ml_IN/files_trashbin.po index 42c24ca642..f75561f852 100644 --- a/l10n/ml_IN/files_trashbin.po +++ b/l10n/ml_IN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ml_IN/user_ldap.po b/l10n/ml_IN/user_ldap.po index a7b06da528..c96aa269c6 100644 --- a/l10n/ml_IN/user_ldap.po +++ b/l10n/ml_IN/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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index b631d3e90b..bedc5fa9d3 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "Tiada kategori untuk di tambah?" - -#: 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 "Tiada kategori dipilih untuk dibuang." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,51 +156,51 @@ msgstr "Disember" msgid "Settings" msgstr "Tetapan" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -306,27 +267,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Ralat" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -335,6 +275,11 @@ msgstr "" msgid "Share" msgstr "Kongsi" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Ralat" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -463,6 +408,34 @@ msgstr "" msgid "Warning" msgstr "Amaran" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Padam" + +#: js/tags.js:31 +msgid "Add" +msgstr "Tambah" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "Gagal untuk disimpan" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "Fail-fail" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Ralat" @@ -131,11 +131,11 @@ msgstr "Kongsi" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Dalam proses" @@ -163,12 +163,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -177,7 +177,7 @@ msgstr[0] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -223,25 +223,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nama" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Saiz" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Dimodifikasi" @@ -250,7 +250,7 @@ msgstr "Dimodifikasi" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Muat naik" @@ -286,65 +286,65 @@ msgstr "Saiz maksimum input untuk fail ZIP" msgid "Save" msgstr "Simpan" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Baru" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Fail teks" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Folder" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Muat turun" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Padam" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Muatnaik terlalu besar" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 419dc03f39..fa779dacb0 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 6e6ba55ae7..2609fcf44b 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 67cf9aabfb..88f8f2364d 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Kata laluan" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Hantar" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Muat turun" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Muat naik" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index f65679fc8e..35f781ee9f 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Ralat" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nama" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nama" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Padam" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 508a73832a..e80eb7cf13 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "Kemaskini" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Simpan..." @@ -181,32 +181,32 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Kumpulan" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Padam" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "Lanjutan" msgid "Less" msgstr "" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 2a6f3630a0..0b1daaf6b6 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Bantuan" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 5c25e31a1b..ad9f32b13a 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -306,27 +267,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -335,6 +275,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -463,6 +408,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "ပေါင်းထည့်" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 6b5c6c9769..90a3148373 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "စကားဝှက်" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "ထည့်သွင်းမည်" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index 0611fe45b5..dee62ffcf4 100644 --- a/l10n/my_MM/files_trashbin.po +++ b/l10n/my_MM/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -27,41 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index b68d9912df..31381520c3 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "အကူအညီ" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 0710f65509..8fe6767cd2 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -57,45 +57,6 @@ msgstr "" msgid "... %d%% done ..." 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 "Ingen kategorier å legge til?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Denne kategorien finnes allerede: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: 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 "Ingen kategorier merket for sletting." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -196,55 +157,55 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillinger" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "i dag" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "i går" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "forrige måned" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "måneder siden" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "forrige år" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "år siden" @@ -312,27 +273,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Feil" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Delt" @@ -341,6 +281,11 @@ msgstr "Delt" msgid "Share" msgstr "Del" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Feil" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Feil under deling" @@ -469,6 +414,34 @@ msgstr "E-post sendt" msgid "Warning" msgstr "Advarsel" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Slett" + +#: js/tags.js:31 +msgid "Add" +msgstr "Legg til" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -77,15 +77,15 @@ msgstr "Klarte ikke å skrive til disk" msgid "Not enough storage available" msgstr "Ikke nok lagringsplass" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Ugyldig katalog." @@ -93,36 +93,36 @@ msgstr "Ugyldig katalog." msgid "Files" msgstr "Filer" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Ikke nok lagringsplass" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL-en kan ikke være tom." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Feil" @@ -134,11 +134,11 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slett permanent" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Gi nytt navn" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Ventende" @@ -166,13 +166,13 @@ msgstr "erstattet {new_name} med {old_name}" msgid "undo" msgstr "angre" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" @@ -182,7 +182,7 @@ msgstr[1] "%n filer" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laster opp %n fil" @@ -229,25 +229,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Navn" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Størrelse" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Endret" @@ -256,7 +256,7 @@ msgstr "Endret" msgid "%s could not be renamed" msgstr "Kunne ikke gi nytt navn til %s" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Last opp" @@ -292,65 +292,65 @@ msgstr "Maksimal størrelse på ZIP-filer" msgid "Save" msgstr "Lagre" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ny" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Tekstfil" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Mappe" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Fra link" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Slettet filer" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Du har ikke skrivetilgang her." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Last ned" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Avslutt deling" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Slett" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Filen er for stor" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å laste opp er for store for å laste opp til denne serveren." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Skanner filer, vennligst vent." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index 3cc1c898bf..216d616ae7 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Kryptering" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 7dfb2d030b..b306724cab 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 02cbd3e982..16310526a9 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Passordet er feil. Prøv på nytt." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Send inn" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med deg" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med deg" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Last ned" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Last opp" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgjengelig for" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index a46fbd4272..31ca6bd930 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -28,55 +28,31 @@ msgstr "Kunne ikke slette %s fullstendig" msgid "Couldn't restore %s" msgstr "Kunne ikke gjenopprette %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "utfør gjenopprettings operasjon" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Feil" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "slett filer permanent" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Slett permanent" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Navn" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Slettet" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n mapper" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n filer" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting her. Søppelkassen din er tom!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Navn" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Slettet" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Slett" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 16c200dffe..ed169b9b76 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -159,15 +159,15 @@ msgstr "Oppdater" msgid "Updated" msgstr "Oppdatert" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Lagrer..." @@ -183,32 +183,32 @@ msgstr "angre" msgid "Unable to remove user" msgstr "Kunne ikke slette bruker" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupper" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppeadministrator" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Slett" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "legg til gruppe" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Oppgi et gyldig brukernavn" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Feil ved oppretting av bruker" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Oppgi et gyldig passord" @@ -386,11 +386,11 @@ msgstr "Mer" msgid "Less" msgstr "Mindre" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versjon" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Bruk denne adressen for å få tilgang til filene dine via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Kryptering" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 6eb013d0b1..b97beddde9 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hjelp" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 7fa6ab1c0b..954379b3c5 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index 8f745e77bb..a6f34cb330 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ne/files_trashbin.po b/l10n/ne/files_trashbin.po index 06099b3a41..d733415ed4 100644 --- a/l10n/ne/files_trashbin.po +++ b/l10n/ne/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ne/user_ldap.po b/l10n/ne/user_ldap.po index 823ea6ee1a..4c9595f78f 100644 --- a/l10n/ne/user_ldap.po +++ b/l10n/ne/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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 515299619c..a8e3b835e5 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "%s deelde »%s« met jou" #: ajax/share.php:168 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Kon geen e-mail sturen aan de volgende gebruikers: %s" #: ajax/share.php:327 msgid "group" @@ -59,45 +59,6 @@ msgstr "Bestandscache bijgewerkt" msgid "... %d%% done ..." msgstr "... %d%% gereed ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Categorie type niet opgegeven." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Geen categorie om toe te voegen?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Deze categorie bestaat al: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Object type niet opgegeven." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID niet opgegeven." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Toevoegen van %s aan favorieten is mislukt." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Geen categorie geselecteerd voor verwijdering." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Verwijderen %s van favorieten is mislukt." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Geen afbeelding of bestand opgegeven" @@ -198,55 +159,55 @@ msgstr "december" msgid "Settings" msgstr "Instellingen" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuten geleden" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n uur geleden" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "vandaag" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "gisteren" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagen geleden" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "vorige maand" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n maanden geleden" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "vorig jaar" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "jaar geleden" @@ -277,22 +238,22 @@ msgstr "Fout bij laden berichtensjabloon: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} bestandsconflict" +msgstr[1] "{count} bestandsconflicten" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Een bestandsconflict" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Welke bestanden wilt u bewaren?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Als u beide versies selecteerde, zal het gekopieerde bestand een nummer aan de naam toegevoegd krijgen." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -300,40 +261,19 @@ msgstr "Annuleer" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Verder" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(alles geselecteerd)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} geselecteerd)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -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 "Het object type is niet gespecificeerd." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Fout" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "De app naam is niet gespecificeerd." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Het vereiste bestand {file} is niet geïnstalleerd!" +msgstr "Fout bij laden bestand bestaat al sjabloon" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -343,6 +283,11 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Fout" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -421,7 +366,7 @@ msgstr "Stop met delen" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "Gebruiker via e-mail notificeren" #: js/share.js:361 msgid "can edit" @@ -471,6 +416,34 @@ msgstr "E-mail verzonden" msgid "Warning" msgstr "Waarschuwing" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Het object type is niet gespecificeerd." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Verwijder" + +#: js/tags.js:31 +msgid "Add" +msgstr "Toevoegen" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the
    just letting you know that %s shared »%s« with you.
    View it!

    " -msgstr "" +msgstr "Hallo daar,

    even een berichtje dat %s »%s« met u deelde.
    Bekijk hier!

    " #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.

    " -msgstr "" +msgstr "Het delen stopt op %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 6e300827bb..c8abec7ed6 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: André Koot \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" @@ -76,15 +76,15 @@ msgstr "Schrijven naar schijf mislukt" msgid "Not enough storage available" msgstr "Niet genoeg opslagruimte beschikbaar" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Upload mislukt, Kon geen bestandsinfo krijgen." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Upload mislukt. Kon ge-uploade bestand niet vinden" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Ongeldige directory." @@ -92,36 +92,36 @@ msgstr "Ongeldige directory." msgid "Files" msgstr "Bestanden" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Kan {filename} niet uploaden omdat het een map is of 0 bytes groot is" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Niet genoeg ruimte beschikbaar" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." -msgstr "" +msgstr "Kon het resultaat van de server niet terugkrijgen." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL kan niet leeg zijn." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ongeldige mapnaam. Gebruik van 'Gedeeld' is voorbehouden aan Owncloud zelf" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Fout" @@ -133,11 +133,11 @@ msgstr "Delen" msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "In behandeling" @@ -165,13 +165,13 @@ msgstr "verving {new_name} met {old_name}" msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mappen" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -181,7 +181,7 @@ msgstr[1] "%n bestanden" msgid "{dirs} and {files}" msgstr "{dirs} en {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n bestand aan het uploaden" @@ -213,14 +213,14 @@ msgstr "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Crypto app is geactiveerd, maar uw sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in." #: js/files.js:72 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Ongeldige privésleutel voor crypto app. Werk het privésleutel wachtwoord bij in uw persoonlijke instellingen om opnieuw toegang te krijgen tot uw versleutelde bestanden." #: js/files.js:76 msgid "" @@ -228,25 +228,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Encryptie is uitgeschakeld maar uw bestanden zijn nog steeds versleuteld. Ga naar uw persoonlijke instellingen om uw bestanden te decoderen." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" -msgstr "" +msgstr "Fout bij verplaatsen bestand" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Naam" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Grootte" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Aangepast" @@ -255,7 +255,7 @@ msgstr "Aangepast" msgid "%s could not be renamed" msgstr "%s kon niet worden hernoemd" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Uploaden" @@ -291,65 +291,65 @@ msgstr "Maximale grootte voor ZIP bestanden" msgid "Save" msgstr "Bewaren" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nieuw" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Tekstbestand" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Map" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Vanaf link" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Verwijderde bestanden" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "U hebt hier geen schrijfpermissies." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Downloaden" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Stop met delen" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Verwijder" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Upload is te groot" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index cf8ef83024..f78cf6d003 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -55,14 +55,14 @@ msgid "" "correct." msgstr "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Crypto app niet geïnitialiseerd. Misschien werd de crypto app geheractiveerd tijdens de sessie. Log uit en log daarna opnieuw in om de crypto app te initialiseren." -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -70,6 +70,18 @@ msgid "" "files." msgstr "Uw privésleutel is niet geldig! Misschien was uw wachtwoord van buitenaf gewijzigd. U kunt het wachtwoord van uw privésleutel aanpassen in uw persoonlijke instellingen om toegang tot uw versleutelde bestanden te vergaren." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Missende benodigdheden." @@ -81,7 +93,7 @@ msgid "" " the encryption app has been disabled." msgstr "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "De volgende gebruikers hebben geen configuratie voor encryptie:" @@ -91,97 +103,97 @@ msgstr "Opslaan" #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Ga meteen naar uw" #: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "persoonlijke instellingen" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Versleuteling" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Activeren herstelsleutel (maakt het mogelijk om gebruikersbestanden terug te halen in geval van verlies van het wachtwoord):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Wachtwoord herstelsleulel" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Herhaal het herstelsleutel wachtwoord" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Geactiveerd" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Gedeactiveerd" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Wijzig wachtwoord herstelsleutel:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Oude wachtwoord herstelsleutel" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nieuwe wachtwoord herstelsleutel" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Herhaal het nieuwe herstelsleutel wachtwoord" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Wijzigen wachtwoord" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Het wachtwoord van uw privésleutel komt niet meer overeen met uw inlogwachtwoord:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Stel het wachtwoord van uw oude privésleutel in op uw huidige inlogwachtwoord." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Als u uw oude wachtwoord niet meer weet, kunt u uw beheerder vragen uw bestanden terug te halen." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Oude wachtwoord" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Huidige wachtwoord" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Bijwerken wachtwoord Privésleutel" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Activeren wachtwoord herstel:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Het activeren van deze optie maakt het mogelijk om uw versleutelde bestanden te benaderen als uw wachtwoord kwijt is" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Bestandsherstel instellingen bijgewerkt" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Kon bestandsherstel niet bijwerken" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 13bbe8de98..7edc016c6e 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 1acf14b329..0dbdacc777 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Len \n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-11 07:30+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Deze share is met een wachtwoord beveiligd" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Wachtwoord ongeldig. Probeer het nogmaals." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Wachtwoord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Verzenden" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Sorry, deze link lijkt niet meer in gebruik te zijn." @@ -55,28 +55,28 @@ msgstr "delen is uitgeschakeld" msgid "For more info, please ask the person who sent this link." msgstr "Voor meer informatie, neem contact op met de persoon die u deze link heeft gestuurd." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deelt de map %s met u" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt het bestand %s met u" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Downloaden" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Uploaden" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 83e0e68db8..74c4475eec 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Kon %s niet permanent verwijderen" msgid "Couldn't restore %s" msgstr "Kon %s niet herstellen" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "uitvoeren restore operatie" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fout" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "verwijder bestanden definitief" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Verwijder definitief" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Naam" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Verwijderd" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n map" -msgstr[1] "%n mappen" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n bestand" -msgstr[1] "%n bestanden" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "hersteld" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Niets te vinden. Uw prullenbak is leeg!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Naam" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Herstellen" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Verwijderd" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Verwijder" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index e80090a74f..a6effcb024 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: André Koot \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" @@ -90,32 +90,32 @@ msgstr "Kon de app niet bijwerken." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Onjuist wachtwoord" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Geen gebruiker opgegeven" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Voer een beheerdersherstelwachtwoord in, anders zullen alle gebruikersgegevens verloren gaan" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Onjuist beheerdersherstelwachtwoord. Controleer het wachtwoord en probeer het opnieuw." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "De Back-end ondersteunt geen wachtwoordwijzigingen, maar de cryptosleutel van de gebruiker is succesvol bijgewerkt." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Kan wachtwoord niet wijzigen" #: js/apps.js:43 msgid "Update to {appversion}" @@ -161,15 +161,15 @@ msgstr "Bijwerken" msgid "Updated" msgstr "Bijgewerkt" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Kies een profielafbeelding" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Bestanden worden gedecodeerd... Even geduld alstublieft, dit kan even duren." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Opslaan" @@ -185,32 +185,32 @@ msgstr "ongedaan maken" msgid "Unable to remove user" msgstr "Kon gebruiker niet verwijderen" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Groepen" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Groep beheerder" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Verwijder" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "toevoegen groep" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Er moet een geldige gebruikersnaam worden opgegeven" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Fout bij aanmaken gebruiker" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" @@ -346,11 +346,11 @@ msgstr "Instellen dat gebruikers alleen met leden binnen hun groepen delen" #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Toestaan e-mailnotificaties" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" #: templates/admin.php:178 msgid "Security" @@ -388,11 +388,11 @@ msgstr "Meer" msgid "Less" msgstr "Minder" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versie" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Gebruik dit adres toegang tot uw bestanden via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Versleuteling" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "De encryptie-appplicatie is niet meer aanwezig, decodeer al uw bestanden" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Inlog-wachtwoord" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Decodeer alle bestanden" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 6c69b504f8..bd9058b32d 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: kwillems \n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-11 07:10+0000\n" +"Last-Translator: André Koot \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" @@ -371,14 +371,18 @@ msgid "" msgstr "Standaard herkent ownCloud het UUID-attribuut automatisch. Het UUID attribuut wordt gebruikt om LDAP-gebruikers en -groepen uniek te identificeren. Ook zal de interne gebruikersnaam worden aangemaakt op basis van het UUID, tenzij deze hierboven anders is aangegeven. U kunt de instelling overschrijven en zelf een waarde voor het attribuut opgeven. U moet ervoor zorgen dat het ingestelde attribuut kan worden opgehaald voor zowel gebruikers als groepen en dat het uniek is. Laat het leeg voor standaard gedrag. Veranderingen worden alleen doorgevoerd op nieuw gekoppelde (toegevoegde) LDAP-gebruikers en-groepen." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID Attribuut:" +msgid "UUID Attribute for Users:" +msgstr "UUID attribuut voor gebruikers:" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "UUID attribuut voor groepen:" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Gebruikersnaam-LDAP gebruikers vertaling" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -392,18 +396,18 @@ msgid "" "experimental stage." msgstr "ownCloud maakt gebruik van gebruikersnamen om (meta) data op te slaan en toe te wijzen. Om gebruikers uniek te identificeren, krijgt elke LDAP-gebruiker ook een interne gebruikersnaam. Dit vereist een koppeling van de ownCloud gebruikersnaam aan een ​​LDAP-gebruiker. De gecreëerde gebruikersnaam is gekoppeld aan de UUID van de LDAP-gebruiker. Aanvullend wordt ook de 'DN' gecached om het aantal LDAP-interacties te verminderen, maar dit wordt niet gebruikt voor identificatie. Als de DN verandert, zullen de veranderingen worden gevonden. De interne naam wordt overal gebruikt. Het wissen van de koppeling zal overal resten achterlaten. Het wissen van koppelingen is niet configuratiegevoelig, maar het raakt wel alle LDAP instellingen! Zorg ervoor dat deze koppelingen nooit in een productieomgeving gewist worden. Maak ze alleen leeg in een test- of ontwikkelomgeving." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Leegmaken Gebruikersnaam-LDAP gebruikers vertaling" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Leegmaken Groepsnaam-LDAP groep vertaling" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Test configuratie" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Help" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index bc6f9b3cc8..021c53fba1 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -59,45 +59,6 @@ msgstr "Mellomlager oppdatert" msgid "... %d%% done ..." msgstr "… %d %% ferdig …" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Ingen kategoritype." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ingen kategori å leggja til?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Denne kategorien finst alt: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Ingen objekttype." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Ingen %s-ID." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Klarte ikkje leggja til %s i favorittar." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Ingen kategoriar valt for sletting." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Klarte ikkje fjerna %s frå favorittar." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Inga bilete eller fil gitt" @@ -198,55 +159,55 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillingar" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt sidan" msgstr[1] "%n minutt sidan" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time sidan" msgstr[1] "%n timar sidan" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "i dag" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "i går" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sidan" msgstr[1] "%n dagar sidan" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "førre månad" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sidan" msgstr[1] "%n månadar sidan" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "i fjor" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "år sidan" @@ -314,27 +275,6 @@ msgstr "({count} valte)" msgid "Error loading file exists template" msgstr "Klarte ikkje å lasta fil-finst-mal" -#: 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 "Objekttypen er ikkje spesifisert." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Feil" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Programnamnet er ikkje spesifisert." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Den kravde fila {file} er ikkje installert!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Delt" @@ -343,6 +283,11 @@ msgstr "Delt" msgid "Share" msgstr "Del" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Feil" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Feil ved deling" @@ -471,6 +416,34 @@ msgstr "E-post sendt" msgid "Warning" msgstr "Åtvaring" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Objekttypen er ikkje spesifisert." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Slett" + +#: js/tags.js:31 +msgid "Add" +msgstr "Legg til" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -77,15 +77,15 @@ msgstr "Klarte ikkje skriva til disk" msgid "Not enough storage available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Feil ved opplasting. Klarte ikkje å henta filinfo." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Feil ved opplasting. Klarte ikkje å finna opplasta fil." -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -93,36 +93,36 @@ msgstr "Ugyldig mappe." msgid "Files" msgstr "Filer" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Klarte ikkje å lasta opp {filename} sidan det er ei mappe eller er 0 byte." -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Opplasting avbroten." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Klarte ikkje å henta resultat frå tenaren." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fila lastar no opp. Viss du forlèt sida no vil opplastinga verta avbroten." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Nettadressa kan ikkje vera tom." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ugyldig mappenamn. Mappa «Shared» er reservert av ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Feil" @@ -134,11 +134,11 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slett for godt" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Under vegs" @@ -166,13 +166,13 @@ msgstr "bytte ut {new_name} med {old_name}" msgid "undo" msgstr "angre" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" @@ -182,7 +182,7 @@ msgstr[1] "%n filer" msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lastar opp %n fil" @@ -229,25 +229,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Kryptering er skrudd av, men filene dine er enno krypterte. Du kan dekryptera filene i personlege innstillingar." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Feil ved flytting av fil" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Namn" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Storleik" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Endra" @@ -256,7 +256,7 @@ msgstr "Endra" msgid "%s could not be renamed" msgstr "Klarte ikkje å omdøypa på %s" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Last opp" @@ -292,65 +292,65 @@ msgstr "Maksimal storleik for ZIP-filer" msgid "Save" msgstr "Lagre" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ny" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Tekst fil" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Mappe" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Frå lenkje" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Sletta filer" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Du har ikkje skriverettar her." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Last ned" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Udel" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Slett" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "For stor opplasting" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å lasta opp er større enn maksgrensa til denne tenaren." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Skannar filer, ver venleg og vent." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Køyrande skanning" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index 70e3dcdd71..238694b0a6 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Kryptering" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index f8aa9c9233..eef23a8504 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 4b5c1c4d3a..830be08d65 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: unhammer \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Passordet er gale. Prøv igjen." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Send" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Orsak, denne lenkja fungerer visst ikkje lenger." @@ -54,28 +54,28 @@ msgstr "deling er slått av" msgid "For more info, please ask the person who sent this link." msgstr "Spør den som sende deg lenkje om du vil ha meir informasjon." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappa %s med deg" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte fila %s med deg" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Last ned" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Last opp" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Inga førehandsvising tilgjengeleg for" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 66efc5fddc..9ef3981a29 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: unhammer \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,55 +29,31 @@ msgstr "Klarte ikkje sletta %s for godt" msgid "Couldn't restore %s" msgstr "Klarte ikkje gjenoppretta %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "utfør gjenoppretting" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Feil" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "slett fila for godt" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Slett for godt" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Namn" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Sletta" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n mappe" -msgstr[1] "%n mapper" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fil" -msgstr[1] "%n filer" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "gjenoppretta" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting her. Papirkorga di er tom!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Namn" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Sletta" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Slett" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 5d6356c385..6fad80c6fa 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -160,15 +160,15 @@ msgstr "Oppdater" msgid "Updated" msgstr "Oppdatert" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Vel eit profilbilete" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrypterer filer … Ver venleg og vent, dette kan ta ei stund." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Lagrar …" @@ -184,32 +184,32 @@ msgstr "angra" msgid "Unable to remove user" msgstr "Klarte ikkje fjerna brukaren" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupper" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppestyrar" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Slett" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "legg til gruppe" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Du må oppgje eit gyldig brukarnamn" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Feil ved oppretting av brukar" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Du må oppgje eit gyldig passord" @@ -387,11 +387,11 @@ msgstr "Meir" msgid "Less" msgstr "Mindre" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Bruk denne adressa for å henta filene dine over WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Kryptering" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Krypteringsprogrammet er ikkje lenger slått på, dekrypter alle filene dine" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Innloggingspassord" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Dekrypter alle filene" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 66ed7b6861..3f81d3a16a 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hjelp" diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index 7eec2a16a1..a5c18d50ee 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -306,27 +267,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -335,6 +275,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -463,6 +408,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/nqo/files_sharing.po b/l10n/nqo/files_sharing.po index 8c548248cf..b85ec335e2 100644 --- a/l10n/nqo/files_sharing.po +++ b/l10n/nqo/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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:28+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/nqo/files_trashbin.po b/l10n/nqo/files_trashbin.po index 8c737c0b75..69ea00584d 100644 --- a/l10n/nqo/files_trashbin.po +++ b/l10n/nqo/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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:28+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -27,41 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/nqo/user_ldap.po b/l10n/nqo/user_ldap.po index d377705d79..e95cc82f5d 100644 --- a/l10n/nqo/user_ldap.po +++ b/l10n/nqo/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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:28+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index d30c1296b4..7069c5425a 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "Pas de categoria d'ajustar ?" - -#: 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 "Pas de categorias seleccionadas per escafar." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,55 +156,55 @@ msgstr "Decembre" msgid "Settings" msgstr "Configuracion" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "uèi" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "ièr" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "mes passat" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "meses a" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "an passat" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "ans a" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Error" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "Parteja" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Error" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error al partejar" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Escafa" + +#: js/tags.js:31 +msgid "Add" +msgstr "Ajusta" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "L'escriptura sul disc a fracassat" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "Fichièrs" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Error" @@ -131,11 +131,11 @@ msgstr "Parteja" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Al esperar" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "defar" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,7 +179,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nom" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Talha" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modificat" @@ -253,7 +253,7 @@ msgstr "Modificat" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Amontcarga" @@ -289,65 +289,65 @@ msgstr "Talha maximum de dintrada per fichièrs ZIP" msgid "Save" msgstr "Enregistra" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nòu" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Fichièr de tèxte" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Dorsièr" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Pas partejador" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Escafa" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Amontcargament tròp gròs" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index bd86a56e3b..ccc3a21087 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 92b8705326..b00af63f4b 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index a94307e4bf..50f000cd08 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Senhal" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Sosmetre" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Avalcarga" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Amontcarga" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 6ac8f8fe28..0379fc2ecf 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nom" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nom" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Escafa" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 96dcb1d5e0..7b9721707f 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Enregistra..." @@ -181,32 +181,32 @@ msgstr "defar" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grops" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grop Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Escafa" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "Mai d'aquò" msgid "Less" msgstr "" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index d5c42bcf74..6a0fe02297 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ajuda" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index fb84b14f27..22e7e77f9a 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -57,45 +57,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -196,55 +157,55 @@ msgstr "ਦਸੰਬਰ" msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "ਅੱਜ" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "ਮਹੀਨੇ ਪਹਿਲਾਂ" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" @@ -312,27 +273,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "ਗਲ" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -341,6 +281,11 @@ msgstr "" msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "ਗਲ" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -469,6 +414,34 @@ msgstr "" msgid "Warning" msgstr "ਚੇਤਾਵਨੀ" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "ਹਟਾਓ" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "ਫਾਇਲਾਂ" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "ਗਲਤੀ" @@ -131,11 +131,11 @@ msgstr "ਸਾਂਝਾ ਕਰੋ" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "ਨਾਂ ਬਦਲੋ" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "ਵਾਪਸ" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,7 +179,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "" @@ -253,7 +253,7 @@ msgstr "" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "ਅੱਪਲੋਡ" @@ -289,65 +289,65 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "ਡਾਊਨਲੋਡ" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "ਹਟਾਓ" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "" diff --git a/l10n/pa/files_encryption.po b/l10n/pa/files_encryption.po index 05e365c81e..4750385bd1 100644 --- a/l10n/pa/files_encryption.po +++ b/l10n/pa/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/pa/files_external.po b/l10n/pa/files_external.po index 9e513d0cc4..cf7cbd0906 100644 --- a/l10n/pa/files_external.po +++ b/l10n/pa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/files_sharing.po b/l10n/pa/files_sharing.po index 5857f609be..1a46db8eb3 100644 --- a/l10n/pa/files_sharing.po +++ b/l10n/pa/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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:20+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "ਪਾਸਵਰ" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "ਡਾਊਨਲੋਡ" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "ਅੱਪਲੋਡ" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/pa/files_trashbin.po b/l10n/pa/files_trashbin.po index 2d8b4c38b7..c5abc19fde 100644 --- a/l10n/pa/files_trashbin.po +++ b/l10n/pa/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "ਗਲਤੀ" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ਹਟਾਓ" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 54ca3537c3..5d39008bc7 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -158,15 +158,15 @@ msgstr "" msgid "Updated" msgstr "ਅੱਪਡੇਟ ਕੀਤਾ" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" @@ -182,32 +182,32 @@ msgstr "ਵਾਪਸ" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "ਗਰੁੱਪ" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "ਗਰੁੱਪ ਐਡਮਿਨ" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "ਹਟਾਓ" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "ਗਰੁੱਪ ਸ਼ਾਮਲ" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -385,11 +385,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/pa/user_ldap.po b/l10n/pa/user_ldap.po index ca4f0b3e2c..28501d8f8e 100644 --- a/l10n/pa/user_ldap.po +++ b/l10n/pa/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index fe247fbe19..b4181d21ff 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -58,48 +58,9 @@ msgstr "Zaktualizuj filecache" msgid "... %d%% done ..." msgstr "... %d%% udane ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Nie podano typu kategorii." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Brak kategorii do dodania?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Ta kategoria już istnieje: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Nie podano typu obiektu." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Nie podano ID %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Błąd podczas dodawania %s do ulubionych." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nie zaznaczono kategorii do usunięcia." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Błąd podczas usuwania %s z ulubionych." - #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Brak obrazu lub pliku dostarczonego" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -197,59 +158,59 @@ msgstr "Grudzień" msgid "Settings" msgstr "Ustawienia" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzine temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "dziś" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "lat temu" @@ -318,27 +279,6 @@ msgstr "({count} zaznaczonych)" msgid "Error loading file exists template" 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 "Nie określono typu obiektu." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Błąd" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nie określono nazwy aplikacji." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Wymagany plik {file} nie jest zainstalowany!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Udostępniono" @@ -347,6 +287,11 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Błąd" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -425,7 +370,7 @@ msgstr "Zatrzymaj współdzielenie" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "powiadom użytkownika przez email" #: js/share.js:361 msgid "can edit" @@ -475,6 +420,34 @@ msgstr "E-mail wysłany" msgid "Warning" msgstr "Ostrzeżenie" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Nie określono typu obiektu." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Usuń" + +#: js/tags.js:31 +msgid "Add" +msgstr "Dodaj" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the
    just letting you know that %s shared »%s« with you.
    View it!

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

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

    " #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.

    " -msgstr "" +msgstr "Udostępnienie wygaśnie w dniu %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 7249cd9900..72e19dd1db 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -77,15 +77,15 @@ msgstr "Błąd zapisu na dysk" msgid "Not enough storage available" msgstr "Za mało dostępnego miejsca" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Nieudane przesłanie. Nie można pobrać informacji o pliku." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Nieudane przesłanie. Nie można znaleźć przesyłanego pliku" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Zła ścieżka." @@ -93,36 +93,36 @@ msgstr "Zła ścieżka." msgid "Files" msgstr "Pliki" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nie można przesłać {filename} być może jest katalogiem lub posiada 0 bajtów" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Za mało miejsca" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Nie można uzyskać wyniku z serwera." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL nie może być pusty." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nieprawidłowa nazwa folderu. Wykorzystanie 'Shared' jest zarezerwowane przez ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Błąd" @@ -134,11 +134,11 @@ msgstr "Udostępnij" msgid "Delete permanently" msgstr "Trwale usuń" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Oczekujące" @@ -166,14 +166,14 @@ msgstr "zastąpiono {new_name} przez {old_name}" msgid "undo" msgstr "cofnij" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n katalog" msgstr[1] "%n katalogi" msgstr[2] "%n katalogów" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n plik" @@ -184,7 +184,7 @@ msgstr[2] "%n plików" msgid "{dirs} and {files}" msgstr "{katalogi} and {pliki}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Wysyłanie %n pliku" @@ -232,25 +232,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Szyfrowanie zostało wyłączone, ale nadal pliki są zaszyfrowane. Przejdź do ustawień osobistych i tam odszyfruj pliki." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Błąd prz przenoszeniu pliku" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nazwa" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Rozmiar" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modyfikacja" @@ -259,7 +259,7 @@ msgstr "Modyfikacja" msgid "%s could not be renamed" msgstr "%s nie można zmienić nazwy" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Wyślij" @@ -295,65 +295,65 @@ msgstr "Maksymalna wielkość pliku wejściowego ZIP " msgid "Save" msgstr "Zapisz" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nowy" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Plik tekstowy" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Folder" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Z odnośnika" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Pliki usunięte" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Nie masz uprawnień do zapisu w tym miejscu." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Pusto. Wyślij coś!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Pobierz" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Usuń" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Ładowany plik jest za duży" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index ccb7d03ca2..e21f822dd9 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -54,14 +54,14 @@ msgid "" "correct." msgstr "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Szyfrowanie aplikacja nie została zainicjowane! Może szyfrowanie aplikacji zostało ponownie włączone podczas tej sesji. Spróbuj się wylogować i zalogować ponownie aby zainicjować szyfrowanie aplikacji." -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -69,6 +69,18 @@ msgid "" "files." msgstr "Klucz prywatny nie jest ważny! Prawdopodobnie Twoje hasło zostało zmienione poza systemem ownCloud (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Brak wymagań." @@ -80,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:" @@ -90,97 +102,97 @@ msgstr "Zapisywanie..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Przejdź bezpośrednio do" #: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Ustawienia osobiste" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Szyfrowanie" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Włączhasło klucza odzyskiwania (pozwala odzyskać pliki użytkowników w przypadku utraty hasła):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Hasło klucza odzyskiwania" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Powtórz hasło klucza odzyskiwania" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Włączone" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Wyłączone" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Zmień hasło klucza odzyskiwania" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Stare hasło klucza odzyskiwania" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nowe hasło klucza odzyskiwania" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Powtórz nowe hasło klucza odzyskiwania" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Zmień hasło" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Hasło klucza prywatnego nie pasuje do hasła logowania:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Podaj swoje stare prywatne hasło aby ustawić nowe" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Jeśli nie pamiętasz swojego starego hasła, poproś swojego administratora, aby odzyskać pliki." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Stare hasło logowania" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Bieżące hasło logowania" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Aktualizacja hasła klucza prywatnego" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Włącz hasło odzyskiwania:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Włączenie tej opcji umożliwia otrzymać dostęp do zaszyfrowanych plików w przypadku utraty hasła" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Ustawienia odzyskiwania plików zmienione" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Nie można zmienić pliku odzyskiwania" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 759e4d7247..02dc6fc13b 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ 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/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Dostęp do" @@ -26,7 +26,7 @@ msgstr "Dostęp do" msgid "Error configuring Dropbox storage" msgstr "Wystąpił błąd podczas konfigurowania zasobu Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Udziel dostępu" @@ -34,24 +34,24 @@ msgstr "Udziel dostępu" msgid "Please provide a valid Dropbox app key and secret." msgstr "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Wystąpił błąd podczas konfigurowania zasobu Google Drive" -#: lib/config.php:447 +#: lib/config.php:453 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Ostrzeżenie: \"smbclient\" nie jest zainstalowany. Zamontowanie katalogów CIFS/SMB nie jest możliwe. Skontaktuj sie z administratorem w celu zainstalowania." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Ostrzeżenie: Wsparcie dla FTP w PHP nie jest zainstalowane lub włączone. Skontaktuj sie z administratorem w celu zainstalowania lub włączenia go." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 0598448aa8..c07378649d 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "To hasło jest niewłaściwe. Spróbuj ponownie." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Hasło" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Wyślij" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Przepraszamy ale wygląda na to, że ten link już nie działa." @@ -54,28 +54,28 @@ msgstr "Udostępnianie jest wyłączone" msgid "For more info, please ask the person who sent this link." msgstr "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s współdzieli folder z tobą %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s współdzieli z tobą plik %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Pobierz" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Wyślij" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Podgląd nie jest dostępny dla" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 7a774c7b78..df275473c4 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -28,57 +28,31 @@ msgstr "Nie można trwale usunąć %s" msgid "Couldn't restore %s" msgstr "Nie można przywrócić %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "wykonywanie operacji przywracania" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Błąd" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "trwale usuń plik" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Trwale usuń" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nazwa" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Usunięte" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n katalogów" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n plików" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "przywrócony" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nic tu nie ma. Twój kosz jest pusty!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nazwa" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Przywróć" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Usunięte" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Usuń" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 057209ec7d..326fff9ca3 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,15 +159,15 @@ msgstr "Aktualizuj" msgid "Updated" msgstr "Zaktualizowano" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Wybierz zdjęcie profilu" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Odszyfrowuje pliki... Proszę czekać, to może zająć jakiś czas." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Zapisywanie..." @@ -183,32 +183,32 @@ msgstr "cofnij" msgid "Unable to remove user" msgstr "Nie można usunąć użytkownika" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupy" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Administrator grupy" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Usuń" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "dodaj grupę" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Należy podać prawidłową nazwę użytkownika" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Błąd podczas tworzenia użytkownika" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" @@ -344,11 +344,11 @@ msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Pozwól na mailowe powiadomienia" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach" #: templates/admin.php:178 msgid "Security" @@ -386,11 +386,11 @@ msgstr "Więcej" msgid "Less" msgstr "Mniej" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Wersja" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Użyj tego adresu do dostępu do twoich plików przez WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Szyfrowanie" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Aplikacja szyfrowanie nie jest włączona, odszyfruj wszystkie plik" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Hasło logowania" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Odszyfruj wszystkie pliki" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index bc98ad8c4e..9f1f1fcb74 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -370,14 +370,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atrybuty UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Mapowanie użytkownika LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Czyść Mapowanie użytkownika LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Czyść Mapowanie nazwy grupy LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Konfiguracja testowa" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Pomoc" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 50ddb1288b..0b5a2f4052 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 13:00+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,45 +58,6 @@ msgstr "Atualizar cache de arquivo" msgid "... %d%% done ..." msgstr "... %d%% concluído ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipo de categoria não fornecido." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nenhuma categoria a adicionar?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Esta categoria já existe: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "tipo de objeto não fornecido." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID não fornecido(s)." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Erro ao adicionar %s aos favoritos." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nenhuma categoria selecionada para remoção." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Erro ao remover %s dos favoritos." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Nenhuma imagem ou arquivo fornecido" @@ -197,55 +158,55 @@ msgstr "dezembro" msgid "Settings" msgstr "Ajustes" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " ha %n minuto" msgstr[1] "ha %n minutos" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "ha %n hora" msgstr[1] "ha %n horas" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "hoje" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "ontem" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "ha %n dia" msgstr[1] "ha %n dias" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "último mês" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "ha %n mês" msgstr[1] "ha %n meses" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "meses atrás" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "último ano" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "anos atrás" @@ -313,27 +274,6 @@ msgstr "({count} selecionados)" msgid "Error loading file exists template" msgstr "Erro ao carregar arquivo existe modelo" -#: 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 "O tipo de objeto não foi especificado." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Erro" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "O nome do app não foi especificado." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "O arquivo {file} necessário não está instalado!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Compartilhados" @@ -342,6 +282,11 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Erro" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -470,6 +415,34 @@ msgstr "E-mail enviado" msgid "Warning" msgstr "Aviso" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "O tipo de objeto não foi especificado." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Entrar uma nova" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Eliminar" + +#: js/tags.js:31 +msgid "Add" +msgstr "Adicionar" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Editar etiqueta" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Erro carregando diálogo de formatação:{error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Nenhuma etiqueta selecionada para deleção." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -77,15 +77,15 @@ msgstr "Falha ao escrever no disco" msgid "Not enough storage available" msgstr "Espaço de armazenamento insuficiente" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Falha no envio. Não foi possível obter informações do arquivo." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Falha no envio. Não foi possível encontrar o arquivo enviado" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Diretório inválido." @@ -93,36 +93,36 @@ msgstr "Diretório inválido." msgid "Files" msgstr "Arquivos" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Incapaz de fazer o envio de {filename}, pois é um diretório ou tem 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Espaço de armazenamento insuficiente" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Não foi possível obter o resultado do servidor." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL não pode ficar em branco" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nome de pasta inválido. O uso do nome 'Compartilhado' é reservado ao ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Erro" @@ -134,11 +134,11 @@ msgstr "Compartilhar" msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Pendente" @@ -166,13 +166,13 @@ msgstr "Substituído {old_name} por {new_name} " msgid "undo" msgstr "desfazer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n arquivo" @@ -182,7 +182,7 @@ msgstr[1] "%n arquivos" msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Enviando %n arquivo" @@ -229,25 +229,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Encriptação foi desabilitada mas seus arquivos continuam encriptados. Por favor vá a suas configurações pessoais para descriptar seus arquivos." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Erro movendo o arquivo" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nome" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Tamanho" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modificado" @@ -256,7 +256,7 @@ msgstr "Modificado" msgid "%s could not be renamed" msgstr "%s não pode ser renomeado" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Upload" @@ -292,65 +292,65 @@ msgstr "Tamanho máximo para arquivo ZIP" msgid "Save" msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Novo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Arquivo texto" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Pasta" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Do link" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Arquivos apagados" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Você não possui permissão de escrita aqui." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Baixar" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Descompartilhar" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Excluir" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 58972c4590..f0ed073165 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:14-0400\n" -"PO-Revision-Date: 2013-10-07 10:00+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 13:00+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -56,14 +56,14 @@ msgid "" "correct." msgstr "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "Aplicativo de criptografia não foi inicializado! Talvez o aplicativo de criptografia tenha sido reativado durante essa sessão. Por favor, tente fazer logoff e login novamente para inicializar o aplicativo de criptografia." -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -71,6 +71,18 @@ msgid "" "files." msgstr "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "Este arquivo não pode ser decriptado, provavelmente este é um arquivo compartilhado. Poe favoe peça ao dono do arquivo para compartilha-lo com você." + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Erro desconhecido, por favor verifique suas configurações ou faça contato com o administrador" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Requisitos não encontrados." @@ -82,7 +94,7 @@ msgid "" " the encryption app has been disabled." msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Seguintes usuários não estão configurados para criptografia:" @@ -98,91 +110,91 @@ msgstr "Ir diretamente para o seu" msgid "personal settings" msgstr "configurações pessoais." -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Criptografia" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Habilitar chave de recuperação (permite recuperar arquivos de usuários em caso de perda de senha):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Senha da chave de recuperação" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "Repita Recuperação de senha da chave" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Habilitado" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Desabilitado" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Mudar a senha da chave de recuperação:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Senha antiga da chave de recuperação" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nova senha da chave de recuperação" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "Repita Nova senha da chave de recuperação" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Trocar Senha" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Sua senha de chave privada não coincide mais com sua senha de login:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Configure sua antiga senha de chave privada para sua atual senha de login." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Se você não se lembra de sua antiga senha você pode pedir ao administrador que recupere seus arquivos." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Senha antiga de login" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Senha de login atual" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Atualizar senha de chave privada" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Habilitar recuperação de senha:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Habilitar essa opção vai permitir que você obtenha novamente acesso aos seus arquivos encriptados em caso de perda de senha" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Configurações de recuperação de arquivo atualizado" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Não foi possível atualizar a recuperação de arquivos" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index e47a052c0b..2103f7e97a 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Acesso concedido" @@ -26,7 +26,7 @@ msgstr "Acesso concedido" msgid "Error configuring Dropbox storage" msgstr "Erro ao configurar armazenamento do Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Permitir acesso" @@ -34,24 +34,24 @@ msgstr "Permitir acesso" msgid "Please provide a valid Dropbox app key and secret." msgstr "Por favor forneça um app key e secret válido do Dropbox" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar armazenamento do Google Drive" -#: lib/config.php:447 +#: lib/config.php:453 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: \"smbclient\" não está instalado. Impossível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Aviso: O suporte para FTP do PHP não está ativado ou instalado. Impossível montar compartilhamentos FTP. Por favor, peça ao seu administrador do sistema para instalá-lo." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 0c110ef825..dd47866891 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-11 09:40+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Este compartilhamento esta protegido por senha" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Senha incorreta. Tente novamente." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Senha" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submeter" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Desculpe, este link parece não mais funcionar." @@ -54,28 +54,28 @@ msgstr "compartilhamento está desativada" msgid "For more info, please ask the person who sent this link." msgstr "Para mais informações, por favor, pergunte a pessoa que enviou este link." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartilhou a pasta %s com você" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartilhou o arquivo %s com você" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Baixar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Upload" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Nenhuma visualização disponível para" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 52e3fe9e13..766e7bcb13 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Não foi possível excluir %s permanentemente" msgid "Couldn't restore %s" msgstr "Não foi possível restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "realizar operação de restauração" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Erro" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "excluir arquivo permanentemente" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Excluir permanentemente" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nome" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Excluído" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n pastas" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n arquivo" -msgstr[1] "%n arquivos" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restaurado" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nada aqui. Sua lixeira está vazia!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nome" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Excluído" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Excluir" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 4945009eba..0acac8b89d 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 17:40+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -159,15 +159,15 @@ msgstr "Atualizar" msgid "Updated" msgstr "Atualizado" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Selecione uma imagem para o perfil" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decriptando arquivos... Por favor aguarde, isso pode levar algum tempo." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Salvando..." @@ -183,32 +183,32 @@ msgstr "desfazer" msgid "Unable to remove user" msgstr "Impossível remover usuário" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupo Administrativo" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Excluir" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "adicionar grupo" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Forneça um nome de usuário válido" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Erro ao criar usuário" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Forneça uma senha válida" @@ -386,11 +386,11 @@ msgstr "Mais" msgid "Less" msgstr "Menos" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versão" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Use esse endereço para acessar seus arquivos via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Criptografia" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "O aplicativo de encriptação não está mais ativo, decripti todos os seus arquivos" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Senha de login" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Decripti todos os Arquivos" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 8893e2edde..537f29e4f8 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-11 09:40+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -370,14 +370,18 @@ msgid "" msgstr "Por padrão, o atributo UUID é detectado automaticamente. O atributo UUID é usado para identificar, sem dúvidas, os usuários e grupos LDAP. Além disso, o nome de usuário interno será criado com base no UUID, se não especificado acima. Você pode substituir a configuração e passar um atributo de sua escolha. Você deve certificar-se de que o atributo de sua escolha pode ser lido tanto para usuários como para grupos, e que seja único. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários e grupos LDAP recém mapeados (adicionados)." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo UUID:" +msgid "UUID Attribute for Users:" +msgstr "UUID Atributos para Usuários:" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "UUID Atributos para Grupos:" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Usuário-LDAP Mapeamento de Usuário" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "Nomes de usuários sãi usados para armazenar e atribuir (meta) dados. A fim de identificar com precisão e reconhecer usuários, cada usuário LDAP terá um nome de usuário interno. Isso requer um mapeamento nome de usuário para usuário LDAP. O nome de usuário criado é mapeado para o UUID do usuário LDAP. Adicionalmente, o DN fica em cache, assim como para reduzir a interação LDAP, mas não é utilizado para a identificação. Se o DN muda, as mudanças serão encontradas. O nome de usuário interno é utilizado em todo lugar. Limpar os mapeamentos não influencia a configuração. Limpar os mapeamentos deixará rastros em todo lugar. Limpar os mapeamentos não influencia a configuração, mas afeta as configurações LDAP! Somente limpe os mapeamentos em embiente de testes ou em estágio experimental." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar Mapeamento de Usuário Nome de Usuário-LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar NomedoGrupo-LDAP Mapeamento do Grupo" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Teste de Configuração" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ajuda" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index f0d8523639..981e62e75f 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -61,45 +61,6 @@ msgstr "Actualizado o cache dos ficheiros" msgid "... %d%% done ..." msgstr "... %d%% feito ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipo de categoria não fornecido" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nenhuma categoria para adicionar?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "A categoria já existe: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tipo de objecto não fornecido" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID %s não fornecido" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Erro a adicionar %s aos favoritos" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nenhuma categoria seleccionada para eliminar." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Erro a remover %s dos favoritos." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Não foi selecionado nenhum ficheiro para importar" @@ -200,55 +161,55 @@ msgstr "Dezembro" msgid "Settings" msgstr "Configurações" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto atrás" msgstr[1] "%n minutos atrás" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hora atrás" msgstr[1] "%n horas atrás" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "hoje" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "ontem" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dia atrás" msgstr[1] "%n dias atrás" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "ultímo mês" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mês atrás" msgstr[1] "%n meses atrás" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "meses atrás" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "ano passado" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "anos atrás" @@ -316,27 +277,6 @@ msgstr "" msgid "Error loading file exists template" 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 "O tipo de objecto não foi especificado" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Erro" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "O nome da aplicação não foi especificado" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "O ficheiro necessário {file} não está instalado!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Partilhado" @@ -345,6 +285,11 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Erro" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -473,6 +418,34 @@ msgstr "E-mail enviado" msgid "Warning" msgstr "Aviso" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "O tipo de objecto não foi especificado" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Eliminar" + +#: js/tags.js:31 +msgid "Add" +msgstr "Adicionar" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,15 +77,15 @@ msgstr "Falhou a escrita no disco" msgid "Not enough storage available" msgstr "Não há espaço suficiente em disco" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "O carregamento falhou. Não foi possível obter a informação do ficheiro." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Directório Inválido" @@ -93,36 +93,36 @@ msgstr "Directório Inválido" msgid "Files" msgstr "Ficheiros" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Espaço em disco insuficiente!" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." -msgstr "" +msgstr "Não foi possível obter o resultado do servidor." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "O URL não pode estar vazio." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nome da pasta inválido. Palavra 'Shared' é reservado pela ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Erro" @@ -134,11 +134,11 @@ msgstr "Partilhar" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Pendente" @@ -166,13 +166,13 @@ msgstr "substituido {new_name} por {old_name}" msgid "undo" msgstr "desfazer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" @@ -182,7 +182,7 @@ msgstr[1] "%n ficheiros" msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "A carregar %n ficheiro" @@ -229,25 +229,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" -msgstr "" +msgstr "Erro ao mover o ficheiro" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nome" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Tamanho" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modificado" @@ -256,7 +256,7 @@ msgstr "Modificado" msgid "%s could not be renamed" msgstr "%s não pode ser renomeada" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Carregar" @@ -292,65 +292,65 @@ msgstr "Tamanho máximo para ficheiros ZIP" msgid "Save" msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Novo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Ficheiro de texto" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Pasta" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Da ligação" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Não tem permissões de escrita aqui." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Transferir" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Deixar de partilhar" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index d3d1dddf32..c5dbfe3bce 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -4,14 +4,15 @@ # # Translators: # Mouxy , 2013 +# Duarte Velez Grilo , 2013 # moura232 , 2013 # Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -56,14 +57,14 @@ msgid "" "correct." msgstr "Não foi possível alterar a chave. Possivelmente a password antiga não está correcta." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -71,6 +72,18 @@ msgid "" "files." msgstr "Chave privada não é válida! Provavelmente senha foi alterada fora do sistema ownCloud (exemplo, o diretório corporativo). Pode atualizar password da chave privada em configurações personalizadas para recuperar o acesso aos seus arquivos encriptados." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Faltam alguns requisitos." @@ -82,9 +95,9 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Os utilizadores seguintes não estão marcados para cifragem:" #: js/settings-admin.js:13 msgid "Saving..." @@ -98,91 +111,91 @@ msgstr "" msgid "personal settings" msgstr "configurações personalizadas " -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Encriptação" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Active a chave de recuperação (permite recuperar os ficheiros no caso de perda da password):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Chave de recuperação da conta" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Activado" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Desactivado" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Alterar a chave de recuperação:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Chave anterior de recuperação da conta" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nova chave de recuperação da conta" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Mudar a Password" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Password anterior da conta" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Password actual da conta" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "ativar recuperação do password:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Ao activar esta opção, tornar-lhe-a possível a obtenção de acesso aos seus ficheiros encriptados caso perca a password." -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Actualizadas as definições de recuperação de ficheiros" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Não foi possível actualizar a recuperação de ficheiros" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 4c13e6b315..971e07ff2d 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 7db55d8e76..007a73ccd8 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Password errada, por favor tente de novo" -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Password" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submeter" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Desculpe, mas este link parece não estar a funcionar." @@ -55,28 +55,28 @@ msgstr "A partilha está desativada" msgid "For more info, please ask the person who sent this link." msgstr "Para mais informações, por favor questione a pessoa que lhe enviou este link" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s partilhou a pasta %s consigo" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s partilhou o ficheiro %s consigo" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Transferir" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Carregar" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Não há pré-visualização para" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 8b46018dda..5d57bfb195 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Não foi possível eliminar %s de forma permanente" msgid "Couldn't restore %s" msgstr "Não foi possível restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "executar a operação de restauro" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Erro" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Eliminar permanentemente o(s) ficheiro(s)" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Eliminar permanentemente" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nome" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Apagado" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n pasta" -msgstr[1] "%n pastas" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n ficheiro" -msgstr[1] "%n ficheiros" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Restaurado" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Não hà ficheiros. O lixo está vazio!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nome" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Apagado" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index a33b04b63e..b6b6fdc0a1 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-09 18:00+0000\n" +"Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +18,38 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:237 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "A aplicação \"%s\" não pode ser instaladas por não ser compatível com esta versão da ownCloud." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" -msgstr "" +msgstr "O nome da aplicação não foi especificado" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Ajuda" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Pessoal" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Configurações" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Utilizadores" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:839 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "A actualização \"%s\" falhou." @@ -112,7 +112,7 @@ msgstr "" #: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Arquivos do tipo %s não são suportados" #: private/installer.php:103 msgid "Failed to open archive when installing app" @@ -120,11 +120,11 @@ msgstr "" #: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "A aplicação não disponibiliza um ficheiro info.xml" #: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "A aplicação não pode ser instalado devido a código não permitido dentro da aplicação" #: private/installer.php:140 msgid "" @@ -146,12 +146,12 @@ msgstr "" #: private/installer.php:162 msgid "App directory already exists" -msgstr "" +msgstr "A directoria da aplicação já existe" #: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Não foi possível criar a pasta da aplicação. Por favor verifique as permissões. %s" #: private/json.php:28 msgid "Application is not enabled" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index c2dd657006..66a7fad29c 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -5,15 +5,16 @@ # Translators: # bmgmatias , 2013 # Mouxy , 2013 +# Duarte Velez Grilo , 2013 # Helder Meneses , 2013 # Nelson Rosado , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: Duarte Velez Grilo \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" @@ -90,22 +91,22 @@ msgstr "Não foi possível actualizar a aplicação." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Password errada" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Nenhum utilizador especificado." #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Por favor forneça uma palavra chave de recuperação de administrador, caso contrário todos os dados de utilizador serão perdidos" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Palavra chave de recuperação de administrador errada. Por favor verifique a palavra chave e tente de novo." #: changepassword/controller.php:87 msgid "" @@ -115,7 +116,7 @@ msgstr "" #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Não foi possível alterar a sua password" #: js/apps.js:43 msgid "Update to {appversion}" @@ -161,15 +162,15 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Seleccione uma fotografia de perfil" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "A desencriptar os ficheiros... Por favor aguarde, esta operação pode demorar algum tempo." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "A guardar..." @@ -185,32 +186,32 @@ msgstr "desfazer" msgid "Unable to remove user" msgstr "Não foi possível remover o utilizador" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Eliminar" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "Adicionar grupo" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Erro a criar utilizador" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" @@ -346,11 +347,11 @@ msgstr "Permitir que os utilizadores partilhem somente com utilizadores do seu g #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Permitir notificação por email" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados" #: templates/admin.php:178 msgid "Security" @@ -388,11 +389,11 @@ msgstr "Mais" msgid "Less" msgstr "Menos" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versão" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Use este endereço para aceder aos seus ficheiros via WebDav" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Encriptação" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "A aplicação de encriptação não se encontra mais disponível, desencripte o seu ficheiro" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Password de entrada" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Desencriptar todos os ficheiros" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index b8a52a7e0e..304a64da09 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -371,14 +371,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Mapeamento do utilizador LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -392,18 +396,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar mapeamento do utilizador-LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar o mapeamento do nome de grupo LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testar a configuração" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ajuda" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 2ec3d7e662..deaf7a36dc 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -60,45 +60,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipul de categorie nu a fost specificat." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nici o categorie de adăugat?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Această categorie deja există: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tipul obiectului nu este prevăzut" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID-ul %s nu a fost introdus" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Eroare la adăugarea %s la favorite." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nicio categorie selectată pentru ștergere." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Eroare la ștergerea %s din favorite." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -199,59 +160,59 @@ msgstr "Decembrie" msgid "Settings" msgstr "Setări" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "acum %n minut" msgstr[1] "acum %n minute" msgstr[2] "acum %n minute" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "acum %n oră" msgstr[1] "acum %n ore" msgstr[2] "acum %n ore" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "astăzi" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "ieri" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "acum %n zi" msgstr[1] "acum %n zile" msgstr[2] "acum %n zile" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "ultima lună" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "ultimul an" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "ani în urmă" @@ -320,27 +281,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Tipul obiectului nu este specificat." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Eroare" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Numele aplicației nu este specificat." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Fișierul obligatoriu {file} nu este instalat!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Partajat" @@ -349,6 +289,11 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Eroare" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -477,6 +422,34 @@ msgstr "Mesajul a fost expediat" msgid "Warning" msgstr "Atenție" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Tipul obiectului nu este specificat." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Șterge" + +#: js/tags.js:31 +msgid "Add" +msgstr "Adaugă" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -79,15 +79,15 @@ msgstr "Eroare la scrierea discului" msgid "Not enough storage available" msgstr "Nu este suficient spațiu disponibil" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Încărcare eșuată. Nu se pot obține informații despre fișier." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Încărcare eșuată. Nu se poate găsi fișierul încărcat" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "registru invalid." @@ -95,36 +95,36 @@ msgstr "registru invalid." msgid "Files" msgstr "Fișiere" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nu se poate încărca {filename} deoarece este un director sau are mărimea de 0 octeți" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Nu este suficient spațiu disponibil" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Nu se poate obține rezultatul de la server." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Adresa URL nu poate fi golita" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nume de dosar invalid. Utilizarea 'Shared' e rezervată de ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Eroare" @@ -136,11 +136,11 @@ msgstr "a imparti" msgid "Delete permanently" msgstr "Stergere permanenta" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "in timpul" @@ -168,14 +168,14 @@ msgstr "{new_name} inlocuit cu {old_name}" msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n director" msgstr[1] "%n directoare" msgstr[2] "%n directoare" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fișier" @@ -186,7 +186,7 @@ msgstr[2] "%n fișiere" msgid "{dirs} and {files}" msgstr "{dirs} și {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Se încarcă %n fișier." @@ -234,25 +234,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "criptarea a fost disactivata dar fisierele sant inca criptate.va rog intrati in setarile personale pentru a decripta fisierele" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "in curs de descarcare. Aceasta poate să dureze ceva timp dacă fișierele sunt mari." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Eroare la mutarea fișierului" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Nume" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Dimensiune" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modificat" @@ -261,7 +261,7 @@ msgstr "Modificat" msgid "%s could not be renamed" msgstr "%s nu a putut fi redenumit" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Încărcare" @@ -297,65 +297,65 @@ msgstr "Dimensiunea maximă de intrare pentru fișiere compresate" msgid "Save" msgstr "Salvează" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nou" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "lista" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Dosar" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "de la adresa" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Sterge fisierele" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Nu ai permisiunea de a scrie aici." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Descarcă" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Anulare" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Șterge" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, asteptati va rog" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index 6b54b6bee8..d7b085091b 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Încriptare" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index cd50fa140d..1557bac71d 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index e0a966d6e0..780d4a0405 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Parola este incorectă. Încercaţi din nou." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Parolă" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Trimite" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partajat directorul %s cu tine" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partajat fișierul %s cu tine" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Descarcă" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Încărcare" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Nici o previzualizare disponibilă pentru " diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index e8bdca36ee..f92d6ab20f 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -27,57 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Eroare" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Stergere permanenta" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Nume" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n directoare" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n fișiere" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Nume" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Șterge" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 2cf33497ee..33ddac0ed7 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -159,15 +159,15 @@ msgstr "Actualizare" msgid "Updated" msgstr "Actualizat" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Se salvează..." @@ -183,32 +183,32 @@ msgstr "Anulează ultima acțiune" msgid "Unable to remove user" msgstr "Imposibil de eliminat utilizatorul" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupuri" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupul Admin " -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Șterge" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "adăugaţi grupul" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Trebuie să furnizaţi un nume de utilizator valid" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Eroare la crearea utilizatorului" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Trebuie să furnizaţi o parolă validă" @@ -386,11 +386,11 @@ msgstr "Mai mult" msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Încriptare" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 239ee5cccc..01f2787f6b 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ajutor" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 321b632ae0..8a8d5635b3 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -68,45 +68,6 @@ msgstr "Обновлен файловый кэш" msgid "... %d%% done ..." msgstr "... %d%% завершено ..." -#: 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 "Эта категория уже существует: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Тип объекта не предоставлен" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID %s не предоставлен" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Ошибка добавления %s в избранное" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Нет категорий для удаления." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Ошибка удаления %s из избранного" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Не указано изображение или файл" @@ -207,59 +168,59 @@ msgstr "Декабрь" msgid "Settings" msgstr "Конфигурация" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минуту назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "сегодня" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "вчера" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "в прошлом году" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "несколько лет назад" @@ -328,27 +289,6 @@ msgstr "({count} выбрано)" msgid "Error loading file exists template" msgstr "Ошибка при загрузке шаблона существующего файла" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Тип объекта не указан" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Ошибка" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Имя приложения не указано" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Необходимый файл {file} не установлен!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Общие" @@ -357,6 +297,11 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Ошибка" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -485,6 +430,34 @@ msgstr "Письмо отправлено" msgid "Warning" msgstr "Предупреждение" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Тип объекта не указан" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Удалить" + +#: js/tags.js:31 +msgid "Add" +msgstr "Добавить" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -81,15 +81,15 @@ msgstr "Ошибка записи на диск" msgid "Not enough storage available" msgstr "Недостаточно доступного места в хранилище" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "Загрузка не удалась. Невозможно получить информацию о файле" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "Загрузка не удалась. Невозможно найти загруженный файл" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Неправильный каталог." @@ -97,36 +97,36 @@ msgstr "Неправильный каталог." msgid "Files" msgstr "Файлы" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Невозможно загрузить файл {filename} так как он является директорией либо имеет размер 0 байт" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Недостаточно свободного места" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "Не получен ответ от сервера" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Ссылка не может быть пустой." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Ошибка" @@ -138,11 +138,11 @@ msgstr "Открыть доступ" msgid "Delete permanently" msgstr "Удалено навсегда" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Ожидание" @@ -170,14 +170,14 @@ msgstr "заменено {new_name} на {old_name}" msgid "undo" msgstr "отмена" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n папка" msgstr[1] "%n папки" msgstr[2] "%n папок" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" @@ -188,7 +188,7 @@ msgstr[2] "%n файлов" msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Закачка %n файла" @@ -236,25 +236,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Шифрование было отключено, но ваши файлы все еще зашифрованы. Пожалуйста, зайдите на страницу персональных настроек для того, чтобы расшифровать ваши файлы." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Загрузка началась. Это может потребовать много времени, если файл большого размера." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "Ошибка при перемещении файла" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Имя" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Размер" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Изменён" @@ -263,7 +263,7 @@ msgstr "Изменён" msgid "%s could not be renamed" msgstr "%s не может быть переименован" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Загрузка" @@ -299,65 +299,65 @@ msgstr "Максимальный исходный размер для ZIP фай msgid "Save" msgstr "Сохранить" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Новый" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Текстовый файл" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Папка" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Из ссылки" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Удалённые файлы" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "У вас нет разрешений на запись здесь." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Скачать" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Закрыть общий доступ" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Удалить" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Файл слишком велик" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файлы, которые вы пытаетесь загрузить, превышают лимит для файлов на этом сервере." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Подождите, файлы сканируются." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index a991edf467..b4de0e9d50 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -59,14 +59,14 @@ msgid "" "correct." msgstr "Невозможно обновить пароль от секретного ключа. Возможно, старый пароль указан неверно." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -74,6 +74,18 @@ msgid "" "files." msgstr "Ваш секретный ключ не действителен! Вероятно, ваш пароль был изменен вне системы OwnCloud (например, корпоративный каталог). Вы можете обновить секретный ключ в личных настройках на странице восстановления доступа к зашифрованным файлам. " +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Требования отсутствуют." @@ -85,7 +97,7 @@ msgid "" " the encryption app has been disabled." msgstr "Пожалуйста, убедитесь, что версия PHP 5.3.3 или новее, а также, что OpenSSL и соответствующее расширение PHP включены и правильно настроены. На данный момент приложение шифрования отключено." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Для следующих пользователей шифрование не настроено:" @@ -101,91 +113,91 @@ msgstr "" msgid "personal settings" msgstr "персональные настройки" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Шифрование" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Включить ключ восстановления (позволяет пользователям восстановить файлы при потере пароля):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Пароль для ключа восстановления" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Включено" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Отключено" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Сменить пароль для ключа восстановления:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Старый пароль для ключа восстановления" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Новый пароль для ключа восстановления" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Изменить пароль" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Пароль от секретного ключа больше не соответствует паролю входа:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Замените старый пароль от секретного ключа на новый пароль входа." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Если вы не помните свой старый пароль, вы можете попросить своего администратора восстановить ваши файлы" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Старый пароль для входа" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Текущйи пароль для входа" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Обновить пароль от секретного ключа" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Включить восстановление пароля:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Включение этой опции позволит вам получить доступ к своим зашифрованным файлам в случае утери пароля" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Настройки файла восстановления обновлены" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Невозможно обновить файл восстановления" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 33d50b6b3f..98fb2c40be 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 13ded27e56..6c39761230 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Den4md \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Неверный пароль. Попробуйте еще раз." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Пароль" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Отправить" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "К сожалению, эта ссылка, похоже не будет работать больше." @@ -55,28 +55,28 @@ msgstr "обмен отключен" msgid "For more info, please ask the person who sent this link." msgstr "Для получения дополнительной информации, пожалуйста, спросите того кто отослал данную ссылку." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s открыл доступ к папке %s для Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s открыл доступ к файлу %s для Вас" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Скачать" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Загрузка" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Предпросмотр недоступен для" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 093a2f1502..95ac5cbc02 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -28,57 +28,31 @@ msgstr "%s не может быть удалён навсегда" msgid "Couldn't restore %s" msgstr "%s не может быть восстановлен" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "выполнить операцию восстановления" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Ошибка" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "удалить файл навсегда" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Удалено навсегда" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Имя" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Удалён" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n папок" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n файлов" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "восстановлен" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Здесь ничего нет. Ваша корзина пуста!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Имя" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Восстановить" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Удалён" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Удалить" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 48ee583afd..da611ef4d9 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Обновить" msgid "Updated" msgstr "Обновлено" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Выберите картинку профиля" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Сохранение..." @@ -190,32 +190,32 @@ msgstr "отмена" msgid "Unable to remove user" msgstr "Невозможно удалить пользователя" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Группы" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Группа Администраторы" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Удалить" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "добавить группу" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Укажите правильное имя пользователя" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Ошибка создания пользователя" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Укажите валидный пароль" @@ -393,11 +393,11 @@ msgstr "Больше" msgid "Less" msgstr "Меньше" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Версия" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Используйте этот адрес чтобы получить доступ к вашим файлам через WebDav - " -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Шифрование" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Приложение шифрования не активно, отмените шифрование всех ваших файлов." -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Пароль входа" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Снять шифрование со всех файлов" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index c89b78bf54..fa2d45416f 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: jekader \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -373,14 +373,18 @@ msgid "" msgstr "По-умолчанию, ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также, на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по-умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Аттрибут для UUID:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Соответствия Имя-Пользователь LDAP" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -394,18 +398,18 @@ msgid "" "experimental stage." msgstr "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется доменное имя (DN) для уменьшения числа обращений к LDAP, однако оно не используется для идентификации. Если доменное имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP подключения! Ни в коем случае не рекомендуется сбрасывать привязки если система уже находится в эксплуатации, только на этапе тестирования." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Очистить соответствия Имя-Пользователь LDAP" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Очистить соответствия Группа-Группа LDAP" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Тестовая конфигурация" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Помощь" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 97b9ea909e..dc5dc0149d 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,55 +156,55 @@ msgstr "දෙසැම්බර්" msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "අද" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "දෝෂයක්" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "දෝෂයක්" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "අවවාදය" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "මකා දමන්න" + +#: js/tags.js:31 +msgid "Add" +msgstr "එකතු කරන්න" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "තැටිගත කිරීම අසාර්ථකයි" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "ගොනු" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "යොමුව හිස් විය නොහැක" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "දෝෂයක්" @@ -131,11 +131,11 @@ msgstr "බෙදා හදා ගන්න" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,7 +179,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "නම" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "වෙනස් කළ" @@ -253,7 +253,7 @@ msgstr "වෙනස් කළ" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "උඩුගත කරන්න" @@ -289,65 +289,65 @@ msgstr "ZIP ගොනු සඳහා දැමිය හැකි උපරි msgid "Save" msgstr "සුරකින්න" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "නව" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "පෙළ ගොනුව" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "ෆෝල්ඩරය" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "යොමුවෙන්" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "බාන්න" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "නොබෙදු" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "මකා දමන්න" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "උඩුගත කිරීම විශාල වැඩිය" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index 2e754e8ef1..4dd66d0af5 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "ගුප්ත කේතනය" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 741ba55b3e..2d16fa4f49 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index c09a00ba70..801702da65 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "මුර පදය" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "යොමු කරන්න" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "බාන්න" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "උඩුගත කරන්න" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "පූර්වදර්ශනයක් නොමැත" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 8ad799d100..8d08295728 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "දෝෂයක්" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "නම" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "නම" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "මකා දමන්න" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 1bba29ef04..bec9bd7cac 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "යාවත්කාල කිරීම" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." @@ -181,32 +181,32 @@ msgstr "නිෂ්ප්‍රභ කරන්න" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "කණ්ඩායම්" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "කාණ්ඩ පරිපාලක" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "මකා දමන්න" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "වැඩි" msgid "Less" msgstr "අඩු" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "ගුප්ත කේතනය" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 406b5ccaa2..d8967e9b4e 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "උදව්" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index caf14391ec..34140d817f 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -316,27 +277,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -345,6 +285,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -473,6 +418,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index 42e2cda81b..2b6bf714e3 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 322a3dbd56..a6f8e0f6fa 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -27,45 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -73,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index 0c3d5db2fe..41f780a1d4 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 4833b4b058..b09244fa69 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -58,45 +58,6 @@ msgstr "\"Filecache\" aktualizovaná" msgid "... %d%% done ..." msgstr "... %d%% dokončených ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Neposkytnutý typ kategórie." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Žiadna kategória pre pridanie?" - -#: ajax/vcategories/add.php:37 -#, 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 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Neposkytnutý typ objektu." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID neposkytnuté." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Chyba pri pridávaní %s do obľúbených položiek." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Neboli vybrané žiadne kategórie pre odstránenie." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Chyba pri odstraňovaní %s z obľúbených položiek." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -197,59 +158,59 @@ msgstr "December" msgid "Settings" msgstr "Nastavenia" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "dnes" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "včera" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "minulý rok" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "pred rokmi" @@ -318,27 +279,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Nešpecifikovaný typ objektu." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Chyba" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nešpecifikované meno aplikácie." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Požadovaný súbor {file} nie je nainštalovaný!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Zdieľané" @@ -347,6 +287,11 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Chyba" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -475,6 +420,34 @@ msgstr "Email odoslaný" msgid "Warning" msgstr "Varovanie" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Nešpecifikovaný typ objektu." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Zmazať" + +#: js/tags.js:31 +msgid "Add" +msgstr "Pridať" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -75,15 +75,15 @@ msgstr "Zápis na disk sa nepodaril" msgid "Not enough storage available" msgstr "Nedostatok dostupného úložného priestoru" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Neplatný priečinok." @@ -91,36 +91,36 @@ msgstr "Neplatný priečinok." msgid "Files" msgstr "Súbory" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Nie je k dispozícii dostatok miesta" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Odosielanie zrušené." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL nemôže byť prázdne." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Neplatný názov priečinka. Názov \"Shared\" je rezervovaný pre ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Chyba" @@ -132,11 +132,11 @@ msgstr "Zdieľať" msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Prebieha" @@ -164,14 +164,14 @@ msgstr "prepísaný {new_name} súborom {old_name}" msgid "undo" msgstr "vrátiť" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n priečinok" msgstr[1] "%n priečinky" msgstr[2] "%n priečinkov" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n súbor" @@ -182,7 +182,7 @@ msgstr[2] "%n súborov" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávam %n súbor" @@ -230,25 +230,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Šifrovanie bolo zakázané, ale vaše súbory sú stále zašifrované. Prosím, choďte do osobného nastavenia pre dešifrovanie súborov." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Názov" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Veľkosť" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Upravené" @@ -257,7 +257,7 @@ msgstr "Upravené" msgid "%s could not be renamed" msgstr "%s nemohol byť premenovaný" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Odoslať" @@ -293,65 +293,65 @@ msgstr "Najväčšia veľkosť ZIP súborov" msgid "Save" msgstr "Uložiť" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nová" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Textový súbor" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Priečinok" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Z odkazu" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Zmazané súbory" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Nemáte oprávnenie na zápis." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Sťahovanie" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Zmazať" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Nahrávanie je príliš veľké" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Práve prezerané" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index e0728ac23f..93852aaf60 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -55,14 +55,14 @@ msgid "" "correct." msgstr "Nemožno aktualizovať heslo súkromného kľúča. Možno nebolo staré heslo správne." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -70,6 +70,18 @@ msgid "" "files." msgstr "Váš privátny kľúč je nesprávny! Pravdepodobne bolo zmenené vaše heslo mimo systému ownCloud (napr. váš korporátny adresár). Môžte aktualizovať vaše heslo privátneho kľúča v osobných nastaveniach za účelom obnovenia prístupu k zašifrovaným súborom." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Chýbajúce požiadavky." @@ -81,7 +93,7 @@ msgid "" " the encryption app has been disabled." msgstr "Prosím uistite sa, že PHP verzie 5.3.3 alebo novšej je nainštalované a tiež, že OpenSSL knižnica spolu z PHP rozšírením je povolená a konfigurovaná správne. Nateraz bola aplikácia šifrovania zablokovaná." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Nasledujúci používatelia nie sú nastavení pre šifrovanie:" @@ -97,91 +109,91 @@ msgstr "" msgid "personal settings" msgstr "osobné nastavenia" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Šifrovanie" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Povoliť obnovovací kľúč (umožňuje obnoviť používateľské súbory v prípade straty hesla):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Heslo obnovovacieho kľúča" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Povolené" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Zakázané" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Zmeniť heslo obnovovacieho kľúča:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Staré heslo obnovovacieho kľúča" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nové heslo obnovovacieho kľúča" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Zmeniť heslo" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Vaše heslo súkromného kľúča je rovnaké ako Vaše prihlasovacie heslo:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Nastavte si staré heslo súkromného kľúča k Vášmu súčasnému prihlasovaciemu heslu." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Ak si nepamätáte svoje staré heslo, môžete požiadať správcu o obnovenie svojich súborov." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Staré prihlasovacie heslo" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Súčasné prihlasovacie heslo" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Aktualizovať heslo súkromného kľúča" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Povoliť obnovu hesla:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Povolenie Vám umožní znovu získať prístup k Vašim zašifrovaným súborom, ak stratíte heslo" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Nastavenie obnovy súborov aktualizované" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Nemožno aktualizovať obnovenie súborov" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 33c04c2518..df238201d7 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 8d7b07737f..d011dccc3d 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Heslo je chybné. Skúste to znova." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Heslo" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Odoslať" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "To je nepríjemné, ale tento odkaz už nie je funkčný." @@ -54,28 +54,28 @@ msgstr "zdieľanie je zakázané" msgid "For more info, please ask the person who sent this link." msgstr "Pre viac informácií kontaktujte osobu, ktorá vám poslala tento odkaz." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s zdieľa s vami priečinok %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s zdieľa s vami súbor %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Sťahovanie" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Odoslať" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Žiaden náhľad k dispozícii pre" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index ba114deddf..db6f83ac26 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,57 +28,31 @@ msgstr "Nemožno zmazať %s navždy" msgid "Couldn't restore %s" msgstr "Nemožno obnoviť %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "vykonať obnovu" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Chyba" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "trvalo zmazať súbor" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Zmazať trvalo" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Názov" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Zmazané" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n priečinok" -msgstr[1] "%n priečinky" -msgstr[2] "%n priečinkov" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n súbor" -msgstr[1] "%n súbory" -msgstr[2] "%n súborov" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "obnovené" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Žiadny obsah. Kôš je prázdny!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Názov" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Obnoviť" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Zmazané" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Zmazať" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index b44a743834..da76f4bdb0 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -159,15 +159,15 @@ msgstr "Aktualizovať" msgid "Updated" msgstr "Aktualizované" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dešifrujem súbory ... Počkajte prosím, môže to chvíľu trvať." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Ukladám..." @@ -183,32 +183,32 @@ msgstr "vrátiť" msgid "Unable to remove user" msgstr "Nemožno odobrať používateľa" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Skupiny" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Správca skupiny" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Zmazať" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "pridať skupinu" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Musíte zadať platné používateľské meno" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Chyba pri vytváraní používateľa" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Musíte zadať platné heslo" @@ -386,11 +386,11 @@ msgstr "Viac" msgid "Less" msgstr "Menej" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Verzia" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Použite túto adresu pre prístup k súborom cez WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Šifrovanie" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Šifrovacia aplikácia nie je povolená, dešifrujte všetky vaše súbory" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Prihlasovacie heslo" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Dešifrovať všetky súbory" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 490bc7b44c..8e4e92b4dc 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: martin\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -370,14 +370,18 @@ msgid "" msgstr "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné použivateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri použivateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID atribút:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Mapovanie názvov LDAP používateľských mien" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "Použivateľské mená sa používajú pre uchovávanie a priraďovanie (meta)dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapování vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze." -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Zrušiť mapovanie LDAP používateľských mien" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Zrušiť mapovanie názvov LDAP skupín" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Test nastavenia" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Pomoc" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 6b2374ddc6..806735b76f 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -58,45 +58,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Vrsta kategorije ni podana." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ali ni kategorije za dodajanje?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kategorija že obstaja: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Vrsta predmeta ni podana." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID %s ni podan." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Napaka dodajanja %s med priljubljene predmete." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Za izbris ni izbrana nobena kategorija." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Napaka odstranjevanja %s iz priljubljenih predmetov." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -197,11 +158,11 @@ msgstr "december" msgid "Settings" msgstr "Nastavitve" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -209,7 +170,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -217,15 +178,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "danes" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "včeraj" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -233,11 +194,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -245,15 +206,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "lansko leto" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "let nazaj" @@ -323,27 +284,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Vrsta predmeta ni podana." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Napaka" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Ime programa ni podano." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Zahtevana datoteka {file} ni nameščena!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "V souporabi" @@ -352,6 +292,11 @@ msgstr "V souporabi" msgid "Share" msgstr "Souporaba" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Napaka" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -480,6 +425,34 @@ msgstr "Elektronska pošta je poslana" msgid "Warning" msgstr "Opozorilo" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Vrsta predmeta ni podana." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Izbriši" + +#: js/tags.js:31 +msgid "Add" +msgstr "Dodaj" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -75,15 +75,15 @@ msgstr "Pisanje na disk je spodletelo" msgid "Not enough storage available" msgstr "Na voljo ni dovolj prostora" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Neveljavna mapa." @@ -91,36 +91,36 @@ msgstr "Neveljavna mapa." msgid "Files" msgstr "Datoteke" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Na voljo ni dovolj prostora." -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Naslov URL ne sme biti prazna vrednost." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ime mape je neveljavno. Uporaba oznake \"Souporaba\" je rezervirana za ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Napaka" @@ -132,11 +132,11 @@ msgstr "Souporaba" msgid "Delete permanently" msgstr "Izbriši dokončno" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "V čakanju ..." @@ -164,7 +164,7 @@ msgstr "preimenovano ime {new_name} z imenom {old_name}" msgid "undo" msgstr "razveljavi" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -172,7 +172,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -184,7 +184,7 @@ msgstr[3] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -233,25 +233,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datoteka zelo velika." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Ime" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Velikost" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Spremenjeno" @@ -260,7 +260,7 @@ msgstr "Spremenjeno" msgid "%s could not be renamed" msgstr "%s ni bilo mogoče preimenovati" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Pošlji" @@ -296,65 +296,65 @@ msgstr "Največja vhodna velikost za datoteke ZIP" msgid "Save" msgstr "Shrani" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Novo" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Besedilna datoteka" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Mapa" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Iz povezave" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Izbrisane datoteke" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Za to mesto ni ustreznih dovoljenj za pisanje." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Prejmi" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Prekliči souporabo" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Izbriši" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Prekoračenje omejitve velikosti" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index bd85156b74..f3822940a5 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -54,14 +54,14 @@ msgid "" "correct." msgstr "Zasebnega ključa za geslo ni bilo mogoče posodobiti. Morda vnos starega gesla ni bil pravilen." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -69,6 +69,18 @@ msgid "" "files." msgstr "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno zunaj sistema ownCloud (npr. v skupnem imeniku). Svoj zasebni ključ, ki vam bo omogočil dostop do šifriranih dokumentov, lahko posodobite v osebnih nastavitvah." +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Manjkajoče zahteve" @@ -80,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "Preverite, da imate na strežniku nameščen paket PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Naslednji uporabniki še nimajo nastavljenega šifriranja:" @@ -96,91 +108,91 @@ msgstr "" msgid "personal settings" msgstr "osebne nastavitve" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Šifriranje" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Omogoči ključ za obnovitev datotek (v primeru izgube gesla)" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Ključ za obnovitev gesla" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Omogočeno" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Onemogočeno" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "Spremeni ključ za obnovitev gesla:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Stari ključ za obnovitev gesla" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nov ključ za obnovitev gesla" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Spremeni geslo" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Vaš zasebni ključ za geslo se ne ujema z vnešenim geslom ob prijavi:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Nastavite svoj star zasebni ključ v geslo, vnešeno ob prijavi." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Če ste svoje geslo pozabili, lahko vaše datoteke obnovi skrbnik sistema." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Staro geslo" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Trenutno geslo" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Posodobi zasebni ključ" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Omogoči obnovitev gesla:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Nastavitev te možnosti omogoča ponovno pridobitev dostopa do šifriranih datotek, v primeru da boste geslo pozabili." -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Nastavitve obnavljanja dokumentov so bile posodobljene" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Nastavitev za obnavljanje dokumentov ni bilo mogoče posodobiti" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 14fecb56ea..f9f7218e7a 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index b038230f56..1aa6dfa7fc 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Geslo" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Pošlji" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "Oseba %s je določila mapo %s za souporabo" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "Oseba %s je določila datoteko %s za souporabo" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Prejmi" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Pošlji" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Predogled ni na voljo za" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 284bba9884..48a84a7fa8 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -27,59 +27,31 @@ msgstr "Datoteke %s ni mogoče dokončno izbrisati." msgid "Couldn't restore %s" msgstr "Ni mogoče obnoviti %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "izvedi opravilo obnavljanja" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Napaka" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "dokončno izbriši datoteko" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Izbriši dokončno" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Ime" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Izbrisano" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Mapa smeti je prazna." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Ime" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Obnovi" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Izbrisano" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Izbriši" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index cb7d56aab6..ebaae968d3 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -159,15 +159,15 @@ msgstr "Posodobi" msgid "Updated" msgstr "Posodobljeno" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Poteka shranjevanje ..." @@ -183,32 +183,32 @@ msgstr "razveljavi" msgid "Unable to remove user" msgstr "Uporabnika ni mogoče odstraniti" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Skupine" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Skrbnik skupine" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Izbriši" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "dodaj skupino" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Navedeno mora biti veljavno uporabniško ime" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Napaka ustvarjanja uporabnika" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Navedeno mora biti veljavno geslo" @@ -386,11 +386,11 @@ msgstr "Več" msgid "Less" msgstr "Manj" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Različica" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Šifriranje" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 95dd8e04af..bb2dbec1b0 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atribut UUID" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Preslikava uporabniško ime - LDAP-uporabnik" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Izbriši preslikavo Uporabniškega imena in LDAP-uporabnika" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Izbriši preslikavo Skupine in LDAP-skupine" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Preizkusne nastavitve" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Pomoč" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 194c8b6eb0..d22fa7a066 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -58,45 +58,6 @@ msgstr "Memorja e skedarëve u azhornua" msgid "... %d%% done ..." msgstr "... %d%% u krye ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Mungon tipi i kategorisë." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Asnjë kategori për të shtuar?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kjo kategori tashmë ekziston: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Mungon tipi i objektit." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Mungon ID-ja e %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Veprim i gabuar gjatë shtimit të %s tek të parapëlqyerat." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nuk selektuar për tu eliminuar asnjë kategori." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Veprim i gabuar gjatë heqjes së %s nga të parapëlqyerat." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -197,55 +158,55 @@ msgstr "Dhjetor" msgid "Settings" msgstr "Parametra" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut më parë" msgstr[1] "%n minuta më parë" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n orë më parë" msgstr[1] "%n orë më parë" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "sot" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "dje" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ditë më parë" msgstr[1] "%n ditë më parë" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n muaj më parë" msgstr[1] "%n muaj më parë" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "vite më parë" @@ -313,27 +274,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Nuk është specifikuar tipi i objektit." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Veprim i gabuar" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nuk është specifikuar emri i app-it." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Skedari i nevojshëm {file} nuk është i instaluar!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Ndarë" @@ -342,6 +282,11 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Veprim i gabuar" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" @@ -470,6 +415,34 @@ msgstr "Email-i u dërgua" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Nuk është specifikuar tipi i objektit." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Elimino" + +#: js/tags.js:31 +msgid "Add" +msgstr "Shto" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -75,15 +75,15 @@ msgstr "Ruajtja në disk dështoi" msgid "Not enough storage available" msgstr "Nuk ka mbetur hapësirë memorizimi e mjaftueshme" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Dosje e pavlefshme." @@ -91,36 +91,36 @@ msgstr "Dosje e pavlefshme." msgid "Files" msgstr "Skedarët" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Nuk ka hapësirë memorizimi e mjaftueshme" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Ngarkimi u anulua." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Ngarkimi i skedarit është në vazhdim. Nqse ndërroni faqen tani ngarkimi do të anulohet." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL-i nuk mund të jetë bosh." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Veprim i gabuar" @@ -132,11 +132,11 @@ msgstr "Nda" msgid "Delete permanently" msgstr "Elimino përfundimisht" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Riemërto" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Pezulluar" @@ -164,13 +164,13 @@ msgstr "U zëvëndësua {new_name} me {old_name}" msgid "undo" msgstr "anulo" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosje" msgstr[1] "%n dosje" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n skedar" @@ -180,7 +180,7 @@ msgstr[1] "%n skedarë" msgid "{dirs} and {files}" msgstr "{dirs} dhe {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Po ngarkoj %n skedar" @@ -227,25 +227,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Kodifikimi u çaktivizua por skedarët tuaj vazhdojnë të jenë të kodifikuar. Ju lutem shkoni tek parametrat personale për të dekodifikuar skedarët tuaj." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët janë të mëdhenj." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Emri" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Dimensioni" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Modifikuar" @@ -254,7 +254,7 @@ msgstr "Modifikuar" msgid "%s could not be renamed" msgstr "Nuk është i mundur riemërtimi i %s" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Ngarko" @@ -290,65 +290,65 @@ msgstr "Dimensioni maksimal i ngarkimit të skedarëve ZIP" msgid "Save" msgstr "Ruaj" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "I ri" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Skedar teksti" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Dosje" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Nga lidhja" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Skedarë të eliminuar" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Nuk keni të drejta për të shkruar këtu." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Këtu nuk ka asgjë. Ngarkoni diçka!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Shkarko" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Hiq ndarjen" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Elimino" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Ngarkimi është shumë i madh" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skedarët që doni të ngarkoni tejkalojnë dimensionet maksimale për ngarkimet në këtë server." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Skedarët po analizohen, ju lutemi pritni." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Analizimi aktual" diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index 1df9139a98..eb6e22d155 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 93df581882..0d34f4b0f1 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index e1a91f7789..240161ccc6 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Kodi është i gabuar. Provojeni përsëri." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Kodi" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Parashtro" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Ju kërkojmë ndjesë, kjo lidhje duket sikur nuk punon më." @@ -54,28 +54,28 @@ msgstr "ndarja është çaktivizuar" msgid "For more info, please ask the person who sent this link." msgstr "Për më shumë informacione, ju lutem pyesni personin që iu dërgoi këtë lidhje." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ndau me ju dosjen %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ndau me ju skedarin %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Shkarko" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Ngarko" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Shikimi paraprak nuk është i mundur për" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index ba9832da5b..e00ea4e65c 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Nuk munda ta eliminoj përfundimisht %s" msgid "Couldn't restore %s" msgstr "Nuk munda ta rivendos %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "ekzekuto operacionin e rivendosjes" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Veprim i gabuar" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "eliminoje përfundimisht skedarin" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Elimino përfundimisht" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Emri" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Eliminuar" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n dosje" -msgstr[1] "%n dosje" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n skedar" -msgstr[1] "%n skedarë" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "rivendosur" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Këtu nuk ka asgjë. Koshi juaj është bosh!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Emri" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Rivendos" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Eliminuar" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Elimino" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 04795ca25d..867fec92f6 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "Azhurno" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "" @@ -181,32 +181,32 @@ msgstr "anulo" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Elimino" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 0c630054e0..a93185b525 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Ndihmë" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 5981837809..20c259a7ce 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "%s ИД нису унети." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Грешка приликом додавања %s у омиљене." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Ни једна категорија није означена за брисање." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Грешка приликом уклањања %s из омиљених" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,59 +156,59 @@ msgstr "Децембар" msgid "Settings" msgstr "Поставке" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "данас" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "јуче" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "месеци раније" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "прошле године" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "година раније" @@ -316,27 +277,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Врста објекта није подешена." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Грешка" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Име програма није унето." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Потребна датотека {file} није инсталирана." - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -345,6 +285,11 @@ msgstr "" msgid "Share" msgstr "Дели" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Грешка" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -473,6 +418,34 @@ msgstr "Порука је послата" msgid "Warning" msgstr "Упозорење" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Врста објекта није подешена." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Обриши" + +#: js/tags.js:31 +msgid "Add" +msgstr "Додај" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "Не могу да пишем на диск" msgid "Not enough storage available" msgstr "Нема довољно простора" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "неисправна фасцикла." @@ -90,36 +90,36 @@ msgstr "неисправна фасцикла." msgid "Files" msgstr "Датотеке" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Нема довољно простора" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "Адреса не може бити празна." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Грешка" @@ -131,11 +131,11 @@ msgstr "Дели" msgid "Delete permanently" msgstr "Обриши за стално" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "На чекању" @@ -163,14 +163,14 @@ msgstr "замењено {new_name} са {old_name}" msgid "undo" msgstr "опозови" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -181,7 +181,7 @@ msgstr[2] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -229,25 +229,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Припремам преузимање. Ово може да потраје ако су датотеке велике." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Име" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Величина" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Измењено" @@ -256,7 +256,7 @@ msgstr "Измењено" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Отпреми" @@ -292,65 +292,65 @@ msgstr "Највећа величина ZIP датотека" msgid "Save" msgstr "Сачувај" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Нова" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "текстуална датотека" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "фасцикла" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Са везе" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Обрисане датотеке" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Овде немате дозволу за писање." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Отпремите нешто!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Преузми" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Укини дељење" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Обриши" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Датотека је превелика" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеке које желите да отпремите прелазе ограничење у величини." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Скенирам датотеке…" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Тренутно скенирање" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index 1740a985aa..922f0c92d8 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Шифровање" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index fef547c2b9..1b2905c7fa 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index db4a7eeb22..6f6e7571af 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Лозинка" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Пошаљи" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Преузми" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Отпреми" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 3d3a324b2b..7b0c084133 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -27,57 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "врати у претходно стање" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Грешка" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Обриши за стално" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Име" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Обрисано" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Овде нема ништа. Корпа за отпатке је празна." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Име" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Врати" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Обрисано" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Обриши" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 4920132355..37f218dc0d 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "Ажурирај" msgid "Updated" msgstr "Ажурирано" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Чување у току..." @@ -181,32 +181,32 @@ msgstr "опозови" msgid "Unable to remove user" msgstr "Не могу да уклоним корисника" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Групе" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Управник групе" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Обриши" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "додај групу" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Морате унети исправно корисничко име" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Грешка при прављењу корисника" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Морате унети исправну лозинку" @@ -384,11 +384,11 @@ msgstr "Више" msgid "Less" msgstr "Мање" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Верзија" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Шифровање" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 7949578324..7838f709e1 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Помоћ" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 4ed4e7b987..619ce22577 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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -57,45 +57,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tip kategorije nije zadan." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Bez dodavanja kategorije?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kategorija već postoji: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tip objekta nije zadan." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nije zadan." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Greška u dodavanju %s u omiljeno." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Kategorije za brisanje nisu izabrane." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Greška u uklanjanju %s iz omiljeno." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -196,59 +157,59 @@ msgstr "Decembar" msgid "Settings" msgstr "Podešavanja" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "Pre par sekundi" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "Danas" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "juče" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "prošlog meseca" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "pre nekoliko meseci" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "prošle godine" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "pre nekoliko godina" @@ -317,27 +278,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Tip objekta nije zadan." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Greška" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Ime aplikacije nije precizirano." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Potreban fajl {file} nije instaliran!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Deljeno" @@ -346,6 +286,11 @@ msgstr "Deljeno" msgid "Share" msgstr "Podeli" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Greška" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Greška pri deljenju" @@ -474,6 +419,34 @@ msgstr "Email poslat" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Tip objekta nije zadan." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Obriši" + +#: js/tags.js:31 +msgid "Add" +msgstr "Dodaj" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "Fajlovi" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Greška" @@ -131,11 +131,11 @@ msgstr "Podeli" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "" @@ -163,14 +163,14 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -181,7 +181,7 @@ msgstr[2] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -229,25 +229,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Ime" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Veličina" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Zadnja izmena" @@ -256,7 +256,7 @@ msgstr "Zadnja izmena" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Pošalji" @@ -292,65 +292,65 @@ msgstr "" msgid "Save" msgstr "Snimi" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Ukljoni deljenje" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Obriši" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index 591d38389c..45326215dc 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 438ab9f198..cc36587c34 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 875bfffa7f..21aa02106f 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Lozinka" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Pošalji" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Preuzmi" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Pošalji" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index f4cf46e9bc..2c962a0d96 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -27,57 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Greška" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Ime" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Ime" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Obriši" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index dbcfe05243..8725e1145b 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "" @@ -181,32 +181,32 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupe" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Obriši" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 4280b44559..6627168bd4 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Pomoć" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 4a8fddec11..02738aeb52 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "%s delade »%s« med dig" #: ajax/share.php:168 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Gick inte att skicka e-post till följande användare: %s" #: ajax/share.php:327 msgid "group" @@ -61,45 +61,6 @@ msgstr "Uppdaterade filcache" msgid "... %d%% done ..." msgstr "... %d%% klart ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategorityp inte angiven." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ingen kategori att lägga till?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Denna kategori finns redan: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekttyp inte angiven." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID inte angiven." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Fel vid tillägg av %s till favoriter." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Inga kategorier valda för radering." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Fel vid borttagning av %s från favoriter." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Ingen bild eller fil har tillhandahållits" @@ -200,55 +161,55 @@ msgstr "December" msgid "Settings" msgstr "Inställningar" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "i dag" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "i går" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "förra månaden" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "månader sedan" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "förra året" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "år sedan" @@ -316,27 +277,6 @@ msgstr "({count} valda)" msgid "Error loading file exists template" msgstr "Fel uppstod filmall existerar" -#: 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 "Objekttypen är inte specificerad." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Fel" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr " Namnet på appen är inte specificerad." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Den nödvändiga filen {file} är inte installerad!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Delad" @@ -345,6 +285,11 @@ msgstr "Delad" msgid "Share" msgstr "Dela" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Fel" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fel vid delning" @@ -423,7 +368,7 @@ msgstr "Sluta dela" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "notifiera användare via e-post" #: js/share.js:361 msgid "can edit" @@ -473,6 +418,34 @@ msgstr "E-post skickat" msgid "Warning" msgstr "Varning" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Objekttypen är inte specificerad." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Radera" + +#: js/tags.js:31 +msgid "Add" +msgstr "Lägg till" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the
    just letting you know that %s shared »%s« with you.
    View it!

    " -msgstr "" +msgstr "Hej där,

    ville bara informera dig om att %s delade »%s« med dig.
    Titta på den!

    " #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.

    " -msgstr "" +msgstr "Utdelningen kommer att upphöra %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 39cd256c86..069cde0763 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Daniel Sandman , 2013 # Gunnar Norin , 2013 # medialabs, 2013 # Magnus Höglund , 2013 @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" +"Last-Translator: Daniel Sandman \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" @@ -78,15 +79,15 @@ msgstr "Misslyckades spara till disk" msgid "Not enough storage available" msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Uppladdning misslyckades. Gick inte att hämta filinformation." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Uppladdning misslyckades. Kunde inte hitta den uppladdade filen" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Felaktig mapp." @@ -94,36 +95,36 @@ msgstr "Felaktig mapp." msgid "Files" msgstr "Filer" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Kan inte ladda upp {filename} eftersom den antingen är en mapp eller har 0 bytes." -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Inte tillräckligt med utrymme tillgängligt" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." -msgstr "" +msgstr "Gick inte att hämta resultat från server." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL kan inte vara tom." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ogiltigt mappnamn. Användning av 'Shared' är reserverad av ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Fel" @@ -135,11 +136,11 @@ msgstr "Dela" msgid "Delete permanently" msgstr "Radera permanent" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Väntar" @@ -167,13 +168,13 @@ msgstr "ersatt {new_name} med {old_name}" msgid "undo" msgstr "ångra" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapp" msgstr[1] "%n mappar" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" @@ -183,7 +184,7 @@ msgstr[1] "%n filer" msgid "{dirs} and {files}" msgstr "{dirs} och {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laddar upp %n fil" @@ -215,14 +216,14 @@ msgstr "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Krypteringsprogrammet är aktiverat men dina nycklar är inte initierade. Vänligen logga ut och in igen" #: js/files.js:72 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Ogiltig privat nyckel i krypteringsprogrammet. Vänligen uppdatera lösenordet till din privata nyckel under dina personliga inställningar för att återfå tillgång till dina krypterade filer." #: js/files.js:76 msgid "" @@ -230,25 +231,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Kryptering inaktiverades men dina filer är fortfarande krypterade. Vänligen gå till sidan för dina personliga inställningar för att dekryptera dina filer." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" -msgstr "" +msgstr "Fel uppstod vid flyttning av fil" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Namn" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Storlek" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Ändrad" @@ -257,7 +258,7 @@ msgstr "Ändrad" msgid "%s could not be renamed" msgstr "%s kunde inte namnändras" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Ladda upp" @@ -293,65 +294,65 @@ msgstr "Största tillåtna storlek för ZIP-filer" msgid "Save" msgstr "Spara" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ny" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Textfil" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Mapp" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Från länk" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Raderade filer" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Du saknar skrivbehörighet här." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Sluta dela" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Radera" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index cda8bdec22..b1e9501ba6 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Daniel Sandman , 2013 # medialabs, 2013 # Magnus Höglund , 2013 # medialabs, 2013 @@ -11,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -49,28 +50,40 @@ msgstr "Kunde inte ändra lösenordet. Kanske det gamla lösenordet inte var rä #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "Den privata lösenordsnyckeln uppdaterades utan problem." +msgstr "Den privata nyckelns lösenord uppdaterades utan problem." #: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel." +msgstr "Kunde inte uppdatera lösenordet för den privata nyckeln. Kanske var det gamla lösenordet fel." -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Krypteringsprogrammet kunde inte initieras! Möjligen blev krypteringsprogrammet återaktiverad under din session. Försök med att logga ut och in igen för att initiera krypteringsprogrammet." -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer." +msgstr "Lösenordet för din privata nyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera lösenordet för den privata nyckeln under dina personliga inställningar för att återfå tillgång till dina filer." + +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" #: hooks/hooks.php:53 msgid "Missing requirements." @@ -83,7 +96,7 @@ msgid "" " the encryption app has been disabled." msgstr "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad." -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "Följande användare har inte aktiverat kryptering:" @@ -93,97 +106,97 @@ msgstr "Sparar..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Gå direkt till din" #: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "personliga inställningar" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Kryptering" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "Aktivera lösenordsnyckel (för att kunna återfå användarens filer vid glömt eller förlorat lösenord):" +msgstr "Aktivera återställningsnyckel (för att kunna återfå användarens filer vid glömt eller förlorat lösenord):" + +#: templates/settings-admin.php:11 +msgid "Recovery key password" +msgstr "Lösenord för återställningsnyckel" #: templates/settings-admin.php:14 -msgid "Recovery key password" -msgstr "Lösenordsnyckel" - -#: templates/settings-admin.php:17 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Upprepa återställningsnyckelns lösenord" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Aktiverad" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Inaktiverad" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "Ändra lösenordsnyckel:" +msgstr "Ändra lösenord för återställningsnyckel:" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "Gammal lösenordsnyckel" +msgstr "Gammalt lösenord för återställningsnyckel" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "Ny lösenordsnyckel" +msgstr "Nytt lösenord för återställningsnyckel" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Upprepa lösenord för ny återställningsnyckel" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Byt lösenord" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "Din privata lösenordsnyckel stämmer inte längre överrens med ditt inloggningslösenord:" +msgstr "Lösenordet till din privata nyckel stämmer inte längre överens med ditt inloggningslösenord:" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "Använd din gamla privata nyckels lösenord som ditt aktuella inloggningslösenord." #: templates/settings-personal.php:14 -msgid "Set your old private key password to your current log-in password." -msgstr "Ställ in din gamla privata lösenordsnyckel till ditt aktuella inloggningslösenord." - -#: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Om du inte kommer ihåg ditt gamla lösenord kan du be din administratör att återställa dina filer." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Gammalt inloggningslösenord" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Nuvarande inloggningslösenord" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "Uppdatera den privata lösenordsnyckeln" +msgstr "Uppdatera lösenordet för din privata nyckel" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Aktivera lösenordsåterställning" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Genom att aktivera detta alternativ kommer du kunna återfå tillgång till dina krypterade filer om du skulle förlora/glömma ditt lösenord" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Inställningarna för filåterställning har uppdaterats" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Kunde inte uppdatera filåterställning" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 8cb6128460..174aab0fd3 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 2716b5f204..d591ac2499 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Lösenordet är fel. Försök igen." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Lösenord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Skicka" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Tyvärr, denna länk verkar inte fungera längre." @@ -55,28 +55,28 @@ msgstr "delning är inaktiverat" msgid "For more info, please ask the person who sent this link." msgstr "För mer information, kontakta den person som skickade den här länken." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delade mappen %s med dig" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delade filen %s med dig" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Ladda upp" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Ingen förhandsgranskning tillgänglig för" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 7116eb647a..ceb1560879 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,55 +29,31 @@ msgstr "Kunde inte radera %s permanent" msgid "Couldn't restore %s" msgstr "Kunde inte återställa %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "utför återställning" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fel" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "radera filen permanent" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Radera permanent" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Namn" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Raderad" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n mapp" -msgstr[1] "%n mappar" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fil" -msgstr[1] "%n filer" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "återställd" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting här. Din papperskorg är tom!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Namn" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Återskapa" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Raderad" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Radera" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index ba933c67ff..8b8e72c53a 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Daniel Sandman , 2013 # medialabs, 2013 # Magnus Höglund , 2013 # medialabs, 2013 @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-11 21:20+0000\n" +"Last-Translator: Daniel Sandman \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" @@ -20,53 +21,53 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:237 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Appen \"%s\" kan inte installeras eftersom att den inte är kompatibel med denna version av ownCloud." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Inget appnamn angivet" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Hjälp" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personligt" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Inställningar" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Användare" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:839 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Misslyckades med att uppgradera \"%s\"." #: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" -msgstr "" +msgstr "Anpassningsbara profilbilder fungerar inte med kryptering ännu." #: private/avatar.php:64 msgid "Unknown filetype" -msgstr "" +msgstr "Okänd filtyp" #: private/avatar.php:69 msgid "Invalid image" -msgstr "" +msgstr "Ogiltig bild" #: private/defaults.php:36 msgid "web services under your control" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 8f2dedc9d5..0737616c28 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -164,15 +164,15 @@ msgstr "Uppdatera" msgid "Updated" msgstr "Uppdaterad" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Välj en profilbild" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrypterar filer... Vänligen vänta, detta kan ta en stund." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Sparar..." @@ -188,32 +188,32 @@ msgstr "ångra" msgid "Unable to remove user" msgstr "Kan inte ta bort användare" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupper" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppadministratör" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Radera" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "lägg till grupp" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Ett giltigt användarnamn måste anges" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Fel vid skapande av användare" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Ett giltigt lösenord måste anges" @@ -391,11 +391,11 @@ msgstr "Mer" msgid "Less" msgstr "Mindre" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "Använd denna adress för att komma åt dina filer via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Kryptering" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Appen för kryptering är inte längre aktiverad, dekryptera alla dina filer" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Inloggningslösenord" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Dekryptera alla filer" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index a59b02df0f..5ab40729a9 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -371,14 +371,18 @@ msgid "" msgstr "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper." #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID Attribut:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "Användarnamn-LDAP User Mapping" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -392,18 +396,18 @@ msgid "" "experimental stage." msgstr "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "Rensa Användarnamn-LDAP User Mapping" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Rensa Gruppnamn-LDAP Group Mapping" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Testa konfigurationen" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Hjälp" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index dceb4c8691..c2d5b1b045 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index 0cf4663cb9..ce2e4e932a 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index 3edc43234c..c05cce48de 100644 --- a/l10n/sw_KE/files_trashbin.po +++ b/l10n/sw_KE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,11 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po index e51b2fcb6f..73c0557efa 100644 --- a/l10n/sw_KE/user_ldap.po +++ b/l10n/sw_KE/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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 1b4795931a..b907698169 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "%s ID வழங்கப்படவில்லை" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "விருப்பங்களுக்கு %s ஐ சேர்ப்பதில் வழு" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "நீக்குவதற்கு எந்தப் பிரிவும் தெரிவுசெய்யப்படவில்லை." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "விருப்பத்திலிருந்து %s ஐ அகற்றுவதில் வழு.உஇஇ" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,55 +156,55 @@ msgstr "மார்கழி" msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "இன்று" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "வருடங்களுக்கு முன்" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "பொருள் வகை குறிப்பிடப்படவில்லை." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "வழு" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "செயலி பெயர் குறிப்பிடப்படவில்லை." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "தேவைப்பட்ட கோப்பு {கோப்பு} நிறுவப்படவில்லை!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "வழு" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "எச்சரிக்கை" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "பொருள் வகை குறிப்பிடப்படவில்லை." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "நீக்குக" + +#: js/tags.js:31 +msgid "Add" +msgstr "சேர்க்க" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "வட்டில் எழுத முடியவில்லை" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "கோப்புகள்" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL வெறுமையாக இருக்கமுடியாது." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "வழு" @@ -131,11 +131,11 @@ msgstr "பகிர்வு" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "நிலுவையிலுள்ள" @@ -163,13 +163,13 @@ msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப் msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,7 +179,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "பெயர்" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "அளவு" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "மாற்றப்பட்டது" @@ -253,7 +253,7 @@ msgstr "மாற்றப்பட்டது" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "பதிவேற்றுக" @@ -289,65 +289,65 @@ msgstr "ZIP கோப்புகளுக்கான ஆகக்கூடி msgid "Save" msgstr "சேமிக்க " -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "புதிய" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "கோப்பு உரை" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "கோப்புறை" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "இணைப்பிலிருந்து" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "பகிரப்படாதது" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "நீக்குக" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "பதிவேற்றல் மிகப்பெரியது" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index 5bdd47956c..b94acf8c75 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "மறைக்குறியீடு" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 42e8617601..2f3a6e88b5 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 73a4ffdeae..b832787803 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "சமர்ப்பிக்குக" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s கோப்புறையானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 937d88eaa1..770827b9b9 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "வழு" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "பெயர்" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "பெயர்" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "நீக்குக" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 2777ae60f0..3eaadd0d54 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "இற்றைப்படுத்தல்" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." @@ -181,32 +181,32 @@ msgstr "முன் செயல் நீக்கம் " msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "குழுக்கள்" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "குழு நிர்வாகி" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "நீக்குக" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "மேலதிக" msgid "Less" msgstr "குறைவான" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "மறைக்குறியீடு" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 3b2312317a..4fa01f7f62 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "உதவி" diff --git a/l10n/te/core.po b/l10n/te/core.po index 28a4577388..e952beee8c 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "ఈ వర్గం ఇప్పటికే ఉంది: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,55 +156,55 @@ msgstr "డిసెంబర్" msgid "Settings" msgstr "అమరికలు" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "ఈరోజు" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "సంవత్సరాల క్రితం" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "పొరపాటు" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "పొరపాటు" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "తొలగించు" + +#: js/tags.js:31 +msgid "Add" +msgstr "చేర్చు" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "పొరపాటు" @@ -131,11 +131,11 @@ msgstr "" msgid "Delete permanently" msgstr "శాశ్వతంగా తొలగించు" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,7 +179,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "పేరు" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "పరిమాణం" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "" @@ -253,7 +253,7 @@ msgstr "" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -289,65 +289,65 @@ msgstr "" msgid "Save" msgstr "భద్రపరచు" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "సంచయం" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "తొలగించు" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index f6bffff306..a161caa551 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -54,14 +54,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -69,6 +69,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -80,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -96,91 +108,91 @@ msgstr "" msgid "personal settings" msgstr "వ్యక్తిగత అమరికలు" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 050d9359e3..41c836e21d 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index 3e0c6d0174..cd51394df1 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "సంకేతపదం" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index a96a83e98d..0d93ad1234 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "పొరపాటు" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "శాశ్వతంగా తొలగించు" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "పేరు" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "పేరు" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "తొలగించు" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index be0dfd5ad0..7dfdba1c72 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "" @@ -181,32 +181,32 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "తొలగించు" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "మరిన్ని" msgid "Less" msgstr "" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 90eb60be58..59679207ef 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "సహాయం" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 541877435d..64f362f166 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,45 +57,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -196,55 +157,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -312,27 +273,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -341,6 +281,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -469,6 +414,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: LANGUAGE \n" @@ -75,15 +75,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -120,7 +120,7 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:537 js/file-upload.js:553 js/files.js:518 js/files.js:556 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "" @@ -180,7 +180,7 @@ msgstr[1] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -236,15 +236,15 @@ msgstr "" msgid "Error moving file" msgstr "" -#: js/files.js:569 templates/index.php:57 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:69 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:71 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "" @@ -253,7 +253,7 @@ msgstr "" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -289,65 +289,65 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:30 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:35 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:41 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:46 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:63 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:76 templates/index.php:77 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "" -#: templates/index.php:82 templates/index.php:83 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "" -#: templates/index.php:96 +#: templates/index.php:95 msgid "Upload too large" msgstr "" -#: templates/index.php:98 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:103 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:106 +#: templates/index.php:105 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 9c0e1c7acd..ca2fd5c93c 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -52,14 +52,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the " "encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private " @@ -67,6 +67,17 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -78,7 +89,7 @@ msgid "" "the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -94,91 +105,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index ccd2902034..9d23b26ddb 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 89ca241853..3b0a125402 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,15 +18,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:16 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:19 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:27 templates/public.php:93 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:44 templates/public.php:47 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:57 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:90 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 71a310eaf0..ef49667fff 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,6 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: ajax/delete.php:42 #, php-format @@ -28,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index c9d3851c6b..00fcf86e8a 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 43d1f696e2..e744928cb9 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,38 +18,38 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: private/app.php:237 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version " "of ownCloud." msgstr "" -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 9eb4e47d7c..d778ec6d02 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,38 +18,38 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: app.php:237 +#: app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version " "of ownCloud." msgstr "" -#: app.php:248 +#: app.php:254 msgid "No app name specified" msgstr "" -#: app.php:352 +#: app.php:359 msgid "Help" msgstr "" -#: app.php:365 +#: app.php:372 msgid "Personal" msgstr "" -#: app.php:376 +#: app.php:383 msgid "Settings" msgstr "" -#: app.php:388 +#: app.php:395 msgid "Users" msgstr "" -#: app.php:401 +#: app.php:408 msgid "Admin" msgstr "" -#: app.php:832 +#: app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 6403c9cc46..25819bab96 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -156,15 +156,15 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "" @@ -382,11 +382,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 448d4b6c3a..bd4cf720ed 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -366,14 +366,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -387,18 +391,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 3d3aa1e694..91204b5795 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index ba1a5c7ddb..06d769f437 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "ยังไม่ได้ระบุรหัส %s" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "เกิดข้อผิดพลาดในการเพิ่ม %s เข้าไปยังรายการโปรด" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "ยังไม่ได้เลือกหมวดหมู่ที่ต้องการลบ" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "เกิดข้อผิดพลาดในการลบ %s ออกจากรายการโปรด" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,51 +156,51 @@ msgstr "ธันวาคม" msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "วันนี้" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "ปี ที่ผ่านมา" @@ -306,27 +267,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "ชนิดของวัตถุยังไม่ได้รับการระบุ" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "ข้อผิดพลาด" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "ชื่อของแอปยังไม่ได้รับการระบุชื่อ" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "ไฟล์ {file} ซึ่งเป็นไฟล์ที่จำเป็นต้องได้รับการติดตั้งไว้ก่อน ยังไม่ได้ถูกติดตั้ง" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "แชร์แล้ว" @@ -335,6 +275,11 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "ข้อผิดพลาด" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -463,6 +408,34 @@ msgstr "ส่งอีเมล์แล้ว" msgid "Warning" msgstr "คำเตือน" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "ชนิดของวัตถุยังไม่ได้รับการระบุ" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "ลบ" + +#: js/tags.js:31 +msgid "Add" +msgstr "เพิ่ม" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้ msgid "Not enough storage available" msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" @@ -90,36 +90,36 @@ msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" msgid "Files" msgstr "ไฟล์" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "มีพื้นที่เหลือไม่เพียงพอ" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL ไม่สามารถเว้นว่างได้" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "ข้อผิดพลาด" @@ -131,11 +131,11 @@ msgstr "แชร์" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" @@ -163,12 +163,12 @@ msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -177,7 +177,7 @@ msgstr[0] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -223,25 +223,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "ชื่อ" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "ขนาด" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "แก้ไขแล้ว" @@ -250,7 +250,7 @@ msgstr "แก้ไขแล้ว" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "อัพโหลด" @@ -286,65 +286,65 @@ msgstr "ขนาดไฟล์ ZIP สูงสุด" msgid "Save" msgstr "บันทึก" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "อัพโหลดไฟล์ใหม่" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "ไฟล์ข้อความ" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "แฟ้มเอกสาร" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "จากลิงก์" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "ลบ" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index a9e0be2e60..180c98b4fa 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "การเข้ารหัส" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 4bdc5618a2..cbfb20ddd2 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 467e3de3d8..7049133ac0 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "รหัสผ่าน" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "ส่ง" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "อัพโหลด" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index c54132eb76..bf17554c81 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "ดำเนินการคืนค่า" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "ชื่อ" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "ลบแล้ว" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "ชื่อ" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "คืนค่า" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "ลบแล้ว" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ลบ" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index ee691f79fb..b892b378a0 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "อัพเดท" msgid "Updated" msgstr "อัพเดทแล้ว" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." @@ -181,32 +181,32 @@ msgstr "เลิกทำ" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "กลุ่ม" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "ผู้ดูแลกลุ่ม" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "ลบ" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "มาก" msgid "Less" msgstr "น้อย" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "การเข้ารหัส" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index f59f5c8333..e5b9f4bd3e 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "ช่วยเหลือ" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 6ba5e5d6be..94ad3785f9 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -6,13 +6,14 @@ # Fatih Aşıcı , 2013 # ismail yenigül , 2013 # tridinebandim, 2013 +# volkangezer , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 19:20+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +29,7 @@ msgstr "%s sizinle »%s« paylaşımında bulundu" #: ajax/share.php:168 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Şu kullanıcılara posta gönderilemedi: %s" #: ajax/share.php:327 msgid "group" @@ -59,64 +60,25 @@ msgstr "Dosya önbelleği güncellendi" msgid "... %d%% done ..." msgstr "%%%d tamamlandı ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategori türü girilmedi." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Eklenecek kategori yok?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Bu kategori zaten mevcut: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Nesne türü desteklenmemektedir." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID belirtilmedi." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "%s favorilere eklenirken hata oluştu" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Silmek için bir kategori seçilmedi" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "%s favorilere çıkarılırken hata oluştu" - #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Resim veya dosya belirtilmedi" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Bilinmeyen dosya türü" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Geçersiz resim" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Kullanılabilir geçici profil resmi yok, tekrar deneyin" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Kesme verisi sağlanmamış" #: js/config.php:32 msgid "Sunday" @@ -198,55 +160,55 @@ msgstr "Aralık" msgid "Settings" msgstr "Ayarlar" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n dakika önce" msgstr[1] "%n dakika önce" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n saat önce" msgstr[1] "%n saat önce" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "bugün" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "dün" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n gün önce" msgstr[1] "%n gün önce" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "geçen ay" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ay önce" msgstr[1] "%n ay önce" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "ay önce" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "geçen yıl" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "yıl önce" @@ -256,7 +218,7 @@ msgstr "seç" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Dosya seçici şablonu yüklenirken hata: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -272,27 +234,27 @@ msgstr "Tamam" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "İleti şablonu yüklenirken hata: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} dosya çakışması" +msgstr[1] "{count} dosya çakışması" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Bir dosya çakışması" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Hangi dosyaları saklamak istiyorsunuz?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Eğer iki sürümü de seçerseniz, kopyalanan dosya ismine eklenmiş bir sayı içerecektir." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -300,40 +262,19 @@ msgstr "İptal" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Devam et" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(tümü seçildi)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} seçildi)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -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 "Nesne türü belirtilmemiş." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Hata" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "uygulama adı belirtilmedi." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "İhtiyaç duyulan {file} dosyası kurulu değil." +msgstr "Dosya mevcut şablonu yüklenirken hata" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -343,6 +284,11 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Hata" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " @@ -421,7 +367,7 @@ msgstr "Paylaşılmayan" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "kullanıcıyı e-posta ile bildir" #: js/share.js:361 msgid "can edit" @@ -471,6 +417,34 @@ msgstr "Eposta gönderildi" msgid "Warning" msgstr "Uyarı" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Nesne türü belirtilmemiş." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Yeni girin" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Sil" + +#: js/tags.js:31 +msgid "Add" +msgstr "Ekle" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Etiketleri düzenle" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "İletişim şablonu yüklenirken hata: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Silmek için bir etiket seçilmedi." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the
    just letting you know that %s shared »%s« with you.
    View it!

    " -msgstr "" +msgstr "Merhaba,

    %s sizinle »%s« paylaşımında bulundu.
    Paylaşımı gör!

    İyi günler!" #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.

    " -msgstr "" +msgstr "Bu paylaşım %s tarihinde dolacaktır.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 397ed7bd96..3359a4c5ac 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -6,13 +6,14 @@ # alicanbatur , 2013 # ismail yenigül , 2013 # tridinebandim, 2013 +# volkangezer , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 16:30+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,15 +78,15 @@ msgstr "Diske yazılamadı" msgid "Not enough storage available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Yükleme başarısız. Dosya bilgisi alınamadı." -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Yükleme başarısız. Yüklenen dosya bulunamadı" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Geçersiz dizin." @@ -93,36 +94,36 @@ msgstr "Geçersiz dizin." msgid "Files" msgstr "Dosyalar" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Bir dizin veya 0 bayt olduğundan {filename} yüklenemedi" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Yeterli disk alanı yok" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." -msgstr "" +msgstr "Sunucudan sonuç alınamadı." -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL boş olamaz." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Geçersiz dizin adı. 'Shared' dizin ismi kullanımı ownCloud tarafından rezerve edilmiştir." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Hata" @@ -134,11 +135,11 @@ msgstr "Paylaş" msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Bekliyor" @@ -166,13 +167,13 @@ msgstr "{new_name} ismi {old_name} ile değiştirildi" msgid "undo" msgstr "geri al" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" @@ -180,9 +181,9 @@ msgstr[1] "%n dosya" #: js/filelist.js:541 msgid "{dirs} and {files}" -msgstr "" +msgstr "{dirs} ve {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n dosya yükleniyor" @@ -214,14 +215,14 @@ msgstr "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Şifreleme Uygulaması etkin ancak anahtarlarınız başlatılmamış. Lütfen oturumu kapatıp yeniden açın" #: js/files.js:72 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Şifreleme Uygulaması için geçersiz özel anahtar. Lütfen şifreli dosyalarınıza erişimi tekrar kazanabilmek için kişisel ayarlarınızdan özel anahtar parolanızı güncelleyin." #: js/files.js:76 msgid "" @@ -229,25 +230,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçiniz." -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" -msgstr "" +msgstr "Dosya taşıma hatası" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "İsim" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Boyut" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Değiştirilme" @@ -256,7 +257,7 @@ msgstr "Değiştirilme" msgid "%s could not be renamed" msgstr "%s yeniden adlandırılamadı" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Yükle" @@ -292,65 +293,65 @@ msgstr "ZIP dosyaları için en fazla girdi sayısı" msgid "Save" msgstr "Kaydet" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Yeni" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Metin dosyası" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Klasör" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Bağlantıdan" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Dosyalar silindi" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Buraya erişim hakkınız yok." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "İndir" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Paylaşılmayan" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Sil" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Yükleme çok büyük" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 90a55700ef..7d868cb5af 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -54,14 +54,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -69,6 +69,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -80,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -96,91 +108,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Şifreleme" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Etkinleştirildi" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Devre dışı" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Parola değiştir" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Dosya kurtarma ayarları güncellendi" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Dosya kurtarma güncellenemedi" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 90d4fe2ca5..cfb6e7f2ed 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index eea57d4dbd..eb3422d03f 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# volkangezer , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 16:30+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,63 +19,63 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." -msgstr "" +msgid "This share is password-protected" +msgstr "Bu paylaşım parola korumalı" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "Parola hatalı. Yeniden deneyin." + +#: templates/authenticate.php:10 msgid "Password" msgstr "Parola" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Gönder" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Üzgünüz, bu bağlantı artık çalışıyor gibi görünmüyor" #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Sebepleri şunlar olabilir:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "öge kaldırılmış" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "bağlantı süresi dolmuş" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "paylaşım devre dışı bırakılmış" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Daha fazla bilgi için bu bağlantıyı aldığınız kişi ile iletişime geçin." -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "İndir" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Yükle" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Kullanılabilir önizleme yok" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 431d26bfe7..2e63ef8378 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: tridinebandim\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "%s Kalıcı olarak silinemedi" msgid "Couldn't restore %s" msgstr "%s Geri yüklenemedi" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "Geri yükleme işlemini gerçekleştir" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Hata" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Dosyayı kalıcı olarak sil" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Kalıcı olarak sil" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "İsim" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Silindi" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n dizin" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n dosya" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "geri yüklendi" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Burası boş. Çöp kutun tamamen boş." -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "İsim" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Geri yükle" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Silindi" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Sil" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index 57a5449a01..b6fd839558 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# volkangezer , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 19:10+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,16 +29,16 @@ msgstr "Sürümler" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "{file} dosyası {timestamp} gözden geçirmesine geri alınamadı." #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "Daha fazla sürüm..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "Başka sürüm mevcut değil" -#: js/versions.js:149 +#: js/versions.js:147 msgid "Restore" msgstr "Geri yükle" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 6a247032c2..3d7178c5ba 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Caner BAŞARAN , 2013 # ismail yenigül , 2013 # tridinebandim, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-08 21:50+0000\n" +"Last-Translator: Caner BAŞARAN \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,53 +20,53 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: private/app.php:237 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Owncloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Uygulama adı belirtimedli" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Yardım" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Kişisel" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Ayarlar" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Kullanıcılar" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Yönetici" -#: private/app.php:832 +#: private/app.php:839 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" yükseltme başarısız oldu." #: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" -msgstr "" +msgstr "Hala özel profil resminiz şifreleme ile çalışmıyor" #: private/avatar.php:64 msgid "Unknown filetype" -msgstr "" +msgstr "Bilinmeyen dosya türü" #: private/avatar.php:69 msgid "Invalid image" -msgstr "" +msgstr "Geçersiz resim" #: private/defaults.php:36 msgid "web services under your control" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 7f1ee5060c..b04460e51a 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 19:10+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,32 +90,32 @@ msgstr "Uygulama güncellenemedi." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Hatalı parola" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Kullanıcı girilmedi" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Lütfen bir yönetici kurtarma parolası girin, aksi takdirde tüm kullanıcı verisi kaybedilecek" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Hatalı yönetici kurtarma parolası. Lütfen parolayı denetleyip yeniden deneyin." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "Arka uç parola değişimini desteklemiyor ancak kullanıcı şifreleme anahtarı başarıyla güncellendi." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Parola değiştirilemiyor" #: js/apps.js:43 msgid "Update to {appversion}" @@ -161,15 +161,15 @@ msgstr "Güncelleme" msgid "Updated" msgstr "Güncellendi" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Bir profil fotoğrafı seçin" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dosyaların şifresi çözülüyor... Lütfen bekleyin, bu biraz zaman alabilir." -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Kaydediliyor..." @@ -185,32 +185,32 @@ msgstr "geri al" msgid "Unable to remove user" msgstr "Kullanıcı kaldırılamıyor" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruplar" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Yönetici Grubu " -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Sil" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "grup ekle" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Geçerli bir kullanıcı adı mutlaka sağlanmalı" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Kullanıcı oluşturulurken hata" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Geçerli bir parola mutlaka sağlanmalı" @@ -346,11 +346,11 @@ msgstr "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşma #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Posta bilgilendirmesine izin ver" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver" #: templates/admin.php:178 msgid "Security" @@ -388,11 +388,11 @@ msgstr "Daha fazla" msgid "Less" msgstr "Az" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr " Dosyalarınıza WebDAV üzerinen erişme için bu adresi kullanın" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Şifreleme" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "Şifreleme uygulaması artık etkin değil, tüm dosyanın şifresini çöz" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "Oturum açma parolası" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "Tüm dosyaların şifresini çözme" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 34a5b99bd6..1b8fd4c219 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -370,14 +370,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Yardım" diff --git a/l10n/tr/user_webdavauth.po b/l10n/tr/user_webdavauth.po index d138eeec59..0844a027bc 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/user_webdavauth.po @@ -6,14 +6,15 @@ # alpere , 2012 # Necdet Yücel , 2012 # atakan96 , 2013 +# volkangezer , 2013 # KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 16:30+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,11 +28,11 @@ msgstr "WebDAV Kimlik doğrulaması" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adres:" #: templates/settings.php:7 msgid "" "The user credentials will be sent to this address. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "Kullanıcı kimlik bilgileri bu adrese gönderilecek. Bu eklenti yanıtı kontrol edecek ve 401 ile 403 HTTP durum kodlarını geçersiz kimlik bilgileri olarak, diğer yanıtları ise doğru kimlik bilgileri olarak algılayacaktır." diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 75bc1a3a1f..775b4e4459 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,51 +156,51 @@ msgstr "كۆنەك" msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "بۈگۈن" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -306,27 +267,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "خاتالىق" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -335,6 +275,11 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "خاتالىق" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -463,6 +408,34 @@ msgstr "" msgid "Warning" msgstr "ئاگاھلاندۇرۇش" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "ئۆچۈر" + +#: js/tags.js:31 +msgid "Add" +msgstr "قوش" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -74,15 +74,15 @@ msgstr "دىسكىغا يازالمىدى" msgid "Not enough storage available" msgstr "يېتەرلىك ساقلاش بوشلۇقى يوق" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "ھۆججەتلەر" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "يېتەرلىك بوشلۇق يوق" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "يۈكلەشتىن ۋاز كەچتى." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋاتىدۇ. Leaving the page now will cancel the upload." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "خاتالىق" @@ -131,11 +131,11 @@ msgstr "ھەمبەھىر" msgid "Delete permanently" msgstr "مەڭگۈلۈك ئۆچۈر" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "ئات ئۆزگەرت" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" @@ -163,12 +163,12 @@ msgstr "" msgid "undo" msgstr "يېنىۋال" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -177,7 +177,7 @@ msgstr[0] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -223,25 +223,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "ئاتى" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "چوڭلۇقى" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "ئۆزگەرتكەن" @@ -250,7 +250,7 @@ msgstr "ئۆزگەرتكەن" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "يۈكلە" @@ -286,65 +286,65 @@ msgstr "" msgid "Save" msgstr "ساقلا" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "يېڭى" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "تېكىست ھۆججەت" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "قىسقۇچ" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "ئۆچۈرۈلگەن ھۆججەتلەر" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "بۇ جايدا ھېچنېمە يوق. Upload something!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "چۈشۈر" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "ئۆچۈر" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "يۈكلەندىغىنى بەك چوڭ" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "" diff --git a/l10n/ug/files_encryption.po b/l10n/ug/files_encryption.po index 529b8ab659..098a668d1d 100644 --- a/l10n/ug/files_encryption.po +++ b/l10n/ug/files_encryption.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "شىفىرلاش" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index aa20879784..0b0070f309 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Abduqadir Abliz \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index b1dd5be964..fbfd33fa79 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "ئىم" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "تاپشۇر" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "چۈشۈر" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "يۈكلە" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 103286687b..5b6c67d9e3 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,53 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "خاتالىق" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "مەڭگۈلۈك ئۆچۈر" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "ئاتى" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "ئۆچۈرۈلدى" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "ئاتى" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "ئۆچۈرۈلدى" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ئۆچۈر" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 95ccc43e5f..cdb75a7577 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -158,15 +158,15 @@ msgstr "يېڭىلا" msgid "Updated" msgstr "يېڭىلاندى" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" @@ -182,32 +182,32 @@ msgstr "يېنىۋال" msgid "Unable to remove user" msgstr "ئىشلەتكۈچىنى چىقىرىۋېتەلمەيدۇ" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "گۇرۇپپا" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "گۇرۇپپا باشقۇرغۇچى" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "ئۆچۈر" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "گۇرۇپپا قوش" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "ئىشلەتكۈچى قۇرۇۋاتقاندا خاتالىق كۆرۈلدى" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك" @@ -385,11 +385,11 @@ msgstr "تېخىمۇ كۆپ" msgid "Less" msgstr "ئاز" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "شىفىرلاش" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 23d2804c30..e9dddab50d 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "ياردەم" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 90400bb72e..40c494f87d 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "Ця категорія вже існує: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Не вказано тип об'єкту." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID не вказано." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Помилка при додаванні %s до обраного." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Жодної категорії не обрано для видалення." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Помилка при видалені %s із обраного." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,59 +156,59 @@ msgstr "Грудень" msgid "Settings" msgstr "Налаштування" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "сьогодні" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "вчора" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "минулого місяця" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "місяці тому" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "минулого року" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "роки тому" @@ -316,27 +277,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Не визначено тип об'єкту." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Помилка" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Не визначено ім'я програми." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Необхідний файл {file} не встановлено!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Опубліковано" @@ -345,6 +285,11 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Помилка" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -473,6 +418,34 @@ msgstr "Ел. пошта надіслана" msgid "Warning" msgstr "Попередження" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Не визначено тип об'єкту." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Видалити" + +#: js/tags.js:31 +msgid "Add" +msgstr "Додати" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -75,15 +75,15 @@ msgstr "Невдалося записати на диск" msgid "Not enough storage available" msgstr "Місця більше немає" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Невірний каталог." @@ -91,36 +91,36 @@ msgstr "Невірний каталог." msgid "Files" msgstr "Файли" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Місця більше немає" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL не може бути пустим." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Неправильне ім'я теки. Використання 'Shared' зарезервовано ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Помилка" @@ -132,11 +132,11 @@ msgstr "Поділитися" msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Очікування" @@ -164,14 +164,14 @@ msgstr "замінено {new_name} на {old_name}" msgid "undo" msgstr "відмінити" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n тека" msgstr[1] "%n тека" msgstr[2] "%n теки" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -182,7 +182,7 @@ msgstr[2] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -230,25 +230,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Ім'я" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Розмір" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Змінено" @@ -257,7 +257,7 @@ msgstr "Змінено" msgid "%s could not be renamed" msgstr "%s не може бути перейменований" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Вивантажити" @@ -293,65 +293,65 @@ msgstr "Максимальний розмір завантажуємого ZIP msgid "Save" msgstr "Зберегти" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Створити" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Текстовий файл" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Тека" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "З посилання" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "Видалено файлів" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "У вас тут немає прав на запис." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Тут нічого немає. Відвантажте що-небудь!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Завантажити" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Закрити доступ" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Видалити" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Файл занадто великий" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Файли скануються, зачекайте, будь-ласка." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Поточне сканування" diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index 24aa22b936..babec25777 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -54,14 +54,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -69,6 +69,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -80,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -96,91 +108,91 @@ msgstr "" msgid "personal settings" msgstr "особисті налаштування" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Шифрування" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Змінити Пароль" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index a6bc125a32..04a0714762 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Soul Kim \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index c12dc78801..206c646ce7 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Пароль" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Передати" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s опублікував каталог %s для Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s опублікував файл %s для Вас" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Завантажити" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Вивантажити" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Попередній перегляд недоступний для" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index ce817bd5a2..2de60eeacd 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -28,57 +28,31 @@ msgstr "Неможливо видалити %s назавжди" msgid "Couldn't restore %s" msgstr "Неможливо відновити %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "виконати операцію відновлення" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Помилка" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "видалити файл назавжди" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Видалити назавжди" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Ім'я" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Видалено" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "відновлено" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Нічого немає. Ваший кошик для сміття пустий!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Ім'я" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Відновити" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Видалено" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Видалити" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 9eb33b3246..857b6457b8 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -158,15 +158,15 @@ msgstr "Оновити" msgid "Updated" msgstr "Оновлено" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Зберігаю..." @@ -182,32 +182,32 @@ msgstr "відмінити" msgid "Unable to remove user" msgstr "Неможливо видалити користувача" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Групи" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Адміністратор групи" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Видалити" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "додати групу" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Потрібно задати вірне ім'я користувача" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Помилка при створенні користувача" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Потрібно задати вірний пароль" @@ -385,11 +385,11 @@ msgstr "Більше" msgid "Less" msgstr "Менше" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Версія" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Шифрування" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index ef8068cc54..42346f31ac 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "Тестове налаштування" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Допомога" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 9f41f5bb7e..2281be7ecc 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -311,27 +272,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "ایرر" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "" @@ -340,6 +280,11 @@ msgstr "" msgid "Share" msgstr "" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "ایرر" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -468,6 +413,34 @@ msgstr "" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "شامل کریں" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index 0d12edb366..773c095675 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "پاسورڈ" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 3056d8fb95..3673a0eda0 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -27,42 +27,10 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "ایرر" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +39,19 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index d79a6ad3ff..6a4acc765b 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "مدد" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 0304dc8ded..47f0bfdb45 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -57,45 +57,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kiểu hạng mục không được cung cấp." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Không có danh mục được thêm?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Danh mục này đã tồn tại: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Loại đối tượng không được cung cấp." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID không được cung cấp." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Lỗi thêm %s vào mục yêu thích." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Bạn chưa chọn mục để xóa" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Lỗi xóa %s từ mục yêu thích." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -196,51 +157,51 @@ msgstr "Tháng 12" msgid "Settings" msgstr "Cài đặt" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "hôm nay" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "tháng trước" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "tháng trước" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "năm trước" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "năm trước" @@ -307,27 +268,6 @@ msgstr "" msgid "Error loading file exists template" 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 "Loại đối tượng không được chỉ định." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "Lỗi" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Tên ứng dụng không được chỉ định." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Tập tin cần thiết {file} không được cài đặt!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "Được chia sẻ" @@ -336,6 +276,11 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "Lỗi" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -464,6 +409,34 @@ msgstr "Email đã được gửi" msgid "Warning" msgstr "Cảnh báo" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Loại đối tượng không được chỉ định." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Xóa" + +#: js/tags.js:31 +msgid "Add" +msgstr "Thêm" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -75,15 +75,15 @@ msgstr "Không thể ghi " msgid "Not enough storage available" msgstr "Không đủ không gian lưu trữ" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "Thư mục không hợp lệ" @@ -91,36 +91,36 @@ msgstr "Thư mục không hợp lệ" msgid "Files" msgstr "Tập tin" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "Không đủ chỗ trống cần thiết" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL không được để trống." -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "Lỗi" @@ -132,11 +132,11 @@ msgstr "Chia sẻ" msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "Đang chờ" @@ -164,12 +164,12 @@ msgstr "đã thay thế {new_name} bằng {old_name}" msgid "undo" msgstr "lùi lại" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -178,7 +178,7 @@ msgstr[0] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -224,25 +224,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "Tên" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "Thay đổi" @@ -251,7 +251,7 @@ msgstr "Thay đổi" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Tải lên" @@ -287,65 +287,65 @@ msgstr "Kích thước tối đa cho các tập tin ZIP" msgid "Save" msgstr "Lưu" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Mới" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "Tập tin văn bản" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Thư mục" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Từ liên kết" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "File đã bị xóa" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "Bạn không có quyền ghi vào đây." -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "Tải về" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "Xóa" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ ." -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "Hiện tại đang quét" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index acda5db65a..1d2bdd714c 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -54,14 +54,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -69,6 +69,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -80,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -96,91 +108,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Mã hóa" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Bật" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Tắt" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Đổi Mật khẩu" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 0d5260e98e..a05ce08216 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index f370ab63c6..bdf0ade051 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Mật khẩu" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Xác nhận" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s đã chia sẻ thư mục %s với bạn" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s đã chia sẻ tập tin %s với bạn" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Tải về" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Tải lên" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "Không có xem trước cho" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 6abf104c6a..dec54c2a7a 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "Không thể óa %s vĩnh viễn" msgid "Couldn't restore %s" msgstr "Không thể khôi phục %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "thực hiện phục hồi" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Lỗi" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "xóa file vĩnh viễn" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Xóa vĩnh vễn" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Tên" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Đã xóa" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Không có gì ở đây. Thùng rác của bạn rỗng!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Tên" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Khôi phục" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Đã xóa" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Xóa" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 16e90c1a64..c743f2a85d 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "Cập nhật" msgid "Updated" msgstr "Đã cập nhật" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "Đang lưu..." @@ -181,32 +181,32 @@ msgstr "lùi lại" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Nhóm" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Nhóm quản trị" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Xóa" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "hơn" msgid "Less" msgstr "ít" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "Mã hóa" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 6bcd44e766..732d66664e 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "Giúp đỡ" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index ea7c79d482..46282f4b06 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -59,45 +59,6 @@ msgstr "文件缓存已更新" msgid "... %d%% done ..." msgstr "...已完成 %d%% ..." -#: 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 "此分类已存在:%s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "未提供对象类型。" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID未提供。" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "向收藏夹中新增%s时出错。" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "没有选择要删除的类别" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "从收藏夹中移除%s时出错。" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -198,51 +159,51 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "秒前" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "今天" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "昨天" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "上月" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "月前" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "去年" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "年前" @@ -309,27 +270,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "未指定对象类型。" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "错误" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "未指定应用名称。" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "所需文件{file}未安装!" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "已共享" @@ -338,6 +278,11 @@ msgstr "已共享" msgid "Share" msgstr "分享" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "错误" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "共享时出错" @@ -466,6 +411,34 @@ msgstr "邮件已发送" msgid "Warning" msgstr "警告" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "未指定对象类型。" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "删除" + +#: js/tags.js:31 +msgid "Add" +msgstr "增加" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -77,15 +77,15 @@ msgstr "写入磁盘失败" msgid "Not enough storage available" msgstr "没有足够的存储空间" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "无效文件夹。" @@ -93,36 +93,36 @@ msgstr "无效文件夹。" msgid "Files" msgstr "文件" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "没有足够可用空间" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "上传已取消" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL不能为空" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "错误" @@ -134,11 +134,11 @@ msgstr "分享" msgid "Delete permanently" msgstr "永久删除" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "重命名" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "等待" @@ -166,12 +166,12 @@ msgstr "已将 {old_name}替换成 {new_name}" msgid "undo" msgstr "撤销" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 文件夹" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n个文件" @@ -180,7 +180,7 @@ msgstr[0] "%n个文件" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "下载正在准备中。如果文件较大可能会花费一些时间。" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "名称" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "大小" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "修改日期" @@ -253,7 +253,7 @@ msgstr "修改日期" msgid "%s could not be renamed" msgstr "%s 不能被重命名" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "上传" @@ -289,65 +289,65 @@ msgstr "ZIP 文件的最大输入大小" msgid "Save" msgstr "保存" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "新建" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "文本文件" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "文件夹" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "来自链接" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "已删除文件" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "您没有写权限" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "下载" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "取消共享" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "删除" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大容量限制" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index e61f96811e..c64e70f1ea 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -56,14 +56,14 @@ msgid "" "correct." msgstr "无法更新私钥密码。可能旧密码不正确。" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -71,6 +71,18 @@ msgid "" "files." msgstr "您的私有密钥无效!也许是您在 ownCloud 系统外更改了密码 (比如,在您的公司目录)。您可以在个人设置里更新您的私钥密码来恢复访问你的加密文件。" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -82,7 +94,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -98,91 +110,91 @@ msgstr "" msgid "personal settings" msgstr "个人设置" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "加密" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "启用恢复密钥(允许你在密码丢失后恢复文件):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "恢复密钥密码" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "开启" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "禁用" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "更改恢复密钥密码" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "旧的恢复密钥密码" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "新的恢复密钥密码" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "修改密码" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "您的私钥密码不再匹配您的登录密码:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "讲您旧的私钥密码改为当前登录密码。" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "如果您记不住旧的密码,您可以请求管理员恢复您的文件。" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "旧登录密码" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "当前登录密码" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "更新私钥密码" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "启用密码恢复:" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "启用该项将允许你在密码丢失后取回您的加密文件" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "文件恢复设置已更新" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "不能更新文件恢复" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 3a5df5a89f..240f27b238 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 5887baf02b..bcee07f59b 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: waterone \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "用户名或密码错误!请重试" -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "密码" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "提交" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "抱歉,此链接已失效" @@ -54,28 +54,28 @@ msgstr "共享已禁用" msgid "For more info, please ask the person who sent this link." msgstr "欲知详情,请联系发给你链接的人。" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s与您共享了%s文件夹" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s与您共享了%s文件" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "下载" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上传" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "没有预览" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index b4b860b976..62a8ff751d 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: waterone \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,53 +28,31 @@ msgstr "无法彻底删除文件%s" msgid "Couldn't restore %s" msgstr "无法恢复%s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "执行恢复操作" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "错误" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "彻底删除文件" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "永久删除" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "名称" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "已删除" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n 文件夹" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n个文件" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "已恢复" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "这里没有东西. 你的回收站是空的!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "名称" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "恢复" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "已删除" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "删除" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index d24fe6ee6d..9b49e6cbff 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -162,15 +162,15 @@ msgstr "更新" msgid "Updated" msgstr "已更新" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "正在解密文件... 请稍等,可能需要一些时间。" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "保存中" @@ -186,32 +186,32 @@ msgstr "撤销" msgid "Unable to remove user" msgstr "无法移除用户" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "组" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "组管理员" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "删除" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "添加组" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "必须提供合法的用户名" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "创建用户出错" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "必须提供合法的密码" @@ -389,11 +389,11 @@ msgstr "更多" msgid "Less" msgstr "更少" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "版本" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "使用该链接 通过WebDAV访问你的文件" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "加密" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "加密 app 未启用,将解密您所有文件" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "登录密码" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "解密所有文件" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index fc1b3807b3..d3df2b84ca 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -369,14 +369,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID属性:" +msgid "UUID Attribute for Users:" +msgstr "" #: templates/settings.php:104 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:105 msgid "Username-LDAP User Mapping" msgstr "用户名-LDAP用户映射" -#: templates/settings.php:105 +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -390,18 +394,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "清除用户-LDAP用户映射" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "清除组用户-LDAP级映射" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "测试配置" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "帮助" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 9c319138ec..f1980c06f4 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -56,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." 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 "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,51 +156,51 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "今日" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "昨日" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "前一月" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "個月之前" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -306,27 +267,6 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "錯誤" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "已分享" @@ -335,6 +275,11 @@ msgstr "已分享" msgid "Share" msgstr "分享" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "錯誤" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -463,6 +408,34 @@ msgstr "郵件已傳" msgid "Warning" msgstr "" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "刪除" + +#: js/tags.js:31 +msgid "Add" +msgstr "加入" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -74,15 +74,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "" @@ -90,36 +90,36 @@ msgstr "" msgid "Files" msgstr "文件" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "錯誤" @@ -131,11 +131,11 @@ msgstr "分享" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "" @@ -163,12 +163,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -177,7 +177,7 @@ msgstr[0] "" msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -223,25 +223,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "名稱" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "" @@ -250,7 +250,7 @@ msgstr "" msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "上傳" @@ -286,65 +286,65 @@ msgstr "" msgid "Save" msgstr "儲存" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "下載" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "取消分享" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "刪除" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index eb5e995665..65bf0507a6 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -53,14 +53,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,6 +68,18 @@ msgid "" "files." msgstr "" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -79,7 +91,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -95,91 +107,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "加密" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index a0ce717aa2..3cd38cee71 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 51163c90a9..bdb1f33a77 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "密碼" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "下載" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上傳" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index ad4303aa9e..962276b300 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "錯誤" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "名稱" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "名稱" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "刪除" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 1f4b86c3bb..b6d9bd402d 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -157,15 +157,15 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "" @@ -181,32 +181,32 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "群組" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "刪除" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" @@ -384,11 +384,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "加密" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 794b71762b..504c7ca378 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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -368,14 +368,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -389,18 +393,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "幫助" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 060ef0108c..e1769c4b25 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/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-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -58,45 +58,6 @@ msgstr "已更新檔案快取" msgid "... %d%% done ..." msgstr "已完成 %d%%" -#: 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 "分類已經存在:%s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "未指定物件類型" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "未提供 %s ID 。" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "加入 %s 到最愛時發生錯誤。" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "沒有選擇要刪除的分類。" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "從最愛移除 %s 時發生錯誤。" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "未提供圖片或檔案" @@ -197,51 +158,51 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "今天" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "昨天" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "上個月" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "幾個月前" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "去年" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "幾年前" @@ -308,27 +269,6 @@ msgstr "(已選 {count} 項)" msgid "Error loading file exists template" msgstr "載入檔案存在樣板出錯" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "未指定物件類型。" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:667 js/share.js:679 -msgid "Error" -msgstr "錯誤" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "沒有指定 app 名稱。" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "沒有安裝所需的檔案 {file} !" - #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" msgstr "已分享" @@ -337,6 +277,11 @@ msgstr "已分享" msgid "Share" msgstr "分享" +#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 +#: js/share.js:679 +msgid "Error" +msgstr "錯誤" + #: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -465,6 +410,34 @@ msgstr "Email 已寄出" msgid "Warning" msgstr "警告" +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "未指定物件類型。" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "刪除" + +#: js/tags.js:31 +msgid "Add" +msgstr "增加" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -75,15 +75,15 @@ msgstr "寫入硬碟失敗" msgid "Not enough storage available" msgstr "儲存空間不足" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:122 ajax/upload.php:148 msgid "Upload failed. Could not get file info." msgstr "上傳失敗,無法取得檔案資訊" -#: ajax/upload.php:136 +#: ajax/upload.php:138 msgid "Upload failed. Could not find uploaded file" msgstr "上傳失敗,找不到上傳的檔案" -#: ajax/upload.php:160 +#: ajax/upload.php:165 msgid "Invalid directory." msgstr "無效的資料夾" @@ -91,36 +91,36 @@ msgstr "無效的資料夾" msgid "Files" msgstr "檔案" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "因為 {filename} 是個目錄或是大小為零,所以無法上傳" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "沒有足夠的可用空間" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "上傳已取消" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "無法從伺服器取回結果" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中,離開此頁面將會取消上傳。" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "URL 不能為空" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 msgid "Error" msgstr "錯誤" @@ -132,11 +132,11 @@ msgstr "分享" msgid "Delete permanently" msgstr "永久刪除" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "重新命名" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:789 msgid "Pending" msgstr "等候中" @@ -164,12 +164,12 @@ msgstr "使用 {new_name} 取代 {old_name}" msgid "undo" msgstr "復原" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個資料夾" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個檔案" @@ -178,7 +178,7 @@ msgstr[0] "%n 個檔案" msgid "{dirs} and {files}" msgstr "{dirs} 和 {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:732 js/filelist.js:770 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個檔案正在上傳" @@ -224,25 +224,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "加密已經被停用,但是您的舊檔案還是處於已加密的狀態,請前往個人設定以解密這些檔案。" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時間。" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "移動檔案失敗" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:56 msgid "Name" msgstr "名稱" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:68 msgid "Size" msgstr "大小" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:70 msgid "Modified" msgstr "修改時間" @@ -251,7 +251,7 @@ msgstr "修改時間" msgid "%s could not be renamed" msgstr "無法重新命名 %s" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "上傳" @@ -287,65 +287,65 @@ msgstr "ZIP 壓縮前的原始大小限制" msgid "Save" msgstr "儲存" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "新增" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" msgstr "文字檔" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "資料夾" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "從連結" -#: templates/index.php:32 +#: templates/index.php:29 msgid "Deleted files" msgstr "回收桶" -#: templates/index.php:37 +#: templates/index.php:34 msgid "Cancel upload" msgstr "取消上傳" -#: templates/index.php:43 +#: templates/index.php:40 msgid "You don’t have write permissions here." msgstr "您在這裡沒有編輯權" -#: templates/index.php:48 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "這裡還沒有東西,上傳一些吧!" -#: templates/index.php:65 +#: templates/index.php:62 msgid "Download" msgstr "下載" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:75 templates/index.php:76 msgid "Unshare" msgstr "取消分享" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:81 templates/index.php:82 msgid "Delete" msgstr "刪除" -#: templates/index.php:98 +#: templates/index.php:95 msgid "Upload too large" msgstr "上傳過大" -#: templates/index.php:100 +#: templates/index.php:97 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您試圖上傳的檔案大小超過伺服器的限制。" -#: templates/index.php:105 +#: templates/index.php:102 msgid "Files are being scanned, please wait." msgstr "正在掃描檔案,請稍等。" -#: templates/index.php:108 +#: templates/index.php:105 msgid "Current scanning" msgstr "正在掃描" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 021e5775dc..7d7eca8533 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"POT-Creation-Date: 2013-10-13 20:29-0400\n" +"PO-Revision-Date: 2013-10-14 00:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -55,14 +55,14 @@ msgid "" "correct." msgstr "" -#: files/error.php:9 +#: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "" -#: files/error.php:12 +#: files/error.php:15 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -70,6 +70,18 @@ msgid "" "files." msgstr "您的私鑰不正確! 感覺像是密碼在 ownCloud 系統之外被改變(例:您的目錄)。 您可以在個人設定中更新私鑰密碼取回已加密的檔案。" +#: files/error.php:18 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:21 files/error.php:26 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + #: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" @@ -81,7 +93,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:254 +#: hooks/hooks.php:252 msgid "Following users are not set up for encryption:" msgstr "" @@ -97,91 +109,91 @@ msgstr "" msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "加密" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:17 +#: templates/settings-admin.php:14 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:24 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "已啓用" -#: templates/settings-admin.php:32 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "已停用" -#: templates/settings-admin.php:37 +#: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:43 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:50 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:56 +#: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:61 +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "變更密碼" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "如果您忘記舊密碼,可以請求管理員協助取回檔案。" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "舊登入密碼" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "目前的登入密碼" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "檔案還原設定已更新" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "無法更新檔案還原設定" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 0bd4012e4a..eb02a27d71 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-01 18:37+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index c59207bb90..e9f5758538 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "請檢查您的密碼並再試一次" -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "密碼" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "送出" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "抱歉,此連結已經失效" @@ -54,28 +54,28 @@ msgstr "分享功能已停用" msgid "For more info, please ask the person who sent this link." msgstr "請詢問告訴您此連結的人以瞭解更多" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 和您分享了資料夾 %s " -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s 和您分享了檔案 %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "下載" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上傳" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "取消上傳" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "無法預覽" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 645968ec0b..8f4bf86f67 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,53 +28,31 @@ msgstr "無法永久刪除 %s" msgid "Couldn't restore %s" msgstr "無法還原 %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "進行還原動作" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "錯誤" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "永久刪除檔案" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "永久刪除" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "名稱" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "已刪除" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n 個資料夾" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n 個檔案" - #: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "已還原" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "您的回收桶是空的!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "名稱" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "還原" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "已刪除" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "刪除" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index e7728f4604..673e47003b 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 16:10+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -158,15 +158,15 @@ msgstr "更新" msgid "Updated" msgstr "已更新" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "選擇大頭貼" -#: js/personal.js:270 +#: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." msgstr "檔案解密中,請稍候。" -#: js/personal.js:292 +#: js/personal.js:287 msgid "Saving..." msgstr "儲存中..." @@ -182,32 +182,32 @@ msgstr "復原" msgid "Unable to remove user" msgstr "無法刪除用戶" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "群組" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "群組管理員" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "刪除" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "新增群組" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "必須提供一個有效的用戶名" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "建立用戶時出現錯誤" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "一定要提供一個有效的密碼" @@ -385,11 +385,11 @@ msgstr "更多" msgid "Less" msgstr "更少" -#: templates/admin.php:250 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:169 msgid "Version" msgstr "版本" -#: templates/admin.php:254 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" msgstr "以上的 WebDAV 位址可以讓您透過 WebDAV 協定存取檔案" -#: templates/personal.php:138 +#: templates/personal.php:146 msgid "Encryption" msgstr "加密" -#: templates/personal.php:140 +#: templates/personal.php:148 msgid "The encryption app is no longer enabled, decrypt all your file" msgstr "加密應用程式已經停用,請您解密您所有的檔案" -#: templates/personal.php:146 +#: templates/personal.php:154 msgid "Log-in password" msgstr "登入密碼" -#: templates/personal.php:151 +#: templates/personal.php:159 msgid "Decrypt all Files" msgstr "解密所有檔案" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index c33ca06023..8f5867a1ca 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/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-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 12:22+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -370,14 +370,18 @@ msgid "" msgstr "" #: templates/settings.php:103 -msgid "UUID Attribute:" +msgid "UUID Attribute for Users:" msgstr "" #: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +msgid "UUID Attribute for Groups:" msgstr "" #: templates/settings.php:105 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -391,18 +395,18 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:107 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Test Configuration" msgstr "測試此設定" -#: templates/settings.php:108 +#: templates/settings.php:109 msgid "Help" msgstr "說明" diff --git a/lib/base.php b/lib/base.php index 7299a012da..7bebb5f93a 100644 --- a/lib/base.php +++ b/lib/base.php @@ -305,9 +305,8 @@ class OC { self::$session = new \OC\Session\Internal(OC_Util::getInstanceId()); // if session cant be started break with http 500 error } catch (Exception $e) { - OC_Log::write('core', 'Session could not be initialized', + OC_Log::write('core', 'Session could not be initialized. Exception message: '.$e->getMessage(), OC_Log::ERROR); - header('HTTP/1.1 500 Internal Server Error'); OC_Util::addStyle("styles"); $error = 'Session could not be initialized. Please contact your '; @@ -764,6 +763,13 @@ class OC { // logon via web form elseif (OC::tryFormLogin()) { $error[] = 'invalidpassword'; + if ( OC_Config::getValue('log_authfailip', false) ) { + OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:'.$_SERVER['REMOTE_ADDR'], + OC_Log::WARN); + } else { + OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:set log_authfailip=true in conf', + OC_Log::WARN); + } } OC_Util::displayLoginPage(array_unique($error)); diff --git a/lib/l10n/mk.php b/lib/l10n/mk.php index 285dfd682a..19e36c868d 100644 --- a/lib/l10n/mk.php +++ b/lib/l10n/mk.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Settings" => "Подесувања", "Users" => "Корисници", "Admin" => "Админ", +"Invalid image" => "Невалидна фотографија", "web services under your control" => "веб сервиси под Ваша контрола", "ZIP download is turned off." => "Преземање во ZIP е исклучено", "Files need to be downloaded one by one." => "Датотеките треба да се симнат една по една.", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index bc298a3f33..cb990aed11 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -1,5 +1,7 @@ "A aplicação \"%s\" não pode ser instaladas por não ser compatível com esta versão da ownCloud.", +"No app name specified" => "O nome da aplicação não foi especificado", "Help" => "Ajuda", "Personal" => "Pessoal", "Settings" => "Configurações", @@ -15,6 +17,11 @@ $TRANSLATIONS = array( "Back to Files" => "Voltar a Ficheiros", "Selected files too large to generate zip file." => "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip.", "Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descarregue os ficheiros em partes menores, separados ou peça gentilmente ao seu administrador.", +"Archives of type %s are not supported" => "Arquivos do tipo %s não são suportados", +"App does not provide an info.xml file" => "A aplicação não disponibiliza um ficheiro info.xml", +"App can't be installed because of not allowed code in the App" => "A aplicação não pode ser instalado devido a código não permitido dentro da aplicação", +"App directory already exists" => "A directoria da aplicação já existe", +"Can't create app folder. Please fix permissions. %s" => "Não foi possível criar a pasta da aplicação. Por favor verifique as permissões. %s", "Application is not enabled" => "A aplicação não está activada", "Authentication error" => "Erro na autenticação", "Token expired. Please reload page." => "O token expirou. Por favor recarregue a página.", diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 37f2e1d8c0..8ce6d005ca 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -8,6 +8,9 @@ $TRANSLATIONS = array( "Users" => "Användare", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Misslyckades med att uppgradera \"%s\".", +"Custom profile pictures don't work with encryption yet" => "Anpassningsbara profilbilder fungerar inte med kryptering ännu.", +"Unknown filetype" => "Okänd filtyp", +"Invalid image" => "Ogiltig bild", "web services under your control" => "webbtjänster under din kontroll", "cannot open \"%s\"" => "Kan inte öppna \"%s\"", "ZIP download is turned off." => "Nerladdning av ZIP är avstängd.", diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 01f48517ae..80288ed051 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -8,6 +8,9 @@ $TRANSLATIONS = array( "Users" => "Kullanıcılar", "Admin" => "Yönetici", "Failed to upgrade \"%s\"." => "\"%s\" yükseltme başarısız oldu.", +"Custom profile pictures don't work with encryption yet" => "Hala özel profil resminiz şifreleme ile çalışmıyor", +"Unknown filetype" => "Bilinmeyen dosya türü", +"Invalid image" => "Geçersiz resim", "web services under your control" => "Bilgileriniz güvenli ve şifreli", "cannot open \"%s\"" => "\"%s\" açılamıyor", "ZIP download is turned off." => "ZIP indirmeleri kapatılmıştır.", diff --git a/lib/private/app.php b/lib/private/app.php index 0ab1ee57f6..1a242ad968 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -165,10 +165,14 @@ class OC_App{ /** * get all enabled apps */ + private static $enabledAppsCache = array(); public static function getEnabledApps() { if(!OC_Config::getValue('installed', false)) { return array(); } + if(!empty(self::$enabledAppsCache)) { + return self::$enabledAppsCache; + } $apps=array('files'); $sql = 'SELECT `appid` FROM `*PREFIX*appconfig`' .' WHERE `configkey` = \'enabled\' AND `configvalue`=\'yes\''; @@ -187,6 +191,7 @@ class OC_App{ $apps[]=$row['appid']; } } + self::$enabledAppsCache = $apps; return $apps; } @@ -198,11 +203,11 @@ class OC_App{ * This function checks whether or not an app is enabled. */ public static function isEnabled( $app ) { - if( 'files'==$app or ('yes' == OC_Appconfig::getValue( $app, 'enabled' ))) { + if('files' == $app) { return true; } - - return false; + $enabledApps = self::getEnabledApps(); + return in_array($app, $enabledApps); } /** @@ -214,6 +219,7 @@ class OC_App{ * This function set an app as enabled in appconfig. */ public static function enable( $app ) { + self::$enabledAppsCache = array(); // flush if(!OC_Installer::isInstalled($app)) { // check if app is a shipped app or not. OCS apps have an integer as id, shipped apps use a string if(!is_numeric($app)) { @@ -257,6 +263,7 @@ class OC_App{ * This function set an app as disabled in appconfig. */ public static function disable( $app ) { + self::$enabledAppsCache = array(); // flush // check if app is a shipped app or not. if not delete \OC_Hook::emit('OC_App', 'pre_disable', array('app' => $app)); OC_Appconfig::setValue( $app, 'enabled', 'no' ); @@ -745,9 +752,42 @@ class OC_App{ } else { $combinedApps = $appList; } + // bring the apps into the right order with a custom sort funtion + usort( $combinedApps, '\OC_App::customSort' ); + return $combinedApps; } + /** + * @brief: Internal custom sort funtion to bring the app into the right order. Should only be called by listAllApps + * @return array + */ + private static function customSort($a, $b) { + + // prio 1: active + if ($a['active'] != $b['active']) { + return $b['active'] - $a['active']; + } + + // prio 2: shipped + if ($a['shipped'] != $b['shipped']) { + $atemp = ($a['shipped'] == true ? 1 : 0); + $btemp = ($b['shipped'] == true ? 1 : 0); + return ($btemp - $atemp); + } + + // prio 3: recommended + if ($a['internalclass'] != $b['internalclass']) { + $atemp = ($a['internalclass'] == 'recommendedapp' ? 1 : 0); + $btemp = ($b['internalclass'] == 'recommendedapp' ? 1 : 0); + return ($btemp - $atemp); + } + + // prio 4: alphabetical + return strcasecmp($a['name'], $b['name']); + + } + /** * @brief: get a list of all apps on apps.owncloud.com * @return array, multi-dimensional array of apps. diff --git a/lib/private/appframework/app.php b/lib/private/appframework/app.php index 7ff55bb809..6d3effbf1f 100644 --- a/lib/private/appframework/app.php +++ b/lib/private/appframework/app.php @@ -42,12 +42,9 @@ class App { * @param string $controllerName the name of the controller under which it is * stored in the DI container * @param string $methodName the method that you want to call - * @param array $urlParams an array with variables extracted from the routes * @param DIContainer $container an instance of a pimple container. */ - public static function main($controllerName, $methodName, array $urlParams, - IAppContainer $container) { - $container['urlParams'] = $urlParams; + public static function main($controllerName, $methodName, IAppContainer $container) { $controller = $container[$controllerName]; // initialize the dispatcher and run all the middleware before the controller diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php index 7276a11e4d..81910df699 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -50,9 +50,10 @@ class DIContainer extends SimpleContainer implements IAppContainer{ * Put your class dependencies in here * @param string $appName the name of the app */ - public function __construct($appName){ + public function __construct($appName, $urlParams = array()){ $this['AppName'] = $appName; + $this['urlParams'] = $urlParams; $this->registerParameter('ServerContainer', \OC::$server); @@ -67,6 +68,7 @@ class DIContainer extends SimpleContainer implements IAppContainer{ /** @var $c SimpleContainer */ /** @var $server IServerContainer */ $server = $c->query('ServerContainer'); + $server->registerParameter('urlParams', $c['urlParams']); return $server->getRequest(); }); @@ -90,11 +92,12 @@ class DIContainer extends SimpleContainer implements IAppContainer{ return new SecurityMiddleware($this, $c['Request']); }); - $this['MiddlewareDispatcher'] = $this->share(function($c){ + $middleWares = $this->middleWares; + $this['MiddlewareDispatcher'] = $this->share(function($c) use ($middleWares) { $dispatcher = new MiddlewareDispatcher(); $dispatcher->registerMiddleware($c['SecurityMiddleware']); - foreach($this->middleWares as $middleWare) { + foreach($middleWares as $middleWare) { $dispatcher->registerMiddleware($middleWare); } diff --git a/lib/private/avatar.php b/lib/private/avatar.php index f20980c364..720740569d 100644 --- a/lib/private/avatar.php +++ b/lib/private/avatar.php @@ -51,10 +51,6 @@ class OC_Avatar { * @return void */ public function set ($data) { - if (\OC_App::isEnabled('files_encryption')) { - $l = \OC_L10N::get('lib'); - throw new \Exception($l->t("Custom profile pictures don't work with encryption yet")); - } $img = new OC_Image($data); $type = substr($img->mimeType(), -3); diff --git a/lib/private/cache/file.php b/lib/private/cache/file.php index 2ab914d17b..b0738d2a92 100644 --- a/lib/private/cache/file.php +++ b/lib/private/cache/file.php @@ -41,6 +41,24 @@ class File { return $result; } + /** + * Returns the size of the stored/cached data + * + * @param $key + * @return int + */ + public function size($key) { + $result = 0; + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; + if ($this->hasKey($key)) { + $storage = $this->getStorage(); + $result = $storage->filesize($key); + } + \OC_FileProxy::$enabled = $proxyStatus; + return $result; + } + public function set($key, $value, $ttl=0) { $storage = $this->getStorage(); $result = false; diff --git a/lib/private/connector/sabre/auth.php b/lib/private/connector/sabre/auth.php index d2fd74c44f..0c84fa6b75 100644 --- a/lib/private/connector/sabre/auth.php +++ b/lib/private/connector/sabre/auth.php @@ -73,11 +73,7 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic { */ public function authenticate(Sabre_DAV_Server $server, $realm) { - if (OC_User::handleApacheAuth()) { - return true; - } - - if (OC_User::isLoggedIn()) { + if (OC_User::handleApacheAuth() || OC_User::isLoggedIn()) { $user = OC_User::getUser(); OC_Util::setupFS($user); $this->currentUser = $user; diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php index af0dfd70f0..c51f84bf67 100644 --- a/lib/private/connector/sabre/directory.php +++ b/lib/private/connector/sabre/directory.php @@ -50,14 +50,27 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function createFile($name, $data = null) { - if (!\OC\Files\Filesystem::isCreatable($this->path)) { - throw new \Sabre_DAV_Exception_Forbidden(); + // for chunked upload also updating a existing file is a "createFile" + // because we create all the chunks before reasamble them to the existing file. + if (isset($_SERVER['HTTP_OC_CHUNKED'])) { + + // exit if we can't create a new file and we don't updatable existing file + $info = OC_FileChunking::decodeName($name); + if (!\OC\Files\Filesystem::isCreatable($this->path) && + !\OC\Files\Filesystem::isUpdatable($this->path . '/' . $info['name'])) { + throw new \Sabre_DAV_Exception_Forbidden(); + } + + } else { + // For non-chunked upload it is enough to check if we can create a new file + if (!\OC\Files\Filesystem::isCreatable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } } $path = $this->path . '/' . $name; $node = new OC_Connector_Sabre_File($path); return $node->put($data); - } /** @@ -215,4 +228,5 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa } return $props; } + } diff --git a/lib/private/connector/sabre/exception/entitytoolarge.php b/lib/private/connector/sabre/exception/entitytoolarge.php new file mode 100644 index 0000000000..2bda51f2f3 --- /dev/null +++ b/lib/private/connector/sabre/exception/entitytoolarge.php @@ -0,0 +1,22 @@ +getFS(); + if ($fs->file_exists($this->path) && !$fs->isUpdatable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); @@ -58,26 +60,19 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D // chunked handling if (isset($_SERVER['HTTP_OC_CHUNKED'])) { - list($path, $name) = \Sabre_DAV_URLUtil::splitPath($this->path); - - $info = OC_FileChunking::decodeName($name); - if (empty($info)) { - throw new Sabre_DAV_Exception_NotImplemented(); - } - $chunk_handler = new OC_FileChunking($info); - $chunk_handler->store($info['index'], $data); - if ($chunk_handler->isComplete()) { - $newPath = $path . '/' . $info['name']; - $chunk_handler->file_assemble($newPath); - return $this->getETagPropertyForPath($newPath); - } - - return null; + return $this->createFileChunked($data); } // mark file as partial while uploading (ignored by the scanner) $partpath = $this->path . '.part'; + // if file is located in /Shared we write the part file to the users + // root folder because we can't create new files in /shared + // we extend the name with a random number to avoid overwriting a existing file + if (dirname($partpath) === 'Shared') { + $partpath = pathinfo($partpath, PATHINFO_FILENAME) . rand() . '.part'; + } + try { $putOkay = $fs->file_put_contents($partpath, $data); if ($putOkay === false) { @@ -87,7 +82,21 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D throw new Sabre_DAV_Exception(); } } catch (\OCP\Files\NotPermittedException $e) { - throw new Sabre_DAV_Exception_Forbidden(); + // a more general case - due to whatever reason the content could not be written + throw new Sabre_DAV_Exception_Forbidden($e->getMessage()); + + } catch (\OCP\Files\EntityTooLargeException $e) { + // the file is too big to be stored + throw new OC_Connector_Sabre_Exception_EntityTooLarge($e->getMessage()); + + } catch (\OCP\Files\InvalidContentException $e) { + // the file content is not permitted + throw new OC_Connector_Sabre_Exception_UnsupportedMediaType($e->getMessage()); + + } catch (\OCP\Files\InvalidPathException $e) { + // the path for the file was not valid + // TODO: find proper http status code for this case + throw new Sabre_DAV_Exception_Forbidden($e->getMessage()); } // rename to correct path @@ -189,4 +198,37 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D return \OC\Files\Filesystem::getMimeType($this->path); } + + private function createFileChunked($data) + { + list($path, $name) = \Sabre_DAV_URLUtil::splitPath($this->path); + + $info = OC_FileChunking::decodeName($name); + if (empty($info)) { + throw new Sabre_DAV_Exception_NotImplemented(); + } + $chunk_handler = new OC_FileChunking($info); + $bytesWritten = $chunk_handler->store($info['index'], $data); + + //detect aborted upload + if (isset ($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'PUT' ) { + if (isset($_SERVER['CONTENT_LENGTH'])) { + $expected = $_SERVER['CONTENT_LENGTH']; + if ($bytesWritten != $expected) { + $chunk_handler->cleanup(); + throw new Sabre_DAV_Exception_BadRequest( + 'expected filesize ' . $expected . ' got ' . $bytesWritten); + } + } + } + + if ($chunk_handler->isComplete()) { + $newPath = $path . '/' . $info['name']; + $chunk_handler->file_assemble($newPath); + return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath); + } + + return null; + } + } diff --git a/lib/private/connector/sabre/node.php b/lib/private/connector/sabre/node.php index fa27abb381..c38e9f8637 100644 --- a/lib/private/connector/sabre/node.php +++ b/lib/private/connector/sabre/node.php @@ -147,12 +147,6 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * Even if the modification time is set to a custom value the access time is set to now. */ public function touch($mtime) { - - // touch is only allowed if the update privilege is granted - if (!\OC\Files\Filesystem::isUpdatable($this->path)) { - throw new \Sabre_DAV_Exception_Forbidden(); - } - \OC\Files\Filesystem::touch($this->path, $mtime); } diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index 80c3840b99..df8902f66e 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -87,6 +87,9 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { if (!$fs->isUpdatable($destinationDir)) { throw new \Sabre_DAV_Exception_Forbidden(); } + if (!$fs->isDeletable($sourcePath)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } } $renameOkay = $fs->rename($sourcePath, $destinationPath); diff --git a/lib/private/filechunking.php b/lib/private/filechunking.php index 313a6ee87d..0dfce696cd 100644 --- a/lib/private/filechunking.php +++ b/lib/private/filechunking.php @@ -34,10 +34,19 @@ class OC_FileChunking { return $this->cache; } + /** + * Stores the given $data under the given $key - the number of stored bytes is returned + * + * @param $index + * @param $data + * @return int + */ public function store($index, $data) { $cache = $this->getCache(); $name = $this->getPrefix().$index; $cache->set($name, $data); + + return $cache->size($name); } public function isComplete() { @@ -58,12 +67,24 @@ class OC_FileChunking { $count = 0; for($i=0; $i < $this->info['chunkcount']; $i++) { $chunk = $cache->get($prefix.$i); - $cache->remove($prefix.$i); $count += fwrite($f, $chunk); } + + $this->cleanup(); return $count; } + /** + * Removes all chunks which belong to this transmission + */ + public function cleanup() { + $cache = $this->getCache(); + $prefix = $this->getPrefix(); + for($i=0; $i < $this->info['chunkcount']; $i++) { + $cache->remove($prefix.$i); + } + } + public function signature_split($orgfile, $input) { $info = unpack('n', fread($input, 2)); $blocksize = $info[1]; diff --git a/lib/private/files/storage/storage.php b/lib/private/files/storage/storage.php index b673bb9a32..5be90f2475 100644 --- a/lib/private/files/storage/storage.php +++ b/lib/private/files/storage/storage.php @@ -14,278 +14,6 @@ namespace OC\Files\Storage; * All paths passed to the storage are relative to the storage and should NOT have a leading slash. */ interface Storage extends \OCP\Files\Storage { - /** - * $parameters is a free form array with the configuration options needed to construct the storage - * - * @param array $parameters - */ - public function __construct($parameters); - - /** - * Get the identifier for the storage, - * the returned id should be the same for every storage object that is created with the same parameters - * and two storage objects with the same id should refer to two storages that display the same files. - * - * @return string - */ - public function getId(); - - /** - * see http://php.net/manual/en/function.mkdir.php - * - * @param string $path - * @return bool - */ - public function mkdir($path); - - /** - * see http://php.net/manual/en/function.rmdir.php - * - * @param string $path - * @return bool - */ - public function rmdir($path); - - /** - * see http://php.net/manual/en/function.opendir.php - * - * @param string $path - * @return resource - */ - public function opendir($path); - - /** - * see http://php.net/manual/en/function.is_dir.php - * - * @param string $path - * @return bool - */ - public function is_dir($path); - - /** - * see http://php.net/manual/en/function.is_file.php - * - * @param string $path - * @return bool - */ - public function is_file($path); - - /** - * see http://php.net/manual/en/function.stat.php - * only the following keys are required in the result: size and mtime - * - * @param string $path - * @return array - */ - public function stat($path); - - /** - * see http://php.net/manual/en/function.filetype.php - * - * @param string $path - * @return bool - */ - public function filetype($path); - - /** - * see http://php.net/manual/en/function.filesize.php - * The result for filesize when called on a folder is required to be 0 - * - * @param string $path - * @return int - */ - public function filesize($path); - - /** - * check if a file can be created in $path - * - * @param string $path - * @return bool - */ - public function isCreatable($path); - - /** - * check if a file can be read - * - * @param string $path - * @return bool - */ - public function isReadable($path); - - /** - * check if a file can be written to - * - * @param string $path - * @return bool - */ - public function isUpdatable($path); - - /** - * check if a file can be deleted - * - * @param string $path - * @return bool - */ - public function isDeletable($path); - - /** - * check if a file can be shared - * - * @param string $path - * @return bool - */ - public function isSharable($path); - - /** - * get the full permissions of a path. - * Should return a combination of the PERMISSION_ constants defined in lib/public/constants.php - * - * @param string $path - * @return int - */ - public function getPermissions($path); - - /** - * see http://php.net/manual/en/function.file_exists.php - * - * @param string $path - * @return bool - */ - public function file_exists($path); - - /** - * see http://php.net/manual/en/function.filemtime.php - * - * @param string $path - * @return int - */ - public function filemtime($path); - - /** - * see http://php.net/manual/en/function.file_get_contents.php - * - * @param string $path - * @return string - */ - public function file_get_contents($path); - - /** - * see http://php.net/manual/en/function.file_put_contents.php - * - * @param string $path - * @param string $data - * @return bool - */ - public function file_put_contents($path, $data); - - /** - * see http://php.net/manual/en/function.unlink.php - * - * @param string $path - * @return bool - */ - public function unlink($path); - - /** - * see http://php.net/manual/en/function.rename.php - * - * @param string $path1 - * @param string $path2 - * @return bool - */ - public function rename($path1, $path2); - - /** - * see http://php.net/manual/en/function.copy.php - * - * @param string $path1 - * @param string $path2 - * @return bool - */ - public function copy($path1, $path2); - - /** - * see http://php.net/manual/en/function.fopen.php - * - * @param string $path - * @param string $mode - * @return resource - */ - public function fopen($path, $mode); - - /** - * get the mimetype for a file or folder - * The mimetype for a folder is required to be "httpd/unix-directory" - * - * @param string $path - * @return string - */ - public function getMimeType($path); - - /** - * see http://php.net/manual/en/function.hash.php - * - * @param string $type - * @param string $path - * @param bool $raw - * @return string - */ - public function hash($type, $path, $raw = false); - - /** - * see http://php.net/manual/en/function.free_space.php - * - * @param string $path - * @return int - */ - public function free_space($path); - - /** - * search for occurrences of $query in file names - * - * @param string $query - * @return array - */ - public function search($query); - - /** - * see http://php.net/manual/en/function.touch.php - * If the backend does not support the operation, false should be returned - * - * @param string $path - * @param int $mtime - * @return bool - */ - public function touch($path, $mtime = null); - - /** - * get the path to a local version of the file. - * The local version of the file can be temporary and doesn't have to be persistent across requests - * - * @param string $path - * @return string - */ - public function getLocalFile($path); - - /** - * get the path to a local version of the folder. - * The local version of the folder can be temporary and doesn't have to be persistent across requests - * - * @param string $path - * @return string - */ - public function getLocalFolder($path); - /** - * check if a file or folder has been updated since $time - * - * @param string $path - * @param int $time - * @return bool - * - * hasUpdated for folders should return at least true if a file inside the folder is add, removed or renamed. - * returning true for other changes in the folder is optional - */ - public function hasUpdated($path, $time); /** * get a cache instance for the storage @@ -333,11 +61,4 @@ interface Storage extends \OCP\Files\Storage { */ public function getStorageCache(); - /** - * get the ETag for a file or folder - * - * @param string $path - * @return string - */ - public function getETag($path); } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index aa08a5f7cc..c0b9f0fc9c 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -110,7 +110,9 @@ class View { * @return array consisting of the storage and the internal path */ public function resolvePath($path) { - return Filesystem::resolvePath($this->getAbsolutePath($path)); + $a = $this->getAbsolutePath($path); + $p = Filesystem::normalizePath($a); + return Filesystem::resolvePath($p); } /** @@ -324,7 +326,8 @@ class View { return false; } } else { - return $this->basicOperation('file_put_contents', $path, array('create', 'write'), $data); + $hooks = ($this->file_exists($path)) ? array('write') : array('create', 'write'); + return $this->basicOperation('file_put_contents', $path, $hooks, $data); } } @@ -709,7 +712,10 @@ class View { return false; } $defaultRoot = Filesystem::getRoot(); - return (strlen($this->fakeRoot) >= strlen($defaultRoot)) && (substr($this->fakeRoot, 0, strlen($defaultRoot)) === $defaultRoot); + if($this->fakeRoot === $defaultRoot){ + return true; + } + return (strlen($this->fakeRoot) > strlen($defaultRoot)) && (substr($this->fakeRoot, 0, strlen($defaultRoot) + 1) === $defaultRoot . '/'); } private function runHooks($hooks, $path, $post = false) { @@ -898,7 +904,8 @@ class View { $permissions = $subStorage->getPermissions($rootEntry['path']); $subPermissionsCache->set($rootEntry['fileid'], $user, $permissions); } - $rootEntry['permissions'] = $permissions; + // do not allow renaming/deleting the mount point + $rootEntry['permissions'] = $permissions & (\OCP\PERMISSION_ALL - (\OCP\PERMISSION_UPDATE | \OCP\PERMISSION_DELETE)); //remove any existing entry with the same name foreach ($files as $i => $file) { diff --git a/lib/private/group.php b/lib/private/group.php index ba93dc129a..9144ef683b 100644 --- a/lib/private/group.php +++ b/lib/private/group.php @@ -265,7 +265,7 @@ class OC_Group { public static function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) { $group = self::getManager()->get($gid); if ($group) { - $users = $group->searchDisplayName($search . $limit, $offset); + $users = $group->searchDisplayName($search, $limit, $offset); $displayNames = array(); foreach ($users as $user) { $displayNames[] = $user->getDisplayName(); diff --git a/lib/private/helper.php b/lib/private/helper.php index f3f2ea9492..e9b129db0c 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -509,11 +509,11 @@ class OC_Helper { * * @param resource $source * @param resource $target - * @return int the number of bytes copied + * @return array the number of bytes copied and result */ public static function streamCopy($source, $target) { if (!$source or !$target) { - return false; + return array(0, false); } $result = true; $count = 0; diff --git a/lib/private/log/owncloud.php b/lib/private/log/owncloud.php index d16b9537a1..a408e3830d 100644 --- a/lib/private/log/owncloud.php +++ b/lib/private/log/owncloud.php @@ -51,12 +51,22 @@ class OC_Log_Owncloud { if($level>=$minLevel) { // default to ISO8601 $format = OC_Config::getValue('logdateformat', 'c'); - $time = date($format, time()); - $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time); + $logtimezone=OC_Config::getValue( "logtimezone", 'UTC' ); + try { + $timezone = new DateTimeZone($logtimezone); + } catch (Exception $e) { + $timezone = new DateTimeZone('UTC'); + } + $time = new DateTime(null, $timezone); + $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time->format($format)); + $entry = json_encode($entry); $handle = @fopen(self::$logFile, 'a'); if ($handle) { - fwrite($handle, json_encode($entry)."\n"); + fwrite($handle, $entry."\n"); fclose($handle); + } else { + // Fall back to error_log + error_log($entry); } } } diff --git a/lib/private/session/session.php b/lib/private/session/session.php index c55001ecca..fe160faa26 100644 --- a/lib/private/session/session.php +++ b/lib/private/session/session.php @@ -8,7 +8,10 @@ namespace OC\Session; -abstract class Session implements \ArrayAccess, \OCP\ISession { +use OCP\ISession; + +abstract class Session implements \ArrayAccess, ISession { + /** * $name serves as a namespace for the session keys * @@ -16,36 +19,6 @@ abstract class Session implements \ArrayAccess, \OCP\ISession { */ abstract public function __construct($name); - /** - * @param string $key - * @param mixed $value - */ - abstract public function set($key, $value); - - /** - * @param string $key - * @return mixed should return null if $key does not exist - */ - abstract public function get($key); - - /** - * @param string $key - * @return bool - */ - abstract public function exists($key); - - /** - * should not throw any errors if $key does not exist - * - * @param string $key - */ - abstract public function remove($key); - - /** - * removes all entries within the cache namespace - */ - abstract public function clear(); - /** * @param mixed $offset * @return bool diff --git a/lib/private/user.php b/lib/private/user.php index 04cd06b08b..6b350d4cf1 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -198,6 +198,10 @@ class OC_User { // Delete user files in /data/ OC_Helper::rmdirr(OC_Config::getValue('datadirectory', OC::$SERVERROOT . '/data') . '/' . $uid . '/'); + + return true; + } else { + return false; } } @@ -321,7 +325,7 @@ class OC_User { return $backend->getLogoutAttribute(); } - return "href=" . link_to('', 'index.php') . "?logout=true"; + return 'href="' . link_to('', 'index.php') . '?logout=true"'; } /** diff --git a/lib/private/user/dummy.php b/lib/private/user/dummy.php index b5b7a6c3c7..52be7edfa7 100644 --- a/lib/private/user/dummy.php +++ b/lib/private/user/dummy.php @@ -88,8 +88,8 @@ class OC_User_Dummy extends OC_User_Backend { * returns the user id or false */ public function checkPassword($uid, $password) { - if (isset($this->users[$uid])) { - return ($this->users[$uid] == $password); + if (isset($this->users[$uid]) && $this->users[$uid] === $password) { + return $uid; } else { return false; } diff --git a/lib/public/appframework/app.php b/lib/public/appframework/app.php index d97c5c8184..6ac48bf102 100644 --- a/lib/public/appframework/app.php +++ b/lib/public/appframework/app.php @@ -31,8 +31,11 @@ namespace OCP\AppFramework; * to be registered using IContainer::registerService */ class App { - public function __construct($appName) { - $this->container = new \OC\AppFramework\DependencyInjection\DIContainer($appName); + /** + * @param array $urlParams an array with variables extracted from the routes + */ + public function __construct($appName, $urlParams = array()) { + $this->container = new \OC\AppFramework\DependencyInjection\DIContainer($appName, $urlParams); } private $container; @@ -50,8 +53,8 @@ class App { * Example code in routes.php of the task app: * $this->create('tasks_index', '/')->get()->action( * function($params){ - * $app = new TaskApp(); - * $app->dispatch('PageController', 'index', $params); + * $app = new TaskApp($params); + * $app->dispatch('PageController', 'index'); * } * ); * @@ -59,8 +62,8 @@ class App { * Example for for TaskApp implementation: * class TaskApp extends \OCP\AppFramework\App { * - * public function __construct(){ - * parent::__construct('tasks'); + * public function __construct($params){ + * parent::__construct('tasks', $params); * * $this->getContainer()->registerService('PageController', function(IAppContainer $c){ * $a = $c->query('API'); @@ -73,9 +76,8 @@ class App { * @param string $controllerName the name of the controller under which it is * stored in the DI container * @param string $methodName the method that you want to call - * @param array $urlParams an array with variables extracted from the routes */ - public function dispatch($controllerName, $methodName, array $urlParams) { - \OC\AppFramework\App::main($controllerName, $methodName, $urlParams, $this->container); + public function dispatch($controllerName, $methodName) { + \OC\AppFramework\App::main($controllerName, $methodName, $this->container); } } diff --git a/lib/public/files/entitytoolargeexception.php b/lib/public/files/entitytoolargeexception.php new file mode 100644 index 0000000000..3dff41bca0 --- /dev/null +++ b/lib/public/files/entitytoolargeexception.php @@ -0,0 +1,11 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OCP\Files; + +class EntityTooLargeException extends \Exception {} diff --git a/lib/public/files/invalidcontentexception.php b/lib/public/files/invalidcontentexception.php new file mode 100644 index 0000000000..184ec4d06d --- /dev/null +++ b/lib/public/files/invalidcontentexception.php @@ -0,0 +1,11 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OCP\Files; + +class InvalidContentException extends \Exception {} diff --git a/lib/public/files/invalidpathexception.php b/lib/public/files/invalidpathexception.php new file mode 100644 index 0000000000..36090ae5b4 --- /dev/null +++ b/lib/public/files/invalidpathexception.php @@ -0,0 +1,11 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OCP\Files; + +class InvalidPathException extends \Exception {} diff --git a/lib/public/share.php b/lib/public/share.php index e6a74117aa..66605dafee 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -155,13 +155,13 @@ class Share { while ($source !== -1) { - // Fetch all shares of this file path from DB + // Fetch all shares with another user $query = \OC_DB::prepare( 'SELECT `share_with` FROM `*PREFIX*share` WHERE - `item_source` = ? AND `share_type` = ?' + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' ); $result = $query->execute(array($source, self::SHARE_TYPE_USER)); @@ -180,7 +180,7 @@ class Share { FROM `*PREFIX*share` WHERE - `item_source` = ? AND `share_type` = ?' + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' ); $result = $query->execute(array($source, self::SHARE_TYPE_GROUP)); @@ -201,7 +201,7 @@ class Share { FROM `*PREFIX*share` WHERE - `item_source` = ? AND `share_type` = ?' + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' ); $result = $query->execute(array($source, self::SHARE_TYPE_LINK)); diff --git a/settings/apps.php b/settings/apps.php index 20b1288755..96b6d21b50 100644 --- a/settings/apps.php +++ b/settings/apps.php @@ -28,24 +28,7 @@ OC_App::loadApps(); OC_Util::addStyle( "settings", "settings" ); OC_App::setActiveNavigationEntry( "core_apps" ); -function app_sort( $a, $b ) { - - if ($a['active'] !== $b['active']) { - - return $b['active'] - $a['active']; - - } - - if ($a['internal'] !== $b['internal']) { - return $b['internal'] - $a['internal']; - } - - return strcmp($a['name'], $b['name']); - -} - $combinedApps = OC_App::listAllApps(); -usort( $combinedApps, 'app_sort' ); $tmpl = new OC_Template( "settings", "apps", "user" ); diff --git a/settings/css/settings.css b/settings/css/settings.css index 40106072f8..65b0ba89b8 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -41,8 +41,8 @@ table.nostyle td { padding: 0.2em 0; } /* USERS */ form { display:inline; } -table:not(.nostyle) th { height:2em; color:#999; } -table:not(.nostyle) th, table:not(.nostyle) td { border-bottom:1px solid #ddd; padding:0 .5em; padding-left:.8em; text-align:left; font-weight:normal; } +table.grid th { height:2em; color:#999; } +table.grid th, table.grid td { border-bottom:1px solid #ddd; padding:0 .5em; padding-left:.8em; text-align:left; font-weight:normal; } td.name, td.password { padding-left:.8em; } td.password>img,td.displayName>img, td.remove>a, td.quota>img { visibility:hidden; } td.password, td.quota, td.displayName { width:12em; cursor:pointer; } @@ -53,25 +53,23 @@ tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:point tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; } tr:hover>td.remove>a { float:right; } li.selected { background-color:#ddd; } -table:not(.nostyle) { width:100%; } +table.grid { width:100%; } #rightcontent { padding-left: 1em; } div.quota { float: right; display: block; - position: absolute; - right: 216px; - top: 0; } div.quota-select-wrapper { position: relative; } div.recoveryPassword { left:50em; display:block; position:absolute; top:-1px; } input#recoveryPassword {width:15em;} -select.quota { position:absolute; left:0; top:0; width:10em; } +#controls select.quota { + margin: 3px; + margin-right: 10px; + height: 37px; +} select.quota-user { position:relative; left:0; top:0; width:10em; } div.quota>span { - position: absolute; - right: 0; white-space: nowrap; - top: 12px; color: #888; text-shadow: 0 1px 0 #fff; } @@ -127,6 +125,9 @@ span.version { margin-left:1em; margin-right:1em; color:#555; } /* LOG */ #log { white-space:normal; } #lessLog { display:none; } +table.grid td.date{ + white-space: nowrap; +} /* ADMIN */ span.securitywarning {color:#C33; font-weight:bold; } diff --git a/settings/js/personal.js b/settings/js/personal.js index 3fdc2907c4..cdf7d0e963 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -31,7 +31,7 @@ function changeDisplayName(){ // Ajax foo $.post( 'ajax/changedisplayname.php', post, function(data){ if( data.status === "success" ){ - $('#oldDisplayName').text($('#displayName').val()); + $('#oldDisplayName').val($('#displayName').val()); // update displayName on the top right expand button $('#expandDisplayName').text($('#displayName').val()); updateAvatar(); @@ -171,11 +171,6 @@ $(document).ready(function(){ } }); - $("#languageinput").chosen(); - // Show only the not selectable optgroup - // Choosen only shows optgroup-labels if there are options in the optgroup - $(".languagedivider").hide(); - $("#languageinput").change( function(){ // Serialize the data var post = $( "#languageinput" ).serialize(); diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 9873d4d20a..4000b87c70 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny", "Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", "Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", +"Allow mail notification" => "Povolit e-mailová upozornění", +"Allow user to send mail notification for shared files" => "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", "Security" => "Zabezpečení", "Enforce HTTPS" => "Vynutit HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", @@ -107,7 +109,7 @@ $TRANSLATIONS = array( "Email" => "E-mail", "Your email address" => "Vaše e-mailová adresa", "Fill in an email address to enable password recovery" => "Pro povolení obnovy hesla vyplňte e-mailovou adresu", -"Profile picture" => "Profilová fotka", +"Profile picture" => "Profilový obrázek", "Upload new" => "Nahrát nový", "Select new from Files" => "Vyberte nový ze souborů", "Remove image" => "Odebrat obrázek", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index abbc92709e..e84a6f573f 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Allow users to share items shared with them again", "Allow users to share with anyone" => "Allow users to share with anyone", "Allow users to only share with users in their groups" => "Allow users to only share with users in their groups", +"Allow mail notification" => "Allow mail notification", +"Allow user to send mail notification for shared files" => "Allow user to send mail notification for shared files", "Security" => "Security", "Enforce HTTPS" => "Enforce HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forces the clients to connect to %s via an encrypted connection.", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index ed23ecc077..be19819854 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Permitir a los usuarios compartir de nuevo elementos ya compartidos", "Allow users to share with anyone" => "Permitir a los usuarios compartir con todo el mundo", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", +"Allow mail notification" => "Permitir notificaciones por email", +"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por email de archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión encriptada.", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 10a7d764bc..d506965be7 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux", "Allow users to share with anyone" => "Autoriser les utilisateurs à partager avec tout le monde", "Allow users to only share with users in their groups" => "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement", +"Allow mail notification" => "Autoriser les notifications par couriel", +"Allow user to send mail notification for shared files" => "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés", "Security" => "Sécurité", "Enforce HTTPS" => "Forcer HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forcer les clients à se connecter à %s via une connexion chiffrée.", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index bfaa9827b2..544655ade2 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "ユーザが共有しているアイテムの再共有を許可する", "Allow users to share with anyone" => "ユーザが誰とでも共有することを許可する", "Allow users to only share with users in their groups" => "ユーザにグループ内のユーザとのみ共有を許可する", +"Allow mail notification" => "メール通知を許可", +"Allow user to send mail notification for shared files" => "共有ファイルに関するメール通知の送信をユーザに許可する", "Security" => "セキュリティ", "Enforce HTTPS" => "常にHTTPSを使用する", "Forces the clients to connect to %s via an encrypted connection." => "クライアントから %sへの接続を常に暗号化する。", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 901ef9106e..77e7e52f99 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Неможам да вчитам листа од App Store", "Authentication error" => "Грешка во автентикација", +"Your display name has been changed." => "Вашето прикажано име се промени.", +"Unable to change display name" => "Не можам да го сменам прикажанато име", "Group already exists" => "Групата веќе постои", "Unable to add group" => "Неможе да додадам група", "Email saved" => "Електронската пошта е снимена", @@ -13,17 +15,30 @@ $TRANSLATIONS = array( "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" => "Грешка", "Update" => "Ажурирај", +"Updated" => "Надграден", "Saving..." => "Снимам...", +"deleted" => "избришан", "undo" => "врати", +"Unable to remove user" => "Не можам да го одстранам корисникот", "Groups" => "Групи", "Group Admin" => "Администратор на група", "Delete" => "Избриши", +"add group" => "додади група", +"A valid username must be provided" => "Мора да се обезбеди валидно корисничко име ", +"Error creating user" => "Грешка при креирање на корисникот", +"A valid password must be provided" => "Мора да се обезбеди валидна лозинка", "__language_name__" => "__language_name__", "Security Warning" => "Безбедносно предупредување", +"Setup Warning" => "Предупредување при подесување", "Log" => "Записник", "Log level" => "Ниво на логирање", "More" => "Повеќе", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 7b486768b0..6bb889d3d4 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -16,6 +16,12 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Niet in staat om gebruiker toe te voegen aan groep %s", "Unable to remove user from group %s" => "Niet in staat om gebruiker te verwijderen uit groep %s", "Couldn't update app." => "Kon de app niet bijwerken.", +"Wrong password" => "Onjuist wachtwoord", +"No user supplied" => "Geen gebruiker opgegeven", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Voer een beheerdersherstelwachtwoord in, anders zullen alle gebruikersgegevens verloren gaan", +"Wrong admin recovery password. Please check the password and try again." => "Onjuist beheerdersherstelwachtwoord. Controleer het wachtwoord en probeer het opnieuw.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "De Back-end ondersteunt geen wachtwoordwijzigingen, maar de cryptosleutel van de gebruiker is succesvol bijgewerkt.", +"Unable to change password" => "Kan wachtwoord niet wijzigen", "Update to {appversion}" => "Bijwerken naar {appversion}", "Disable" => "Uitschakelen", "Enable" => "Activeer", @@ -67,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen", "Allow users to share with anyone" => "Toestaan dat gebruikers met iedereen delen", "Allow users to only share with users in their groups" => "Instellen dat gebruikers alleen met leden binnen hun groepen delen", +"Allow mail notification" => "Toestaan e-mailnotificaties", +"Allow user to send mail notification for shared files" => "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", "Security" => "Beveiliging", "Enforce HTTPS" => "Afdwingen HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Dwingt de clients om een versleutelde verbinding te maken met %s", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 6cce72df4b..f1a91a345c 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -69,6 +69,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych", "Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek", "Allow users to only share with users in their groups" => "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup", +"Allow mail notification" => "Pozwól na mailowe powiadomienia", +"Allow user to send mail notification for shared files" => "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach", "Security" => "Bezpieczeństwo", "Enforce HTTPS" => "Wymuś HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego.", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index b664d2be3d..51182f01c8 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -16,6 +16,11 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Impossível acrescentar utilizador ao grupo %s", "Unable to remove user from group %s" => "Impossível apagar utilizador do grupo %s", "Couldn't update app." => "Não foi possível actualizar a aplicação.", +"Wrong password" => "Password errada", +"No user supplied" => "Nenhum utilizador especificado.", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor forneça uma palavra chave de recuperação de administrador, caso contrário todos os dados de utilizador serão perdidos", +"Wrong admin recovery password. Please check the password and try again." => "Palavra chave de recuperação de administrador errada. Por favor verifique a palavra chave e tente de novo.", +"Unable to change password" => "Não foi possível alterar a sua password", "Update to {appversion}" => "Actualizar para a versão {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", @@ -27,6 +32,7 @@ $TRANSLATIONS = array( "Error" => "Erro", "Update" => "Actualizar", "Updated" => "Actualizado", +"Select a profile picture" => "Seleccione uma fotografia de perfil", "Decrypting files... Please wait, this can take some time." => "A desencriptar os ficheiros... Por favor aguarde, esta operação pode demorar algum tempo.", "Saving..." => "A guardar...", "deleted" => "apagado", @@ -66,6 +72,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Permitir que os utilizadores partilhem itens partilhados com eles", "Allow users to share with anyone" => "Permitir que os utilizadores partilhem com todos", "Allow users to only share with users in their groups" => "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo", +"Allow mail notification" => "Permitir notificação por email", +"Allow user to send mail notification for shared files" => "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forçar os clientes a ligar a %s através de uma ligação encriptada", @@ -101,7 +109,12 @@ $TRANSLATIONS = array( "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", "Profile picture" => "Foto do perfil", +"Upload new" => "Carregar novo", +"Select new from Files" => "Seleccionar novo a partir dos ficheiros", +"Remove image" => "Remover imagem", +"Either png or jpg. Ideally square but you will be able to crop it." => "Apenas png ou jpg. Idealmente quadrada, mas poderá corta-la depois.", "Abort" => "Abortar", +"Choose as profile image" => "Escolha uma fotografia de perfil", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", "WebDAV" => "WebDAV", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 1f4ce98f55..e7c6dbdc7d 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -16,6 +16,12 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Kullanıcı %s grubuna eklenemiyor", "Unable to remove user from group %s" => "%s grubundan kullanıcı kaldırılamıyor", "Couldn't update app." => "Uygulama güncellenemedi.", +"Wrong password" => "Hatalı parola", +"No user supplied" => "Kullanıcı girilmedi", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Lütfen bir yönetici kurtarma parolası girin, aksi takdirde tüm kullanıcı verisi kaybedilecek", +"Wrong admin recovery password. Please check the password and try again." => "Hatalı yönetici kurtarma parolası. Lütfen parolayı denetleyip yeniden deneyin.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Arka uç parola değişimini desteklemiyor ancak kullanıcı şifreleme anahtarı başarıyla güncellendi.", +"Unable to change password" => "Parola değiştirilemiyor", "Update to {appversion}" => "{appversion} Güncelle", "Disable" => "Etkin değil", "Enable" => "Etkinleştir", @@ -27,6 +33,7 @@ $TRANSLATIONS = array( "Error" => "Hata", "Update" => "Güncelleme", "Updated" => "Güncellendi", +"Select a profile picture" => "Bir profil fotoğrafı seçin", "Decrypting files... Please wait, this can take some time." => "Dosyaların şifresi çözülüyor... Lütfen bekleyin, bu biraz zaman alabilir.", "Saving..." => "Kaydediliyor...", "deleted" => "silindi", @@ -66,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Kullanıcıların kendileri ile paylaşılan öğeleri yeniden paylaşmasına izin ver", "Allow users to share with anyone" => "Kullanıcıların herşeyi paylaşmalarına izin ver", "Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", +"Allow mail notification" => "Posta bilgilendirmesine izin ver", +"Allow user to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver", "Security" => "Güvenlik", "Enforce HTTPS" => "HTTPS bağlantısına zorla", "Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s a şifreli bir bağlantı ile bağlanmaya zorlar.", @@ -101,6 +110,12 @@ $TRANSLATIONS = array( "Your email address" => "Eposta adresiniz", "Fill in an email address to enable password recovery" => "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin", "Profile picture" => "Profil resmi", +"Upload new" => "Yeni yükle", +"Select new from Files" => "Dosyalardan seç", +"Remove image" => "Resmi kaldır", +"Either png or jpg. Ideally square but you will be able to crop it." => "PNG veya JPG. Genellikle karedir ancak kesebileceksiniz.", +"Abort" => "İptal Et", +"Choose as profile image" => "Profil resmi olarak seç", "Language" => "Dil", "Help translate" => "Çevirilere yardım edin", "WebDAV" => "WebDAV", diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 6450cd62d9..1091b1dab5 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -118,7 +118,7 @@ if (!$_['internetconnectionworking']) {

    t('Sharing'));?>

    - +

    t('Security'));?>

    - +
    - - +
    -
    @@ -229,7 +229,7 @@ endfor;?> message);?> + time)){ p(OC_Util::formatDate($entry->time)); } else { @@ -248,7 +248,7 @@ endfor;?>

    t('Version'));?>

    - getTitle()); ?> + getTitle()); ?>

    t('Developed by the ownCloud community, the source code is licensed under the AGPL.')); ?> diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 47227d6ea0..60c509b4a1 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -104,19 +104,27 @@ if($_['passwordChangeSupported']) {

    t('Language'));?>

    - + + + + + + + + t('Help translate'));?> + target="_blank"> + t('Help translate'));?> +
    @@ -159,7 +167,7 @@ if($_['passwordChangeSupported']) {

    t('Version'));?>

    - getName()); ?>
    + getName()); ?>
    t('Developed by the ownCloud community, the source code is licensed under the AGPL.')); ?> diff --git a/settings/templates/users.php b/settings/templates/users.php index 747d052a7b..b556ef4b92 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -78,7 +78,7 @@ $_['subadmingroups'] = array_flip($items); - +
    diff --git a/tests/lib/appframework/AppTest.php b/tests/lib/appframework/AppTest.php index 9bedcb446e..3628e4ceab 100644 --- a/tests/lib/appframework/AppTest.php +++ b/tests/lib/appframework/AppTest.php @@ -38,7 +38,7 @@ class AppTest extends \PHPUnit_Framework_TestCase { private $controllerMethod; protected function setUp() { - $this->container = new \OC\AppFramework\DependencyInjection\DIContainer('test'); + $this->container = new \OC\AppFramework\DependencyInjection\DIContainer('test', array()); $this->controller = $this->getMockBuilder( 'OCP\AppFramework\Controller') ->disableOriginalConstructor() @@ -56,6 +56,7 @@ class AppTest extends \PHPUnit_Framework_TestCase { $this->container[$this->controllerName] = $this->controller; $this->container['Dispatcher'] = $this->dispatcher; + $this->container['urlParams'] = array(); } @@ -69,7 +70,7 @@ class AppTest extends \PHPUnit_Framework_TestCase { $this->expectOutputString(''); - App::main($this->controllerName, $this->controllerMethod, array(), + App::main($this->controllerName, $this->controllerMethod, $this->container); } diff --git a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php index 4bfd725ffd..3e0f315a4f 100644 --- a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php +++ b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php @@ -115,6 +115,7 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoAdminRequired */ public function testAjaxNotAdminCheck() { + $this->markTestSkipped("Logged in state currently not available in API"); $this->ajaxExceptionStatus( 'testAjaxNotAdminCheck', 'isAdminUser', @@ -260,6 +261,7 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoAdminRequired */ public function testLoggedInCheck(){ + $this->markTestSkipped("Logged in state currently not available in API"); $this->securityCheck('testLoggedInCheck', 'isLoggedIn'); } @@ -269,6 +271,7 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoAdminRequired */ public function testFailLoggedInCheck(){ + $this->markTestSkipped("Logged in state currently not available in API"); $this->securityCheck('testFailLoggedInCheck', 'isLoggedIn', true); } @@ -277,6 +280,7 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoCSRFRequired */ public function testIsAdminCheck(){ + $this->markTestSkipped("Logged in state currently not available in API"); $this->securityCheck('testIsAdminCheck', 'isAdminUser'); } @@ -285,6 +289,7 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoCSRFRequired */ public function testFailIsAdminCheck(){ + $this->markTestSkipped("Logged in state currently not available in API"); $this->securityCheck('testFailIsAdminCheck', 'isAdminUser', true); } diff --git a/tests/lib/avatar.php b/tests/lib/avatar.php index 1c5195f8eb..6e6faed2d2 100644 --- a/tests/lib/avatar.php +++ b/tests/lib/avatar.php @@ -9,15 +9,14 @@ class Test_Avatar extends PHPUnit_Framework_TestCase { public function testAvatar() { - $this->markTestSkipped("Setting custom avatars with encryption doesn't work yet"); $avatar = new \OC_Avatar(\OC_User::getUser()); $this->assertEquals(false, $avatar->get()); $expected = new OC_Image(\OC::$SERVERROOT.'/tests/data/testavatar.png'); - $avatar->set($expected->data()); $expected->resize(64); + $avatar->set($expected->data()); $this->assertEquals($expected->data(), $avatar->get()->data()); $avatar->remove(); diff --git a/tests/lib/connector/sabre/objecttree.php b/tests/lib/connector/sabre/objecttree.php index 1d76bb5967..e32f2365f9 100644 --- a/tests/lib/connector/sabre/objecttree.php +++ b/tests/lib/connector/sabre/objecttree.php @@ -15,8 +15,9 @@ use Sabre_DAV_Exception_Forbidden; class TestDoubleFileView extends \OC\Files\View{ - public function __construct($updatables, $canRename = true) { + public function __construct($updatables, $deletables, $canRename = true) { $this->updatables = $updatables; + $this->deletables = $deletables; $this->canRename = $canRename; } @@ -24,6 +25,10 @@ class TestDoubleFileView extends \OC\Files\View{ return $this->updatables[$path]; } + public function isDeletable($path) { + return $this->deletables[$path]; + } + public function rename($path1, $path2) { return $this->canRename; } @@ -35,31 +40,32 @@ class ObjectTree extends PHPUnit_Framework_TestCase { * @dataProvider moveFailedProvider * @expectedException Sabre_DAV_Exception_Forbidden */ - public function testMoveFailed($source, $dest, $updatables) { - $this->moveTest($source, $dest, $updatables); + public function testMoveFailed($source, $dest, $updatables, $deletables) { + $this->moveTest($source, $dest, $updatables, $deletables); } /** * @dataProvider moveSuccessProvider */ - public function testMoveSuccess($source, $dest, $updatables) { - $this->moveTest($source, $dest, $updatables); + public function testMoveSuccess($source, $dest, $updatables, $deletables) { + $this->moveTest($source, $dest, $updatables, $deletables); $this->assertTrue(true); } function moveFailedProvider() { return array( - array('a/b', 'a/c', array('a' => false, 'a/b' => false, 'a/c' => false)), - array('a/b', 'b/b', array('a' => false, 'a/b' => false, 'b' => false, 'b/b' => false)), - array('a/b', 'b/b', array('a' => false, 'a/b' => true, 'b' => false, 'b/b' => false)), - array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => false, 'b/b' => false)), + array('a/b', 'a/c', array('a' => false, 'a/b' => false, 'a/c' => false), array()), + array('a/b', 'b/b', array('a' => false, 'a/b' => false, 'b' => false, 'b/b' => false), array()), + array('a/b', 'b/b', array('a' => false, 'a/b' => true, 'b' => false, 'b/b' => false), array()), + array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => false, 'b/b' => false), array()), + array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false), array('a/b' => false)), ); } function moveSuccessProvider() { return array( - array('a/b', 'a/c', array('a' => false, 'a/b' => true, 'a/c' => false)), - array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false)), + array('a/b', 'a/c', array('a' => false, 'a/b' => true, 'a/c' => false), array()), + array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false), array('a/b' => true)), ); } @@ -68,7 +74,7 @@ class ObjectTree extends PHPUnit_Framework_TestCase { * @param $dest * @param $updatables */ - private function moveTest($source, $dest, $updatables) { + private function moveTest($source, $dest, $updatables, $deletables) { $rootDir = new OC_Connector_Sabre_Directory(''); $objectTree = $this->getMock('\OC\Connector\Sabre\ObjectTree', array('nodeExists', 'getNodeForPath'), @@ -80,7 +86,7 @@ class ObjectTree extends PHPUnit_Framework_TestCase { ->will($this->returnValue(false)); /** @var $objectTree \OC\Connector\Sabre\ObjectTree */ - $objectTree->fileView = new TestDoubleFileView($updatables); + $objectTree->fileView = new TestDoubleFileView($updatables, $deletables); $objectTree->move($source, $dest); } diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index 3043f132b7..0cc86d6651 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -391,4 +391,81 @@ class View extends \PHPUnit_Framework_TestCase { $this->storages[] = $storage; return $storage; } + + private $createHookPath; + + function dummyCreateHook($params) { + $this->createHookPath = $params['path']; + } + + /** + * @medium + */ + function testViewHooksIfRootStartsTheSame() { + $storage1 = $this->getTestStorage(); + $storage2 = $this->getTestStorage(); + $defaultRoot = \OC\Files\Filesystem::getRoot(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + \OC\Files\Filesystem::mount($storage2, array(), $defaultRoot . '_substorage'); + \OC_Hook::connect('OC_Filesystem', 'post_write', $this, 'dummyHook'); + + $subView = new \OC\Files\View($defaultRoot . '_substorage'); + $this->hookPath = null; + + $subView->file_put_contents('/foo.txt', 'asd'); + $this->assertNull($this->hookPath); + } + + public function testEditNoCreateHook() { + $storage1 = $this->getTestStorage(); + $storage2 = $this->getTestStorage(); + $defaultRoot = \OC\Files\Filesystem::getRoot(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + \OC\Files\Filesystem::mount($storage2, array(), $defaultRoot); + \OC_Hook::connect('OC_Filesystem', 'post_create', $this, 'dummyCreateHook'); + + $view = new \OC\Files\View($defaultRoot); + $this->hookPath = null; + + $view->file_put_contents('/asd.txt', 'foo'); + $this->assertEquals('/asd.txt', $this->createHookPath); + $this->createHookPath = null; + + $view->file_put_contents('/asd.txt', 'foo'); + $this->assertNull($this->createHookPath); + } + + /** + * @dataProvider resolvePathTestProvider + */ + public function testResolvePath($expected, $pathToTest) { + $storage1 = $this->getTestStorage(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + + $view = new \OC\Files\View(''); + + $result = $view->resolvePath($pathToTest); + $this->assertEquals($expected, $result[1]); + + $exists = $view->file_exists($pathToTest); + $this->assertTrue($exists); + + $exists = $view->file_exists($result[1]); + $this->assertTrue($exists); + } + + function resolvePathTestProvider() { + return array( + array('foo.txt', 'foo.txt'), + array('foo.txt', '/foo.txt'), + array('folder', 'folder'), + array('folder', '/folder'), + array('folder', 'folder/'), + array('folder', '/folder/'), + array('folder/bar.txt', 'folder/bar.txt'), + array('folder/bar.txt', '/folder/bar.txt'), + array('', ''), + array('', '/'), + ); + } } diff --git a/tests/lib/helper.php b/tests/lib/helper.php index b4d896e519..babafab52c 100644 --- a/tests/lib/helper.php +++ b/tests/lib/helper.php @@ -208,4 +208,38 @@ class Test_Helper extends PHPUnit_Framework_TestCase { ->will($this->returnValue(true)); // filename(1) (2) (3).ext exists $this->assertEquals('dir/filename(1) (2) (4).ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename(1) (2) (3).ext', $viewMock)); } + + /** + * @dataProvider streamCopyDataProvider + */ + public function testStreamCopy($expectedCount, $expectedResult, $source, $target) { + + if (is_string($source)) { + $source = fopen($source, 'r'); + } + if (is_string($target)) { + $target = fopen($target, 'w'); + } + + list($count, $result) = \OC_Helper::streamCopy($source, $target); + + if (is_resource($source)) { + fclose($source); + } + if (is_resource($target)) { + fclose($target); + } + + $this->assertSame($expectedCount, $count); + $this->assertSame($expectedResult, $result); + } + + + function streamCopyDataProvider() { + return array( + array(0, false, false, false), + array(0, false, \OC::$SERVERROOT . '/tests/data/lorem.txt', false), + array(446, true, \OC::$SERVERROOT . '/tests/data/lorem.txt', \OC::$SERVERROOT . '/tests/data/lorem-copy.txt'), + ); + } } diff --git a/tests/lib/user.php b/tests/lib/user.php index 66c7f3f0d7..fdf9e7a08e 100644 --- a/tests/lib/user.php +++ b/tests/lib/user.php @@ -12,18 +12,26 @@ namespace Test; use OC\Hooks\PublicEmitter; class User extends \PHPUnit_Framework_TestCase { - + /** + * @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend + */ + private $backend; + + protected function setUp(){ + $this->backend = $this->getMock('\OC_User_Dummy'); + $manager = \OC_User::getManager(); + $manager->registerBackend($this->backend); + } + public function testCheckPassword() { - /** - * @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend - */ - $backend = $this->getMock('\OC_User_Dummy'); - $backend->expects($this->once()) + + $this->backend->expects($this->once()) ->method('checkPassword') ->with($this->equalTo('foo'), $this->equalTo('bar')) - ->will($this->returnValue('foo')); + ->will($this->returnValue('foo')) + ; - $backend->expects($this->any()) + $this->backend->expects($this->any()) ->method('implementsActions') ->will($this->returnCallback(function ($actions) { if ($actions === \OC_USER_BACKEND_CHECK_PASSWORD) { @@ -33,11 +41,33 @@ class User extends \PHPUnit_Framework_TestCase { } })); - $manager = \OC_User::getManager(); - $manager->registerBackend($backend); - $uid = \OC_User::checkPassword('foo', 'bar'); $this->assertEquals($uid, 'foo'); } + + public function testDeleteUser() { + $fail = \OC_User::deleteUser('victim'); + $this->assertFalse($fail); + + $success = \OC_User::createUser('victim', 'password'); + + $success = \OC_User::deleteUser('victim'); + $this->assertTrue($success); + } + + public function testCreateUser(){ + $this->backend->expects($this->any()) + ->method('implementsActions') + ->will($this->returnCallback(function ($actions) { + if ($actions === \OC_USER_BACKEND_CREATE_USER) { + return true; + } else { + return false; + } + })); + + $user = \OC_User::createUser('newuser', 'newpassword'); + $this->assertEquals('newuser', $user->getUid()); + } } \ No newline at end of file diff --git a/tests/lib/user/backend.php b/tests/lib/user/backend.php index 40674424c9..1384c54a92 100644 --- a/tests/lib/user/backend.php +++ b/tests/lib/user/backend.php @@ -39,7 +39,7 @@ abstract class Test_User_Backend extends PHPUnit_Framework_TestCase { /** * get a new unique user name * test cases can override this in order to clean up created user - * @return array + * @return string */ public function getUser() { return uniqid('test_'); @@ -82,8 +82,8 @@ abstract class Test_User_Backend extends PHPUnit_Framework_TestCase { $this->assertTrue($this->backend->userExists($name1)); $this->assertTrue($this->backend->userExists($name2)); - $this->assertTrue($this->backend->checkPassword($name1, 'pass1')); - $this->assertTrue($this->backend->checkPassword($name2, 'pass2')); + $this->assertSame($name1, $this->backend->checkPassword($name1, 'pass1')); + $this->assertSame($name2, $this->backend->checkPassword($name2, 'pass2')); $this->assertFalse($this->backend->checkPassword($name1, 'pass2')); $this->assertFalse($this->backend->checkPassword($name2, 'pass1')); @@ -93,7 +93,7 @@ abstract class Test_User_Backend extends PHPUnit_Framework_TestCase { $this->backend->setPassword($name1, 'newpass1'); $this->assertFalse($this->backend->checkPassword($name1, 'pass1')); - $this->assertTrue($this->backend->checkPassword($name1, 'newpass1')); + $this->assertSame($name1, $this->backend->checkPassword($name1, 'newpass1')); $this->assertFalse($this->backend->checkPassword($name2, 'newpass1')); } } diff --git a/tests/lib/user/database.php b/tests/lib/user/database.php index fe7d87c44d..d7cc39ae38 100644 --- a/tests/lib/user/database.php +++ b/tests/lib/user/database.php @@ -21,19 +21,14 @@ */ class Test_User_Database extends Test_User_Backend { - /** - * get a new unique user name - * test cases can override this in order to clean up created user - * @return array - */ public function getUser() { - $user=uniqid('test_'); + $user = parent::getUser(); $this->users[]=$user; return $user; } public function setUp() { - $this->backend=new OC_User_Dummy(); + $this->backend=new OC_User_Database(); } public function tearDown() { diff --git a/version.php b/version.php index b4396d1d2d..b87f4bf90c 100644 --- a/version.php +++ b/version.php @@ -1,16 +1,16 @@